使用SSH登录远端的Linux服务器,假设登录使用的用户名是aaa,登录成功后,会直接进入/home/aaa/目录下,但这时使用的用户名还是aaa,如下所示:
aaa@ubuntu:~$ pwd
/home/aaa
aaa@ubuntu:~$ whoami
aaa
如果要使用root用户的话,必须使用sudo –s 进行切换,因为root权限会频繁使用,如果希望SSH连接到Linux服务器后,自动切换到root用户,方法如下:
1、修改普通用户的环境变量:
aaa@ubuntu:~$ pwd /home/aaa
aaa@ubuntu:~$ vim .bash_profile
在该文件中添加下面的内容:
#.bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
.~/.bashrc
fi
sudo su root
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
2、修改/etc/sudoers文件
#修改文件权限,拥有编辑文件写的权限
chmod u+w /etc/sudoers
vim /etc/sudoers
#编辑文件,在root ALL=(ALL)ALL行下添加
xxx ALL=(ALL) NOPASSWD:ALL
#XXX为你的用户名
#改回文件的原权限
chmod u-w /etc/sudoers