user@main-desktop:~$ sudo apt-get python-cheetah
[sudo] password for user:
user is not in the sudoers file. This incident will be reported.
So that is what I get when trying to install something while logged into my user account. It's prompting me for the user password.
How do I get it to prompt me for my admin account's password so that it will allow me to install something? I want to try and keep the user account seperate. I'm new to linux but it seems like adding a user account to the sudoers file defeats the purpose of having a user account.
sudo
is meant to only run processes that need root priviledges (so that you do not run firefox as root) with root priviledges and this is exactly its point - to have one user account and being able to admin the system without loggin as root. – sup May 06 '15 at 12:06sudo
is made for. You may want to read https://help.ubuntu.com/community/RootSudo. – David Foerster May 07 '15 at 20:21