AWSのEC2でbashからzshに変更しようと思い、
compfefコマンドがないぞと怒られた。
またsshログインするたびに警告が出てくるのでググってみた。
1 2 |
$ zsh complete:13: command not found: compdef |
■command not found after starting zsh in AWS machines #4771
https://github.com/robbyrussell/oh-my-zsh/issues/4771
■解決方法
https://github.com/aws/aws-cli/issues/1819
結局/etc/profile.d/aws-cli.shが/etc/zshrcを見ているため権限がおかしいとのことなので変更する。
1 |
$ sudo chmod a-r /etc/profile.d/aws-cli.sh |
エラーなくなった!
■まとめ
友人と同じエラーだったが、
また別である。
https://blog.lorentzca.me/complete13-command-not-found-compdef/
あれ、rootの方もzshにしたらまた同じエラー出た。。。
→といっても基本rootは使わんからいいか。
0件のコメント