In Fedora Linux root log in is not allowed in GUI by default, if you want to enable the same then please follow below steps.
Step1: Login to Terminal using root account
Step2: Change Directory to /etc/pam.d
cd /etc/pam.d
Step3: Take back up of two files inside pam.d direcory
- gdm
- gdm-password
Note: in Linux it is strongly recommended to take back up of any file before making any changes
Step4: Open file “gdm” using text editor
vi gdm
Step5: Comment the line "auth required pam_succeed_if.so user != root quiet" by adding a # symbol in the beginning of the line
#auth required pam_succeed_if.so user != root quiet
Note: # meant to comment that line so that it won't be considered as an input from that file
Step6: Open file “gdm-password” using text editor
vi gdm-password
Step7: Comment the line "auth required pam_succeed_if.so user != root quiet" by adding a # symbol in the beginning of the file
#auth required pam_succeed_if.so user != root quiet
Step8: Congrats you are done, now just log in to GUI as root user J
Nice..
ReplyDelete