linux – 通过脚本中的命令行更改shell(使用chsh)

前端之家收集整理的这篇文章主要介绍了linux – 通过脚本中的命令行更改shell(使用chsh)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在设置机器的启动脚本中,我想运行
chsh -s /bin/zsh

但是,这会询问用户的密码.如何将密码作为参数传递?或者,如果我有sudo权力,我可以以某种方式绕过这一步吗?或者,是否有另一种方法来更改默认启动shell?

解决方法

以下内容可防止锁定的帐户更改其shell,并有选择地让人们在没有sudo或su的情况下使用chsh:

简单的设置仍然是安全的:

>添加/etc/pam.d/chsh的顶部:

# This allows users of group chsh to change their shells without a password.
#
# Per: http://serverfault.com/questions/202468/changing-the-shell-using-chsh-via-the-command-line-in-a-script
#
auth       sufficient   pam_wheel.so trust group=chsh

>创建chsh组:

groupadd chsh

对于任何允许更改其shell的用户

usermod -a -G chsh username

钱拍:

user@host:~$getent passwd $USER
user:x:1000:1001::/home/user:/bin/bash
user@host:~$chsh -s `which zsh`
user@host:~$getent passwd $USER
user:x:1000:1001::/home/user:/usr/bin/zsh
user@host:~$
原文链接:https://www.f2er.com/linux/402250.html

猜你在找的Linux相关文章