63

I'm new at Linux and I just download Ubuntu 12.04 LTS. I found a spot that showed me how join my Windows Active Directory. It has me add couple lines into the 'hosts' but I'm not able to edit the file because I do not have the permission. I'm not the owner. I use chmod with it rwx and still it will not let edit the file. How do you change the permission? Thanks

Jorge Castro
  • 71,754
Jim
  • 631
  • 1
  • 5
  • 3
  • Jorge, perhaps I'm going the wrong direction in joining with Windows Active Directory. But I'm still taking the command you are giving me and it's not working. You can review what I'm following and then maybe it can shine some light on the subject. http://www.systemadminthings.com/2012/05/add-ubuntu-linux-in-microsoft-active.html. Thanks – Jim Sep 09 '13 at 22:07

5 Answers5

70

The easiest way (most GUI) would be to use gedit. You could also use any other editor you prefer (e.g. nano or vi). Just run the editor as root using sudo and you're good to go! You need to pass 1 argument: the path to the file you want to edit (in this case /etc/hosts).

The full command:

sudo -i gedit /etc/hosts
Oli
  • 293,335
Joren
  • 5,053
  • 8
  • 38
  • 54
11

It is not a good idea to become the owner of a system file/directory! So, if you want to edit a system file, it is not necessary to be the owner of that file. Just use in terminal:

sudo -i            # to grant access as root
gedit file_name    # or /path/to/file/file_name

After you finished to edit your file, press Ctrl+D in terminal to exit from root session.

But to become the owner of a file/directory, use chown. For example:

sudo chown your_username file_or_directory

Check man chown and man chmod for more information.

Radu Rădeanu
  • 169,590
  • 1
    @user68186 No, it is not a good idea. But, as you can see, that problem can be solved. – Radu Rădeanu Sep 09 '13 at 21:02
  • 12
    I don't think chowning /etc/hosts to a user account is a good idea! – Jorge Castro Sep 09 '13 at 21:03
  • @JorgeCastro This is exactly what I said in a previous comment. I start to explain about chown because the question was initially tagged with 'ownership'. – Radu Rădeanu Sep 09 '13 at 21:14
  • 2
    I think this answer sort of buries the lede. chowning /etc/hosts has no advantages whatsoever over other approaches to the OP's problem, and although it is possible to read the OP's question as being about how to change file ownership rather than how to edit hosts, this is a case where such literal interpretation is not very helpful. Although it would change the message of your answer, I suggest flipping the order of the information: sudo -i first, and chown as an afterthought. – Eliah Kagan Jan 26 '17 at 13:45
8

You should use sudo -i (nano for text-based or gedit for graphical) /etc/hosts. By default normal users should not be able to edit the hosts file. Changing the ownership of hosts is not the right thing to do.

Oli
  • 293,335
Fahad Yousuf
  • 1,224
2

Open a terminal and try this:

sudo vi file.txt

file.txt is the file you want to edit.

The system will ask you to enter your password so you can execute the command with root privileges.

Jorge Castro
  • 71,754
Arnold
  • 470
  • 2
  • 6
1

Rare case (but it was mine): The file system may be mounted read-only. This may happen unexpectedly due to a disk / kernel problem.

  • If it is mounted as read-only you can use this answer to remount as writable: https://askubuntu.com/a/175742 – Atnas Apr 18 '23 at 17:53