"su"和"su -" 的 最大区别是:
前者su只是切换了root的身份,但是shell环境变量任然是普通用户的shell
后者"su -"是连用户和shell环境变量一起切换成root身份。只有切换了shell环境才不会出现PATH环境变量错误。
#####################################################################################################
[xusx@localhost ~]$ pwd
/home/xusx
[xusx@localhost ~]$ su root
密码:
[root@localhost xusx]# pwd
/home/xusx
[root@localhost xusx]# exit
exit
=====================================================================
[xusx@localhost ~]$ su - root
密码:
[root@localhost ~]# pwd
/root
[root@localhost ~]#