How to log in as root in linux shell?

How to login as root in linux shell?

0

4 Answers

The correct way to login as root is to type:

su -

This works on systems where sudo is inavailable or not configured.

Some distributions disallow logging in as root and then one should run his commands like this:

sudo MyCommandHere...
1

I'd comment on sagar's answer if I could, as I wish to add that while

sudo -i

will log you in as root in the shell, it will move you to its home directory (/root) as well.

Edit: As said by Andreas,

sudo -s

would instead allow you to remain in your current directory, which may be useful.

2

use sudo -i command and put your current user password

Reboot the computer. In the LILO boot loader, we should press Ctrl + X and type “linux single”. The sh-3.00# prompt should be displayed when Linux starts.

Type “passwd” and type the new password we want to use. Linux will ask us again to type the same password as confirmation.

Reboot the computer and start Linux normally. We should be able to login as root at the login screen. See How to Log In and Work as Root in Linux

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like