#su命令和su -命令最大的本质区别就是:前者只是切换了root身份,但Shell环境仍然是普通用户的Shell;而后者连用户和Shell环境一起切换成root身份了。
$ su -
#编辑sshd_config文件
$ vi /etc/ssh/sshd_config
#添加配置,若有则注释掉即可
# Authentication:
LoginGraceTime 120
#PermitRootLogin without-password
PermitRootLogin yes
StrictModes yes
# 重启ssh服务
$ /etc/init.d/ssh restart