前言
今天又重新裝了centos7突然有關使用者和使用者組有關的命令記不清了,所以記一下,也方便你我學習。
————————-記得要在root使用者下————————-
1.新建使用者
adduser testuser //新建testuser 使用者
passwd testuser //給testuser 使用者設定密碼
2.建工作組
groupadd testgroup //新建test工作組
3.新建使用者同時增加工作組
useradd -g testgroup testuser //新建testuser使用者並增加到testgroup工作組
//注::-g 所屬組 -d 家目錄 -s 所用的shell
4.給已有的使用者增加工作組
usermod -g groupname username
5.臨時關閉
在/etc/shadow檔案中屬於該使用者的行的第二個字段(密碼)前面加上就可以了。想恢復該使用者,去掉即可
//或者使用如下命令關閉使用者賬號:
passwd testuser –l
//重新釋放:
passwd testuser –u
6.永久性刪除使用者賬號
userdel testuser
groupdel testgroup
usermod –g testgroup testuser //(強制刪除該使用者的主目錄和主目錄下的所有檔案和子目錄)
7.顯示使用者資訊
id user
cat /etc/passwd
補充:檢視使用者和使用者組的方法
使用者列表檔案:/etc/passwd
使用者組列表檔案:/etc/group
檢視系統中有哪些使用者:cut -d : -f 1 /etc/passwd
檢視可以登入系統的使用者:cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1
檢視使用者操作:w命令(需要root許可權)
檢視某一使用者:w 使用者名稱
檢視登入使用者:who
檢視使用者登入歷史記錄:last
Linux Centos7安裝chrome瀏覽器
參考 1.配置yum源 在目錄 etc yum.repos.d 下新建檔案 google chrome.repo cd ect yum.repos.d vim google chrome.repo 寫入如下內容 google chrome name google chrome baseurl ena...
Linux CentOS 7 解除安裝MySql
1.解除安裝掉安裝的部分,首先看一下安裝了那些東西 命令 rpm qa grep i mysql 2.開始解除安裝 在此肯定有沒有解除安裝掉的,請往下看 命令 yum remove mysql community mysql community server mysql community libs...
Linux Centos7 解除安裝MySQL
安裝前,我們可以檢測系統是否自帶安裝 mysql rpm qa grep i mysql如果你系統有安裝,那可以選擇進行解除安裝 yum remove mysql community common 5.7.20 1.el7.x86 64 yum remove mysql community clie...