13

I have started an Ubuntu 15.10 instance on Google Cloud and installed Webmin as per here:

http://www.webmin.com/deb.html

Webmin has been installed successfully and I can see the login page in my browser window, however I need to type my username along with my password with sudo level access to login and start using Webmin.

I've used the SSH via the browser window so have never set a password for any sort of access to the root.

Does anyone know how to set a password for myself to login as a sudo user on my instance?

Michael
  • 447
  • 1
  • 3
  • 10

2 Answers2

18

Okay, I figured it out. I was looking at the permissions menu in Google Cloud, but it was as simple as changing the root password in Linux by typing: sudo passwd

Michael
  • 447
  • 1
  • 3
  • 10
4

it's working for me

vfa_gianglt@instance-1:~$ sudo -i
root@instance-1:~# sudo bash
root@instance-1:~# sudo passwd root
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
root@instance-1:~# cd /root
root@instance-1:~#
Giang
  • 3,553
  • 30
  • 28