Linux su命令
Linux su命令用于變更為其他使用者的身份,除 root 外,需要鍵入該使用者的密碼。
使用權(quán)限:所有使用者。
語法
su [-fmp] [-c command] [-s shell] [--help] [--version] [-] [USER [ARG]]
參數(shù)說明:
- -f 或 --fast 不必讀啟動檔(如 csh.cshrc 等),僅用于 csh 或 tcsh
- -m -p 或 --preserve-environment 執(zhí)行 su 時不改變環(huán)境變數(shù)
- -c command 或 --command=command 變更為帳號為 USER 的使用者并執(zhí)行指令(command)后再變回原來使用者
- -s shell 或 --shell=shell 指定要執(zhí)行的 shell (bash csh tcsh 等),預(yù)設(shè)值為 /etc/passwd 內(nèi)的該使用者(USER) shell
- --help 顯示說明文件
- --version 顯示版本資訊
- - -l 或 --login 這個參數(shù)加了之后,就好像是重新 login 為該使用者一樣,大部份環(huán)境變數(shù)(HOME SHELL USER等等)都是以該使用者(USER)為主,并且工作目錄也會改變,如果沒有指定 USER ,內(nèi)定是 root
- USER 欲變更的使用者帳號
- ARG 傳入新的 shell 參數(shù)
實例
變更帳號為 root 并在執(zhí)行 ls 指令后退出變回原使用者
su -c ls root
變更帳號為 root 并傳入 -f 參數(shù)給新執(zhí)行的 shell
su root -f
變更帳號為 clsung 并改變工作目錄至 clsung 的家目錄(home dir)
su - clsung
切換用戶
hnlinux@w3cschool.cn:~$ whoami //顯示當(dāng)前用戶 hnlinux hnlinux@w3cschool.cn:~$ pwd //顯示當(dāng)前目錄 /home/hnlinux hnlinux@w3cschool.cn:~$ su root //切換到root用戶 密碼: root@w3cschool.cn:/home/hnlinux# whoami root root@w3cschool.cn:/home/hnlinux# pwd /home/hnlinux
切換用戶,改變環(huán)境變量
hnlinux@w3cschool.cn:~$ whoami //顯示當(dāng)前用戶 hnlinux hnlinux@w3cschool.cn:~$ pwd //顯示當(dāng)前目錄 /home/hnlinux hnlinux@w3cschool.cn:~$ su - root //切換到root用戶 密碼: root@w3cschool.cn:/home/hnlinux# whoami root root@w3cschool.cn:/home/hnlinux# pwd //顯示當(dāng)前目錄 /root
更多建議: