デフォルトのシェル環境を変更したい
chsh -s /bin/zsh
rootユーザーとして実行し、
エラーメッセージが表示されました:chsh: PAM authentication failed
。
私はこのスレッドを見つけますhttp://ubuntuforums.org/showthread.php?t=1702833
しかし、答えは私の問題を解決しませんでした
助けていただければ幸いです
これは/etc/pam.d/chshの内容です
#
# The PAM configuration file for the Shadow `chsh' service
#
# This will not allow a user to change their shell unless
# their current one is listed in /etc/shells. This keeps
# accounts with special shells from changing them.
auth required pam_shells.so
# This allows root to change user shell without being
# prompted for a password
auth sufficient pam_rootok.so
# The standard Unix authentication modules, used with
# NIS (man nsswitch) as well as normal /etc/passwd and
# /etc/shadow entries.
@include common-auth
@include common-account
@include common-session
これは/ etc / shellsの内容です
# /etc/shells: valid login shells
/bin/sh
/bin/dash
/bin/bash
/bin/rbash
/usr/bin/tmux
/usr/bin/screen
/bin/zsh
/usr/bin/zsh
私は実行するために使用されることがわかりchsh -s zsh
、これは最初の行を変更します/etc/passwd
ように
root:x:0:0:root:/root:zsh
そして、chsh
あなたがしようとするパスワードを尋ねます
/etc/passwd
ファイルを手動で編集するだけで問題ありません。
愚かな間違いとあなたの返信に感謝