1. 程式人生 > >Linux修改使用者基本資訊

Linux修改使用者基本資訊

(1).usermod修改使用者基本資訊

usermod [選項] 登入名

1)常用選項

-d,--home HOME_DIR    使用者的新主目錄
-g,--gid GROUP    強制GROUP為新主組
-G,--group GROUPS    新的附加組列表GROUPS(去除原有附加組)
-L,--lock    鎖定使用者賬戶
-m,--move-home  將主目錄位置移至新位置(僅與-d一起使用) -s,--shell SHELL 該使用者賬戶的新登入shell -u,uid UID  使用者賬戶的新UID -U,--unlock 解鎖使用者賬戶

2)例項

修改UID

[[email protected] ~]# useradd t1
[[email protected] ~]# id t1
uid=1001(t1) gid=1001(t1) 組=1001(t1)
[[email protected] ~]# usermod -u 1111 t1
[[email protected] ~]# id t1
uid=1111(t1) gid=1001(t1) 組=1001(t1)

修改登入shell

[[email protected] ~]# grep t1 /etc/passwd
t1:x:1111:1001::/home/t1:/bin/bash
[
[email protected]
~]# usermod -s /sbin/nologin t1 [[email protected] ~]# grep t1 /etc/passwd t1:x:1111:1001::/home/t1:/sbin/nologin

修改主目錄,-m -d選項

[[email protected] ~]# ls /home/
t1  xf
[[email protected] ~]# usermod -m -d /opt/t1 t1
[[email protected] ~]# ls /home/
xf
[[email protected]
~]# ls /opt/ rh t1

修改說明資訊

[[email protected] ~]# grep t1 /etc/passwd
t1:x:1111:1001::/opt/t1:/sbin/nologin
[[email protected] ~]# usermod -c "hello world" t1
[[email protected] ~]# grep t1 /etc/passwd
t1:x:1111:1001:hello world:/opt/t1:/sbin/nologin

(2).直接修改配置檔案

vim /etc/passwd

 格式如下:

使用者名稱:密碼佔位符:UID:GID:使用者描述:使用者主目錄(即~):登入後的shell