In terminal, I find this and it does not respond well to my orders, what should I do?
To run a command as administrator (user "root"),
use "sudo <command>".
See "man sudo_root" for details.
This message is found in the beginning of terminal.
31 Answer
Just use sudo <command>, where command is the order, or instruction you want to run as superuser. If you get an error like:
user is not in the sudoers fileYou must edit the /etc/sudoers file. To do so, type
suEnter the root password
Then, you can use nano or vi to edit the file, for example:
nano /etc/sudoersLook for a line like this:
root ALL=(ALL) ALLAnd add a new line bellow this, like:
myUser ALL=(ALL) ALLNow, reboot your computer, and then try to use sudo.
Regards.