ログインユーザーの追加とSSHの設定 ユーザーの追加 useradd <username> passwd <username> usermod -G wheel <username> SSHの設定 cp /etc/ssh/sshd_config /etc/ssh/sshd_config.org vi /etc/ssh/sshd_config 以下の部分をnoに変更 PermitRootLogin no PasswordAuthentication no 保存したら systemctl restart sshd su - <username> ここからログインユーザー側 mkdir .ssh c…