quiero cambiar el entorno de shell predeterminado
y ejecutar chsh -s /bin/zsh
como usuario root,
sino un mensaje de error apareció: chsh: PAM authentication failed
.
Encuentro este hilo http://ubuntuforums.org/showthread.php?t=1702833
pero la respuesta no resolvió mi problema
Cualquier ayuda sería apreciada
este es el contenido de /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
este es el contenido de / 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
Me parece que solía ejecutar chsh -s zsh
esto cambiará la primera línea de /etc/passwd
como
root:x:0:0:root:/root:zsh
y chsh
le pedirá la contraseña en cualquier momento que intente
Acabo de editar el /etc/passwd
archivo manualmente, y todo está bien.
estúpido error y gracias por tus respuestas