반응형
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
- SQL_COMMANDS #DDL #DML #TCL
- SQL_VIEW #SQL #VIEW
- linux #filesystem #linuxdirectory
- database #dbms #objects #sql #schema #table #functions
- postgresql
- one_thin
- join #postgresql #sql #database
- postgresql #system_memory #local_memory #shared_memory #postgresql_architecture
- Database
- Replication
- postgresql_fdw
- SQL_basic
- glossary #database #termins #postgresql #postgresql_architecture
- postgresql #pgadmin #port #firewalld
- SQL #NULL #NOT_NULL
- repmgr #postgresql #replication #HA
- EDB
- chatgpt3 #AI #datascience
- Network #TCP #IP #Netmask #Host
- RAM #CPU #CS #Computer_Science #Terms
- Linux #linux_tar #split
- High_Availability
- inux #ome_dir #unix #linux_commands #linux_useradd #useradd
- streaming_replication
- network #network_terminology #network_protocols
- postgresql #vacuum #full_vacuum #verbose
- the_one_thing
- dbms
- oid2nae #postgresql
- data_oid
Archives
- Today
- Total
i am lazy
Linux useradd command 본문
728x90
반응형
Linux useradd 명령은 새로운 사용자 계정을 추가 하는 명령어 입니다.
Example
useradd [username]
Options:
-d 홈디렉토리 : 홈디렉토리의 경로를 지정해줍니다. 홈디렉토리를 생성할려면 -m 옵션을 같이 사용합니다.
-u uid : uid 를 지정합니다.
-g gid : gid 그룹을 지정합니다.
-G groups : 보조그룹을 지정합니다.
-s shell : 쉘을 지정합니다.
-c 주석 : 계정에 설명을 붙여 줍니다.
-D : useradd 의 기본 설정값을 확인합니다. 기본설정은 /etc/default/useradd 에 있습니다.
728x90
반응형
'Linux' 카테고리의 다른 글
Linux tar split (0) | 2022.12.08 |
---|---|
Linux Filesystem Hierarchy Standard (0) | 2022.10.19 |
Linux userdel command (1) | 2022.10.04 |
Linux user home directory 변경 (0) | 2022.10.04 |
Linux chown command (1) | 2022.10.04 |
Comments