Adding a line into the hosts file, getting permission denied when using sudo - Mac
I'm trying to add a line into the hosts file on my Mac by executing a one line command on the terminal.
I thought this would be easy using sudo, but it returns "permission denied" when I try to add >>
to the hosts file, but it works if I try replace >
the hosts contents.
sudo echo test >> /etc/hosts
-bash: /etc/hosts: Permission denied
$
sudo echo test > /etc/hosts
Password:
$
OS is up to date.
Solution 1:
That's because echo
is being run as root, but the shell is the one actually performing the redirection. You need to spawn a new shell for this to work:
sudo -- sh -c "echo test >> /etc/hosts"
Edit: I haven't seen the fact that the >
redirect works; I can't explain that.
Solution 2:
Rather then running echo through a redirect which will be run as your current user, not root as echo is being run in your example, use tee as Steve Buzonas suggests
echo 'test' | sudo tee -a /etc/hosts
The sudo is now applied to the tee command. The '-a' appends to the file
This will also output tee to standard output. If you don't want to see 'test' in your terminal also add: > /dev/null
to the end of that line.
Solution 3:
Works also well from a script:
sudo /bin/sh -c 'echo "127.0.0.1 mydomain" >> /etc/hosts'
Solution 4:
To ensure that a new line was created first, I used this:
sudo -- sh -c "echo \ \ >> /etc/hosts";sudo -- sh -c "echo 127.0.0.1 testdomain.com >> /etc/hosts"