Reputation: 119
nntp (news) open error: '>> news/nntp Name or service not known)'.
I am runing ubuntu
Upvotes: 1
Views: 1387
Reputation: 22262
Gnus requires that you have configured a news server to use, and I think it defaults to "news", which doesn't exist in your local search domains (likely given to you via DHCP from your ISP or local router). You can set it by putting the following lines in your ~/.gnus file:
(setq gnus-select-method '(nntp "my cool server"
(nntp-address "PUT.ADDRESS.HERE"))
Change PUT.ADDRESS.HERE to the full name of your nntp server.
Upvotes: 3