tôi muốn thay đổi mặc định env
và chạy chsh -s /bin/zsh
như người dùng root,
nhưng một thông báo lỗi xuất hiện : chsh: PAM authentication failed
.
tôi tìm thấy chủ đề này http://ubuntuforums.org/showthread.php?t=1702833
nhưng câu trả lời không giải quyết được vấn đề của tôi
Bất kỳ trợ giúp sẽ được đánh giá cao
đây là nội dung của /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
đây là nội dung của / etc / shell
# /etc/shells: valid login shells
/bin/sh
/bin/dash
/bin/bash
/bin/rbash
/usr/bin/tmux
/usr/bin/screen
/bin/zsh
/usr/bin/zsh
tôi thấy rằng tôi đã sử dụng để chạy chsh -s zsh
này sẽ thay đổi dòng đầu tiên /etc/passwd
là
root:x:0:0:root:/root:zsh
và chsh
sẽ yêu cầu người mật khẩu bạn thử
Tôi chỉ cần chỉnh sửa /etc/passwd
tập tin bằng tay, và mọi thứ đều ổn.
sai lầm ngu ngốc và cảm ơn câu trả lời của bạn