Q. How do I enable root login under Fedora 10 Gnome GUI login screen / manager?
A. Fedora 10 uses pam module called pam_succeed_if.so. This module is designed to succeed or fail authentication based on characteristics of the account belonging to the user being authenticated. One use is to select whether to load other modules based on this test. This module blocks root login using GUI.
Login as root
01. Then open GUI terminal (bash prompt) and type the following command to become root user:
$ su –
Fedora 10 update GDM config to allow root login
02. Type your root password. Next, make a backup of /etc/pam.d/gdm, enter:
#cp /etc/pam.d/gdm /root
03. Now open /etc/pam.d/gdm using nano or vi text editor, enter:
#nano /etc/pam.d/gdm
OR
#vi /etc/pam.d/gdm
04. Alternatively, you can do everything in a one command:
#su -c 'nano /etc/pam.d/gdm'
05. Find line that read as follows:
auth required pam_succeed_if.so user != root quiet
06. Remove or comment out line by prefixing #.
# auth required pam_succeed_if.so user != root quiet
07. Save and close the file. Logout from terminal and from GUI itself. Now you should be able login as root user using GDM GUI login manager.
------------------------------------------------------------------------------------------
Fedora 10 Enable GUI Root Login
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment