리눅스 groupadd

Jmnote (토론 | 기여)님의 2014년 11월 30일 (일) 14:52 판 (새 문서: ==개요== ;리눅스 groupadd ;/usr/sbin/groupadd * 그룹을 추가하는 리눅스 명령어 ==실습== <source lang='cli'> [root@jmnote ~]# cat /etc/group | tail -3 squid:x:23: w...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

리눅스 groupadd
/usr/sbin/groupadd
  • 그룹을 추가하는 리눅스 명령어

2 실습

[root@jmnote ~]# cat /etc/group | tail -3
squid:x:23:
wbpriv:x:88:squid
varnish:x:103:
[root@jmnote ~]# groupadd testgroup
[root@jmnote ~]# cat /etc/group | tail -3
wbpriv:x:88:squid
varnish:x:103:
testgroup:x:500:

3 같이 보기