Linux下使用者操作常用命令

2021-07-13 23:50:20 字數 2287 閱讀 4541

1、新增使用者

[root@tramomap ~]# adduser test1  //新建使用者test1

[root@tramomap ~]#passwd test1 //為test1修改密碼

changing password for user test1.

new unix password:(123456) //設定新密碼為123456

2、新增使用者組

[root@tramomap ~]# groupadd testgroup  //新建使用者組testgroup
3、檢視使用者資訊

[root@tramomap ~]#id test1

uid=503(test1) gid=504(test1) groups=504(test1) context=root:

system_r:

unconfined_t:

systemlow-systemhigh

[root@tramomap ~]#grep test1 /etc/passwd etc/shadow /etc/group

/etc/passwd:

test1:

x:503

:504

::/home/test1

:/bin/bash

/etc/shadow:

test1:!!$l

$mc/uea7v

$qariythkzx0wbr2of14ee.:

16827:0

:99999:7

:::/etc/group:

test1:

x:504

:/etc/group:

testgroup:

x:505

:test1

4、將已有使用者新增(移除)使用者組

[root@tramomap ~]# gpasswd –a test1 testgroup //將使用者test1新增到使用者組testgroup中

[root@tramomap ~]# id test1

uid=503(test1) gid=504(test1) groups=504(test1) ,505(testgroup) context=root:

system_r:

unconfined_t:

systemlow-systemhigh

[root@tramomap ~]# gpasswd -d test1 testgroup//將使用者test1移除使用者組testgroup

removing user testuser4 from group testgroup

5、新建使用者的同時指定使用者組

[root@tramomap ~]# useradd –g testgroup testuser2//新建使用者testuser2,並將其新增到使用者組testgroup中

[root@tramomap ~]# id testuser2

uid=504(testuser2) gid=505(testgroup) groups=505(testgroup) context=root:

system_r:

unconfined_t:

systemlow-systemhigh

6、臨時關閉使用者和重新釋放

[root@tramomap ~]#passwd test1 –l

locking password for user test1

passwd:

success

[root@tramomap ~]#passwd test1 –u

unlocking password for user test1

passwd:

success

7、永久性刪除使用者

[root@tramomap ~]#userdel testuser3

[root@tramomap ~]#groupdel testuser3

groupdel: group testuser3 does not exist

[root@tramomap ~]#usermod –g testuser3 testuser3

usermod: user testuser3 does not exist

[root@tramomap ~]#id testuser3

id:testuser3:

no such user

linux 下常用命令

linux 下根據內容查詢檔案 同時包含 keyword1 和 keyword2 的檔案 find name type f print xargs grep keyword1 grep keyword2 linux下根據程序名稱殺死程序 ps ef grep 程序名 grep v grep cut ...

linux下常用命令

1 程序顯示命令 顯示所有的程序 ps a 顯示所有的程序詳細資訊 ps al 顯示終端中的資訊 ps a 動態顯示程序資訊 top 以樹狀形式顯示程序資訊 pstree less 退出用q 顯示更詳細的資訊 ps aux或者ps ef 備註 後台程式不受終端退出影響,前台程式則要隨著終端退出而退出...

Linux下常用命令

linux下的命令實在太多,光靠找男人有時候一點都不好使,還是記一下好!一 壓縮與解壓縮命令 使用gzip程式壓縮 tar xvfz tar.gz c 使用gzip程式解壓到 目錄 tar cvfj tar.bz2 jpg 使用bzip2程式壓縮 tar xvfj tar.bz2 c 使用bzip2...