2

My brother installed Ubuntu on my windows 10 toshiba laptop. At first it was great, but now I can only access the guest session, and can't access the full capability of Ubuntu. I work with my laptop and I'm new to this so any kind of advice or help would be genuinely appreciated. Thank you!

Thomas Ward
  • 74,764
Ana Schmidt
  • 21
  • 1
  • 2

1 Answers1

0

Getting access when you know your username & password

Login to tty when the login screen pops up (CTL ALT F1)

Login by typing the correct username and password.

Go back to desktop by using (ctl alt f7)

Now go into

settings -> users -> add user 

Add an admin account. Then remove guest login options.

Troubleshooting

To list all users you can use:

cut -d: -f1 /etc/passwd

To add a new user you can use:

sudo adduser new_username

or:

sudo useradd new_username

If you can't login to any account previous known or listed you must Reset your administrative login.

DnrDevil
  • 1,488