3

I changed the hostname from default name, set during installation to something short and nice, but didn't change it in /etc/hosts file. /etc/hostname is changed after restart but sudo is not working.

I tried to search for answers on internet. Everybody is suggesting to edit /etc/hosts file and replace:

127.0.1.1 <previous name> 

to:

127.0.1.1 <new name> 

but I cannot change this file either by using:

sudo gedit /etc/hosts

It gives an error:

sudo:unable to resolve host <new-name>
JoKeR
  • 7,062
Rookie
  • 33

1 Answers1

7

If sudo and its graphical derivates gksu and gksudo are not working any more, the easiest solution is to use pkexec instead to open a command-line editor like nano and correct the wrong entries in the specific configuration files (like /etc/hosts or /etc/sudoers).

Note that pkexec works for terminal applications, but needs special configuration to run GUI programs. Therefore you need to use nano instead of gedit, mousepad or whatever your default editor is...

Byte Commander
  • 110,243