CentOS7にユーザーを登録するメモ
1.ユーザー登録
# useradd yamadauser
# passwd yamadauser
2.ユーザーにsudo権限を設定
# visudo
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
yamadauser ALL=(ALL) ALL ←この行を追加
3.作成したユーザーにスイッチ
# su – yamadauser
Coding Changes the World
1.ユーザー登録
# useradd yamadauser
# passwd yamadauser
2.ユーザーにsudo権限を設定
# visudo
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
yamadauser ALL=(ALL) ALL ←この行を追加
3.作成したユーザーにスイッチ
# su – yamadauser