Exit from both root and user with one command
I know about "not using sudo su -
" etc. But let's be honest, almost all of us do it.
So, here is the issue. We can't have root logins enabled, so we have to ssh in as our user then su to root.
Here is the process tree:
1 7897 7826 7826 ? -1 S 1000 0:00 sshd: josh@pts/0
7897 7898 7898 7898 pts/0 8182 Ss 1000 0:00 \_ -bash
7898 7990 7990 7898 pts/0 8182 S 0 0:00 \_ sudo su -
7990 7991 7990 7898 pts/0 8182 S 0 0:00 \_ su -
7991 7992 7992 7898 pts/0 8182 S 0 0:00 \_ -su
7992 8182 8182 7898 pts/0 8182 R+ 0 0:00 \_ ps axjf
I would like to exit from root, then from my user with one command. Is there a way to do this?
BTW exit && exit does not work because it exits the shell and doesnt process the rest of the command
josh@ubuntu:~$ sudo su -
root@ubuntu:~# exit && exit
logout
josh@ubuntu:~$
Solution 1:
Just do
exec sudo -i
Now the root shell is replacing the default one, and when you exit, you exit "both" (incorrectly worded, since the first shell stop existing with the exec
).
Look:
[romano:~] % ssh pern
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.19.0-28-generic x86_64)
* Documentation: https://help.ubuntu.com/
[romano@pern:~] % exec sudo -i
[sudo] password for romano:
root@pern:~# whoami
root
root@pern:~# pstree -a -s -l -p -u $$
init,1
└─sshd,1140 -D
└─sshd,17450
└─sshd,17570,romano
└─sudo,17571,root -i
└─bash,17665
└─pstree,17678 -a -s -l -p -u 17665
root@pern:~# exit
logout
Connection to pern.XXX.XXX.XXX closed.
[romano:~] %
I use it a lot to have a ssh
-ed terminal: use exec ssh whatever
and when you exit, the terminal closes.
Solution 2:
Technically, no one answered your question. I appreciate that they think their way is better (probably is), but here's another approach (in case you have to su -
some time and have the same issue);
- [Log into a system]
$ sudo su -;exit
# echo "do things"
# exit
When you exit from root, the original user will also log out since it's continuing it's last command.
Cheers!
Solution 3:
when you are becoming root user just type::
sudo -s && exit
when you will exit from root you shell will automatically close. you can export this command to make it permanent.
echo "alias mysudo='sudo -s; exit'" >> ~/.bashrc && source ~/.bashrc