I wanted to disable the "Guest" account on Ubuntu 12.10. A guest account allows anyone to use the computer without login credentials. No username or password is required. Ubuntu has a guest account enabled by default right through to the current release, Ubuntu 12.10.
To disable the guest account from their Ubuntu 12.04 (Precise Pangolin) or later, we need to remove it from the account list in LightDM - this is the greeter screen you see on start-up. LightDM is an X display manager for login interfaces., which replaced the old GDM (Gnome Display Manager).
I ran the following command in the terminal to open /etc/lightdm/lightdm.conf file in the gedit text editor.
$ sudo gedit /etc/lightdm/lightdm.conf
Mine contains only:
[SeatDefaults]
user-session=ubuntu
greeter-session=unity-greeter
I added the following line to the end of the lightdm.conf file. Then I saved the file and closed the editor.
allow-guest=false
Finaly I restarted the LightDM using following command. Not that If you don't like to restart LightDM, you may wait untill the next re-boot of your system to take effect of the above modification.
Please note that, If you are going to restart lightdm using the following command, first save all unsaved documents. The command might close all the running applications.
$ sudo restart lightdm
You may use the above steps with your own risk. It worked fine with me... :)
Disable Guest Account on Ubuntu 12.10
November 30, 2012 / by Kushan Sharma / with No comments /
Related Posts:
DoS-ing & Countering Apache Web Link SaturationTesting your webserver - DoS-ing DoS, or Denial of Service attacks, are nothing new. The main idea behind a DoS attack is to exhaust a devices … Read More
How do I install and mount an exFAT partition?Microsoft introduced the new exFAT file system with Vista SP1. Extended File Allocation Table (exFAT) is the successor to the old FAT32 file system [1… Read More
Network Time Protocol(NTP) Based DDoS Attacks.Accurate, reliable time is necessary for financial and legal transactions, transportation and distribution systemsand many other applications involvin… Read More
Security Vulnerabilities: Oracle GlassFish Server Administration Console Authentication BypassDescription: When the server is vulnerable to Oracle GlassFish Server Administration Console GET Request Authentication Bypass, it fails to enforce au… Read More
Reset mysql root Password I wanted to reset the mysql root password of one of my temporary hosted mysql database server. Since it was not used for a long period of time, I coul… Read More
0 comments:
Post a Comment