login
login 命令:使用戶放棄現(xiàn)在的使用的身份,重新登錄系統(tǒng)。也可以在后面加入用戶,在直接輸入密碼,登錄系統(tǒng)
例:
[root@localhost test]# login
logout
logout 用戶退出系統(tǒng),其功能和login命令對應(yīng)
例:
[root@localhost test]# logout
exit
各種退出
例:
[root@linux test]# exit #退出當前用戶,返回上一個用戶
exit
[tank@linux test]#
chsh
chsh 用于 改變 用戶的 登錄 shell. 如果 沒有在 命令行上 指定 shell, chsh 能夠 做出 提示.
-s, --shell
指定 用戶的 登錄 shell.
-l, --list-shells
顯示 /etc/shells 中的 shell 列表, 然后退出.
-u, --help
顯示 使用方法, 然后退出.
-v, --version
顯示 版本信息, 然后退出.
例:
[root@localhost ~]# chsh #必變當前用戶的shell
Changing shell for root.
New shell [/bin/bash]: /bin/csh #輸入新的shell地址
Shell changed.
[root@localhost ~]# chsh -s /bin/csh #改變當前用戶shell,設(shè)置為 /bin/csh
Changing shell for root.
Shell not changed.