15

I can sudo, but I don't have the root password so I can't su root. Using sudo, can I change the root password?

ripper234
  • 31,063
  • 43
  • 82
  • 90

6 Answers6

27

So you want to run something like sudo passwd root?

sakisk
  • 2,863
  • 21
  • 18
18

You can also just use

sudo su

and keep the root account without password.

philfr
  • 1,056
  • 5
  • 11
8

Try this:

sudo passwd

Note that you also want to log in using su - instead of su (more info).

tshepang
  • 64,472
  • 86
  • 223
  • 290
4

If you have your sudo password then try the following (this is on Ubuntu 14.04LTS):

ewan@user-sbc-ihsw:~$ sudo -i
[sudo] password for ewan: 
root@user-sbc-ihsw:~# passwd
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
root@user-sbc-ihsw:~# whoami
root
Ewan
  • 151
  • 6
3

you can also use sudo with the "-i" option. this will log you in as root without using the su command.

sudo -i

1

You can change all these options in sudoers file, even make no password if you want( I would not recommend this though).

Craab
  • 51
  • 1