Linux shell su 命令
Linux shell su 命令将当前登录用户变更为其他使用者的身份。
su
su 命令将当前登录用户变更为其他使用者的身份。
除 root 外,需要键入该使用者的密码。
使用权限 :所有用户
su 命令语法格式
su [-fmp] [-c command] [-s shell] [--help] [--version] [-] [USER [ARG]]
参数说明
- -f 或 --fast 不必读启动档(如 csh.cshrc 等),仅用于 csh 或 tcsh
- -m -p 或 --preserve-environment 执行 su 时不改变环境变数
- -c command 或 --command=command 变更为帐号为 USER 的使用者并执行指令(command)后再变回原来使用者
- -s shell 或 --shell=shell 指定要执行的 shell (bash csh tcsh 等),预设值为 /etc/passwd 内的该使用者(USER) shell
- --help 显示说明文件
- --version 显示版本资讯
-
-l
或 --login 这个参数加了之后,就好像是重新 login 为该使用者一样,大部份环境变数(HOME SHELL USER等等)都是以该使用者(USER)为主,并且工作目录也会改变,如果没有指定 USER ,内定是 root- USER 欲变更的使用者帐号
- ARG 传入新的 shell 参数
最常用的命令格式是
su [用户名] -
范例
先用常用命令登录到 cky 用户
[root@localhost ~]# su cky -
变更帐号为 root 并在执行 ls 指令后退出变回原使用者
[cky@localhost root]$ su -c ls root Password: anaconda-ks.cfg shell [cky@localhost root]$
变更帐号为 root 并传入 -f 参数给新执行的 shell
[cky@localhost root]$ su root -f Password: [root@localhost ~]#
变更帐号为 clsung 并改变工作目录至 clsung 的家目录(home dir)
[root@localhost ~]# useradd clsung [root@localhost ~]# su - clsung [clsung@localhost ~]$ ls [clsung@localhost ~]$ pwd /home/clsung [clsung@localhost ~]$
切换用户
[cky@localhost root]$ whoami #显示当前用户 cky [cky@localhost root]$ pwd #显示当前目录 /root [cky@localhost root]$ su root #切换到root用户 Password: [root@localhost ~]# whoami root [root@localhost ~]# pwd /root [root@localhost ~]# exit exit [cky@localhost root]$