1

Is there any way to disable the Ubuntu guest account so as to prevent even someone on the guest account from logging into your computer?

I am on Ubuntu 14.10.

1 Answers1

3

Just run this (once) at terminal:

sudo sh -c 'printf "[SeatDefaults]\nallow-guest=false\n" >/usr/share/lightdm/lightdm.conf.d/50-no-guest.conf'

You will no longer have 'Guest' as login option, on your next login.

To undo (restore Guest option), remove the file created:

sudo rm /usr/share/lightdm/lightdm.conf.d/50-no-guest.conf

Duplicate: How do I disable the guest session?

Babbzzz
  • 346
  • 2
  • 12