How to edit read-only file in /etc? [duplicate]

I'm a brand new user so I'm not sure of my way around the system yet. I want to change my computer's name, so I tried to edit the name in /etc/hostname, but it is a read-only file. Adding the ! character didn't help. I'm using vim to edit the file.


Solution 1:

Changing system settings requires superuser permissions. From a terminal, do

sudo <editor> <filename>

where could be vim or nano or any other editor command, and is the one you need to edit.

You could also usegksudo gedit <filename>.

In either case you will be prompted for password of a user with superuser permissions - in a normal Ubuntu installation this would be the first user created during installation.

Solution 2:

If you are editing a file without sudo, and you need sudo in order to save, simply use this vim command:

:w !sudo tee %

Credit to Dr Beco. Note that vim will notice the file change and ask you if you want to (L)oad the changes, press L.

Solution 3:

Very Short Answer:

You can modify a file (even if it's read-only) if you own it.

Short Answer:

Even if the user which you are logged in as (in this case navid) has administrative privileges, you won't be able to modify /etc/hostname, because the root user owns that file. Consequently, you should log in as the root user.

Long Answer

Assuming that you want to change your computer name from oldName to newName, here are the steps that you should follow:

  1. Log in as the root user:

    navid@oldName:~$ sudo su -
    
  2. Open hostname:

    root@oldName:~# vi /etc/hostname
    
  3. You will see oldName. Press i to go to the insert mode then change it to newName. Then press Esc + : + w + q + Enter to save and exit.

  4. Open hosts:

    root@oldName:~# vi /etc/hosts
    

    The top 2 lines look like this:

    127.0.0.1       localhost
    127.0.1.1       oldName
    
  5. Similarly to what you did in step 3, change the computer name from oldName to newName. Then save and exit.

  6. Exit the root user:

    root@oldName:~# exit
    
  7. Save all of your unsaved work and restart your computer:

    navid@oldName:~$ reboot
    
  8. Open your terminal, and you will see that your computer name has successfully been changed! :-)

    navid@newName:~$ 
    

Note: Although you may achieve what you want by skipping steps 4 and 5, I strongly recommend doing them as well, to avoid potential errors in the future.

See also:

  • Why can I modify a read-only file?