I want to change the SU password but it wont let me, what's the current SU password on version 15.04? It is a new install.
Asked
Active
Viewed 8,629 times
2 Answers
1
it is the same as your user password, type:
sudo su
and enter your user password
root account is disabled in ubuntu for security purposes (there is no root password)

mchid
- 43,546
- 8
- 97
- 150
-
Awesome mchid, that does it, thank you for your help !! – Jack Ram Apr 29 '15 at 19:45
-
1@JackRam cool, you can accept the answer by clicking the icon on the left to close it out. – mchid Apr 29 '15 at 19:46
1
There is no root password, but you can login as root with either sudo su
or sudo -i
.
After that, you can set the root password with passwd
if you so wish.

Vreality
- 1,119