[¸®´ª½º userdel ¿É¼Ç]
[root@linux0 /root]# userdel -r test <- Ȩµð·ºÅ丮±îÁö»èÁ¦
[root@linux0 /root]# groupdel student <- student ±×·ì»èÁ¦
[root@linux0 /root]# groupadd -g 5000 test
[root@linux0 /root]# groupmod -g 6000 test <- test 5000¹ø ±×·ìÀÇ G¾ÆÀ̵ð°ªÀ» 6000À¸·Î º¯°æ
[root@linux0 /root]# cat /etc/group | grep test
test:x:6000:
[root@linux0 /root]# groupmod -n testgroup test <- test±×·ìÀÇ À̸§À» testgroupÀ¸·Î º¯°æ
[root@linux0 /root]# cat /etc/group | grep test <---!c :c·Î½ÃÀÛÇß´ø¸í·É´Ù½Ã½ÇÇà
testgroup:x:6000:
[root@linux0 /root]# groupdel testgroup
|