In ubuntu by default the su
(root) password is not not set. I have set it by using the sudo passwd
(see link). But I didn't like it. Can I go back to my original state.
Asked
Active
Viewed 225 times
1

Tummala Dhanvi
- 1,821
- 3
- 21
- 34
-
I believe you're looking for this. – saiarcot895 Jul 30 '14 at 16:09
1 Answers
2
The root account in Ubuntu is defaultly disabled. When you enabled the root account (set a password for it) then you can disble it easy by the following command:
sudo passwd -dl root
-d
means to delete the password (make it empty)-l
means lock the password of the account

chaos
- 27,506
- 12
- 74
- 77