web-dev-qa-db-ja.com

ユーザーが/ etc / passwdにないときにデフォルトのシェルを変更する

どのようにシェルを魚に変えることができますか?

$ Sudo usermod -s /usr/bin/fish jaan
usermod: user 'jaan' does not exist in /etc/passwd
$ getent passwd $USER
jaan:x:15466:94:Jaan Altosaar:/home/jaan:/bin/zsh

関連する質問: デフォルトのシェルを変更しようとすると、/ etc/passwdにユーザーが存在しません ldapを使用しているようです。

$ cat /etc/nsswitch.conf
passwd:         compat ldap
group:          compat ldap
shadow:         compat ldap

# Having the NOTFOUND=return bit was breaking dns resolution on web1 and web2. But we probably
# don't want any of the mdns stuff so let's get rid of it all.
#hosts:          files mdns4_minimal [NOTFOUND=return] dns mdns4
hosts:          files dns

networks:       files

protocols:      db files
services:       db files
ethers:         db files
rpc:            db files

netgroup:       ldap
automount:      ldap

そこで、ldap関連パッケージをインストールしました。

$ chsh.ldap
LDAP password for jaan:
Enter the new value, or press ENTER for the default
  Login Shell [/bin/zsh]: /usr/bin/fish
Traceback (most recent call last):
  File "/usr/bin/chsh.ldap", line 69, in <module>
    constants.NSLCD_USERMOD_Shell: Shell,
  File "/usr/share/nslcd-utils/nslcd.py", line 128, in usermod
    assert con.get_response() == constants.NSLCD_RESULT_BEGIN
  File "/usr/share/nslcd-utils/nslcd.py", line 103, in get_response
    return self.read_int32()
  File "/usr/share/nslcd-utils/nslcd.py", line 71, in read_int32
    return _int32.unpack(self.read(_int32.size))[0]
struct.error: unpack requires a string argument of length 4
$ which fish
/usr/bin/fish
$ chsh.ldap
LDAP password for jaan:
Enter the new value, or press ENTER for the default
  Login Shell [/bin/zsh]: "/usr/bin/fish"
/usr/bin/chsh.ldap: "/usr/bin/fish" is an invalid Shell
$ /usr/bin/fish
(standard_in) 1: syntax error
Welcome to fish, the friendly interactive Shell
8
Abhishek Bhatia

ちょっと待ってください。LDAPユーザーです。LDAPには、ユーザーのデフォルトシェルを変更できる設定があります。

ldap-account-manager をインストールできます。これにより、ldap設定のwebfrontentが提供されます。

apt install ldap-account-manager

enter image description here

これは、構成を処理する任意のサーバーで実行できます。とにかく設定ファイルでサーバーを設定する必要があるので。ただし、LDAPを実際に実行しているサーバーにインストールすることをお勧めします。これにより、覚えやすくすることができます。

1
Ziazis

ヒントは次のとおりです:/usr/bin/chsh.ldap: "/usr/bin/fish" is an invalid Shell/usr/bin/fish/etc/shellsに追加する必要があるようです。

1
pim