chsh修改用户的Shell
[test@localhost etc]$ chsh --help
Usage:
chsh [options] [username]
Options:
-s, --shell <shell> specify login shell
-l, --list-shells print list of shells and exit
-u, --help display this help and exit
-v, --version output version information and exit
-l 列出系统支持的所有Shell
[test@localhost etc]$ chsh -l
/bin/sh
/bin/bash
/sbin/nologin
/usr/bin/sh
/usr/bin/bash
/usr/sbin/nologin
/bin/tcsh
/bin/csh
[test@localhost etc]$
修改用户Shell
[test@localhost etc]$ chsh
Changing shell for test.
New shell [/bin/bash]: /bin/bash
chsh: Shell not changed.
[test@localhost etc]$
chsh修改用户的Shell
原创
©著作权归作者所有:来自51CTO博客作者mb64390262217c2的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Docker修改容器的时间
Docker容器内系统时间不准确,可能会导致一系列问题,尤其是在依赖于时间戳进行操作的应用和服务中。
系统时间 Docker 时间同步 后端 服务器