# useradd taro # useradd hanako
# passwd taro ← パスワード「taro」 # passwd hanako ← パスワード「hanako」
sudoコマンドを実行できる権限を付与
# visudo
## Allow root to run any commands anywhere root ALL=(ALL) ALL taro ALL=(ALL) ALL ←行追加 hanako ALL=(ALL) ALL ←行追加
# cat /etc/passwd
# cat /etc/group
# vi /etc/ssh/sshd_config
以下、yesをnoに変更
#PermitRootLogin yes PermitRootLogin no
# /etc/init.d/sshd restart