I installed Kubuntu 12.04 on this desktop last September and am the main user of the machine. I can perform most admin tasks such as installing new software with my password, which is also accepted using sudo
in a terminal. Some tasks however ask for a root password - the most recent example being when I tried to re-install my HP printer. and my usual password does not work. I have looked at this answer, but it doesn't seem to help as I know my own password. I need to know root's password!
Asked
Active
Viewed 3.1k times
5
2 Answers
6
-
1
sudo -i
is prefered due to environmental variables. See http://ubuntuforums.org/showpost.php?p=6188826&postcount=4 – Panther Mar 12 '13 at 20:55 -
This is not useful because you also need a password to log as the "root". – skan Oct 18 '13 at 23:35
4
Ubuntu by default does not have a root password set and relies on your own password entered via sudo for superuser/sysadmin purposes.
If you are adamant on setting a password for root then the following command will do it but it is NOT needed.
sudo passwd root
I would suggest just using sudo
and then enter your own password.

haziz
- 2,929
sudo passwd
– Muhammad Sholihin Mar 13 '13 at 04:21