su命令使用范例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了su命令使用范例相关的知识,希望对你有一定的参考价值。
su switch user$ ls
/home/scott/libby
$ whoami
scott
$ su gromit
Password:
$ whoami
gromit
$ ls
/home/scott/libby
这里su改变用户时目录并没有发生变化。从本质上来说,你已经变成了 gromit ,但使用的仍然是 scott 的环境变量。
su [-|-l|--login] 此选项可以使用户切换到新用户时,等同于新用户从控制台登录。如下例:
$ ls
/home/scott/libby
$ whoami
scott
$ su -l gromit
Password:
$ whoami
gromit
$ ls
/home/gromit
以上是关于su命令使用范例的主要内容,如果未能解决你的问题,请参考以下文章