Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- CentOS 6.10
- MySQL
- httpd-dav.conf
- PHP 5.2 .ini
- mod_unique_id
- PHP 5.2.17 .ini
- httpd-mpm.conf
- httpd-autoindex.conf
- httpd-info.conf
- Mod_Security 룰 셋
- Node.js 소스 설치
- epel repository
- MySQL 5.1.41
- vim color scheme
- Node.js apache 연동
- Repository
- gcc update
- node.js
- apache 연동
- httpd-vhosts.conf
- CentOS 6
- vimrc 옵션
- python 3.X 소스 설치
- python 3.5.10
- CentOS
- unique_id
- httpd.conf
- httpd-default.conf
- httpd 2.2.32
- jQuery
Archives
- Today
- Total
목록groupadd (1)
곰시기's
[Linux] CentOS 08. 그룹 관리 ( groupadd, groupdel, gpasswd )
1. 그룹 확인 # cat /etc/group | grep [그룹명] 2. 그룹 생성 1) # groupadd [옵션] [그룹명] 2) 옵션 옵션 설명 -g 특정 GID 할당 # groupadd -g 1000 test -r 시스템용 그룹 생성 # groupadd -r sysadmin 3. 그룹 삭제 1) # groupdel [그룹명] = 사용자가 기본 그룹으로 지정해있을 경우 삭제가 불가능하다. 4. 그룹 관리 1) # gpasswd [옵션] [그룹명] 2) 옵션 옵션 설명 -a 특정그룹에 새 멤버 추가 # gpasswd -a A B ( "B" 그룹에 사용자 "A"를 추가 ) -d 특정그룹에 멤버 제거 # gpasswd -d A B ( "B" 그룹의 사용자 "A"를 제거 ) -r 그룹 패스워드 제거 # ..
Sever/Linux Command
2020. 10. 30. 12:37