真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

linux可不可以將用戶從組中刪除

這篇文章主要講解了“l(fā)inux可不可以將用戶從組中刪除”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“l(fā)inux可不可以將用戶從組中刪除”吧!

成都創(chuàng)新互聯(lián)主營福海網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā),福海h5成都微信小程序搭建,福海網(wǎng)站營銷推廣歡迎福海等地區(qū)企業(yè)咨詢

可以。刪除方法:1、使用usermod從組中刪除用戶,語法“sudo usermod -G root 用戶名”;2、使用gpasswd從指定組中刪除用戶,語法“sudo gpasswd -d 用戶名 組名”;3、編輯“/etc/group”文件,手動(dòng)從組中刪除用戶。

在Linux中,用戶可以是一個(gè)主要組和一個(gè)或幾個(gè)次要(輔助)組的成員。文件“ / etc / group”為Linux系統(tǒng)中的每個(gè)用戶定義了組成員身份。

在本教程中,我們將學(xué)習(xí)如何在Linux組中刪除用戶。我們將使用兩種方法,還將展示如何通過從“ / etc / group”文件中刪除來手動(dòng)從組中刪除用戶。

創(chuàng)建Linux用戶

就本教程而言,我們將創(chuàng)建一個(gè)名為“ testuser”的用戶。當(dāng)創(chuàng)建一個(gè)新用戶時(shí),也會(huì)創(chuàng)建一個(gè)與該用戶同名的新主要組。

我們將通過發(fā)出以下命令來創(chuàng)建新用戶:

$ sudo useradd -m testuser

現(xiàn)在,我們可以為該用戶創(chuàng)建密碼:

$ sudo passwd testuser
Changing password for user testuser.
New password:
BAD PASSWORD: The password contains the user name in some form
Retype new password:
passwd: all authentication tokens updated successfully.

我使用了與用戶名相同的密碼,因此我收到警告,密碼中不應(yīng)包含用戶名的某種形式。

將用戶添加到組

首先,我們將使用groupadd命令創(chuàng)建兩個(gè)新組,命令如下所示:

$ sudo groupadd testgroup1$ sudo groupadd testgroup2

現(xiàn)在,我們將“ testuser”用戶添加到上面創(chuàng)建的兩個(gè)組中,并使用以下命令將“ testuser”用戶添加到“ root”組中:

$ sudo usermod -a -G root testuser
$ sudo usermod -a -G testgroup1 testuser
$ sudo usermod -a -G testgroup2 testuser

好的,現(xiàn)在來看一下“ / etc / group”文件,可以看到“ testuser”是這三個(gè)組的成員。

$ cat /etc/grouproot:x:0:testuser.............testuser:x:1001:testgroup1:x:1002:testusertestgroup2:x:1003:testuser

找出用戶所屬的組

我們還可以使用以下兩種替代方法來檢查用戶屬于哪個(gè)組

$ groups testuser
testuser : testuser testgroup1 testgroup2 root$ id -nG testuser
testuser testgroup1 testgroup2 root

可以看到輸出非常相似,并且這些命令完成的是相同的事情。

使用usermod從組中刪除用戶

我們可以使用usermod命令一次從一個(gè)或多個(gè)組中刪除一個(gè)用戶。使用usermod時(shí),您必須指定將用戶保留在哪些輔助組中。讓我用一個(gè)示例來解釋一下。

$ groups testuser
testuser : testuser testgroup1 testgroup2 root

為了從“ testgroup1”和“ testgroup2”組中刪除用戶“ testuser”,請運(yùn)行以下命令(即,僅將testuser保留在“ root”組中,它是主要的“ testuser”組):

$ sudo usermod -G root testuser
Results$ groups testuser
testuser : testuser root

因此,為了將用戶劃分為更多的組,您需要提及用逗號(hào)(,)分隔的組名,例如:

$ sudo usermod -G root,testgroup1 testuser
Results# groups testusertestuser : testuser root testgroup1

使用gpasswd從組中刪除用戶

完成相似結(jié)果的另一個(gè)命令是gpasswd。與usermod不同,我們使用此命令從指定的組中刪除用戶。

要從一個(gè)特定的組中刪除用戶,我們可以使用gpasswd命令:

$ sudo gpasswd -d testuser root
Removing user testuser from group root

$ groups testuser
testuser : testuser testgroup1 testgroup2

$ sudo gpasswd -d testuser testgroup1
Removing user testuser from group testgroup1

$ groups testuser
testuser : testuser testgroup2

從組中刪除用戶(手動(dòng))

我們還可以通過手動(dòng)編輯文件'/ etc / group'從組中刪除用戶。重新啟動(dòng)后,此方法的效果將應(yīng)用于用戶。

你可以使用最喜歡的文本編輯器來編輯“ / etc / group”文件:

$ cat /etc/group
.............sssd:x:993:sshd:x:74:chrony:x:992:vagrant:x:1000:slocate:x:21:vboxsf:x:991:testuser:x:1001:testgroup1:x:1002:testusertestgroup2:x:1003:testuser$ groups testuser
testuser : testuser testgroup1 testgroup2 root

現(xiàn)在,我們將手動(dòng)編輯最后兩個(gè)條目來刪除testuser,并從testgroup1和testgroup2中刪除(編輯后的文件應(yīng)如下所示):

$ cat /etc/group.............
sssd:x:993:
sshd:x:74:
chrony:x:992:
vagrant:x:1000:
slocate:x:21:
vboxsf:x:991:
testuser:x:1001:
testgroup1:x:1002:
testgroup2:x:1003:

更改將在重新啟動(dòng)后進(jìn)行,現(xiàn)在該用戶已從這兩個(gè)組中刪除:

$ groups testuser
testuser : testuser root

感謝各位的閱讀,以上就是“l(fā)inux可不可以將用戶從組中刪除”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對linux可不可以將用戶從組中刪除這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


分享名稱:linux可不可以將用戶從組中刪除
網(wǎng)站網(wǎng)址:http://weahome.cn/article/jhpige.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部