ユーザーを 削除する 例 まず データを 退避させよう
base@server:~$ scp 192.168.0.8:/home/control/20070331-end-outofuser-public-html.tgz . Password: ひみつのパスワード 20070331-end-outofuser-public-html.tgz 100% 220MB 4.1MB/s 00:53
では リモートの サーバーで ユーザー ”outofuser”さんの 一連の データー を削除しましょう
remote:~# cat /etc/passwd | grep outofuser outofuser:x:1003:100:,,,:/home/outofuser:/bin/bash remote:~# userdel -r outofuser remote:~# cat /etc/passwd | grep outofuser remote:~#
もう一つ 例を見ておきましょう
sv:/home# cat /etc/passwd | grep outofuser outofuser:x:1003:100:,,,:/home/outofuser:/bin/bash sv:/home# df Filesystem 1k-blocks Used Available Use% Mounted on /dev/hda2 3579116 2485244 909128 74% / sv:/home# userdel -r outofuser sv:/home# cat /etc/passwd | grep outofuser sv:/home# df Filesystem 1k-blocks Used Available Use% Mounted on /dev/hda2 3579116 2244644 1149728 67% /
にゃんたろう 拝!
2007年 4月13日 (金) 22:36:49 JST 作成