Linuxにユーザーとユーザーグループを追加、削除する
1.ユーザーを作成
adduser phpuser_startnews24 // phpuser_startnews24を作成
passwd phpuser_startnews24 //phpuser_startnews24のパスワードを設定
2.グループを作成
groupadd test_startnews24 // test_startnews24グループを作成
3.ユーザーを新規しながらユーザグループを作成
useradd -g test_startnews24 phpuser_startnews24
4.既存のユーザーにグループを増加
usermod -G groupname username
gpasswd -a user group
5.ユーザーアカウントを無効にする
passwd start_news24 –l
passwd start_news24 –u
6.永続的にユーザーアカウントを削除
userdel jacky_startnews24
groupdel jacky_startnews24
usermod –G peter peter
7.グループからユーザーを削除
gpasswd -d ABC GROUP
8.ユーザー情報を表示
id user
cat /etc/passwd