命令:useradd 新增使用者
用法:useradd -d [options] useradd 使用者
[
root
@fp-21~
]#useradd
--help-c,
--comment
comment
#新增備註資訊-d,
--home-dir
home_dir
#指定使用者的家目錄-d,
--defaults
#列印或更改使用者的配置-e,
--expiredate
expire_date
#使用者的有效期限-f,
--inactive
inactive
#過期快取天數(過期還能使用多少天)-g,
--gid
group
#指定使用者所屬的群組-g,
--groups
groups
#指定使用者所屬的附**組-h,
--help
#幫助文件-l,
--no-log-init
#不將使用者新增到lastlog和faillog資料庫-m,
--create-home
#自動建立家目錄-m,
--no-create-home
#不自動建立家目錄-n,
--no-user-group
#不建立使用者組-p,
--password
password
#新使用者的密碼-r,
--system
#建立系統賬號-s,
--shell
shell
#指定使用者登陸後使用的shell-u,
--uid
uid#
指定使用者的uid-u,
--user-group
#建立與使用者同名的組
# 新增備註資訊
[root@fp-21~
]# useradd -c "this is first user" test01
[root@fp-21~
]# tail -
1/etc/passwd
test01:x:
1001
:1001
:this
is first user:
/home/test01:
/bin/bash
# 指定使用者的家目錄
[root@fp-21~
]# useradd -d /opt/test test02
useradd: warning: the home directory already exists.
not copying any file from skel directory into it.
# 指定使用者所屬的群組
[root@fp-21~
]# useradd -g test01 test04
[root@fp-21~
]# tail -
1/etc/passwd
test04:x:
1004
:1001::
/home/test04:
/bin/bash
# 不建立使用者組
[root@fp-21~
]# useradd -
n test07
[root@fp-21~
]# tail -
2/etc/passwd
test07:x:
1007
:100::
/home/test07:
/bin/bash
# 指定使用者的uid
[root@fp-21~
]# useradd -u 666 test10
[root@fp-21~
]# cat /etc/passwd |grep 666
test10:x:
666:
1010::
/home/test10:
/bin/bash
link 檢視 linux 基礎命令 Linux基礎命令
eg man ls 就可以檢視ls相關的用法 注 按q鍵或者ctrl c退出,在linux下可以使用ctrl c終止當前程式執行。2.ls檢視目錄或者檔案的屬 列舉出任一目錄下面的檔案 eg ls usr man ls l a.d表示目錄 directory 如果是乙個 表示是檔案,如果是l則表示是...
linux基礎 命令
命令自動補全 help幫助 幫助文件 鳥哥linux私房菜 linux命令大全 工具書 man ls useradd utest useradd g group2 utest 建立utesty使用者屬於group2組 usermod g group3 utest 將utest所在的組改為group3...
linux 命令基礎
本週學習知識點 一 linux作業系統的目錄結構 在linux作業系統中,沒有 c d e等這些碟符的概念 只有乙個 代表根目錄。home 使用者的家 media 裝置 掛載 的映象檔案 root 最高許可權使用者 一般情況下不需要使用root 使用者 bin 所有的操作都是通過 命令實現的,這些命...