1、創(chuàng)建用戶gentoo,附加組為bin和root,默認shell為/bin/csh,注釋信息為“Gentoo Distribution”
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),趙縣企業(yè)網(wǎng)站建設(shè),趙縣品牌網(wǎng)站建設(shè),網(wǎng)站定制,趙縣網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,趙縣網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
useradd -G bin,root -s /bin/csh -c "gentoo distribution" gentoo
2、創(chuàng)建下面用戶,組和成員關(guān)系,名字為admins的組,用戶natasha,使用admins作為附加組,用戶harry,也使用admins,作為附加組,用戶sarah,不可交互登陸系統(tǒng),且不是admins成員,natasha,harry,sarah密碼都是centos
groupadd admins
useradd -G admins natasha
useradd -G admins harry
useradd -s /sbin/nologin sarah
echo centos | passwd --stdin natasha
echo centos | passwd --stdin harry
echo centos | passwd --stdin sarah
3、創(chuàng)建testuser uid 1234,主組:bin,輔助組:root,ftp,shell:/bin/csh home:/testdir/testuser
useradd -u 1234 -g bin -G root,ftp -s /bin/csh -d /testdir/testuser testuser
4、修改testuser uid:4321,主組:root,輔助組:nobody,loginname:test,home:/home/test 家數(shù)據(jù)遷移
groupadd loginname
usermod -u 4321 -g root -G nobody -l test -dm /home/test testuser
5、批量創(chuàng)建帳號:user1...user10,uid:3000-3009,shell:/bin/csh,home:/testdir/username
passwd:usernamepass,注意家目錄相關(guān)配置,使用戶正常登錄
vim useradd.txt
user1:x:3000:3000::/testdir/username1:/bin/csh
user2:x:3001:3001::/testdir/username2:/bin/csh
user3:x:3002:3002::/testdir/username3:/bin/csh
user4:x:3003:3003::/testdir/username4:/bin/csh
user5:x:3004:3004::/testdir/username5:/bin/csh
user6:x:3005:3005::/testdir/username6:/bin/csh
user7:x:3006:3006::/testdir/username7:/bin/csh
user8:x:3007:3007::/testdir/username8:/bin/csh
user9:x:3008:3008::/testdir/username9:/bin/csh
newusers useradd.txt
vim pwd.txt
user1:123456
user2:123456
user3:123456
user4:123456
user5:123456
user6:123456
user7:123456
user8:123456
user9:123456
cat pwd.txt | chpasswd