修改密碼的命令passwd用法示例【每日一個(gè)知識(shí)點(diǎn)第194期-Linux】
passwd命令用于設(shè)置用戶的認(rèn)證信息,包括用戶密碼、密碼過(guò)期時(shí)間等。系統(tǒng)管理者則能用它管理系統(tǒng)用戶的密碼。只有管理者可以指定用戶名稱,一般用戶只能變更自己的密碼。
語(yǔ)法
passwd(選項(xiàng))(參數(shù))
選項(xiàng)
-d:刪除密碼,僅有系統(tǒng)管理者才能使用; -f:強(qiáng)制執(zhí)行; -k:設(shè)置只有在密碼過(guò)期失效后,方能更新; -l:鎖住密碼; -s:列出密碼的相關(guān)信息,僅有系統(tǒng)管理者才能使用; -u:解開已上鎖的帳號(hào)。
參數(shù)
用戶名:需要設(shè)置密碼的用戶名。
知識(shí)擴(kuò)展
與用戶、組賬戶信息相關(guān)的文件
存放用戶信息:
/etc/passwd /etc/shadow
存放組信息:
/etc/group /etc/gshadow
用戶信息文件分析(每項(xiàng)用:
隔開)
例如:jack:X:503:504:::/home/jack/:/bin/bash
jack //用戶名
X //口令、密碼
503 //用戶id(0代表root、普通新建用戶從500開始)
504 //所在組
: //描述
/home/jack/ //用戶主目錄
/bin/bash //用戶缺省Shell
組信息文件分析
例如:jack:$!$:???:13801:0:99999:7:*:*: jack //組名 $!$ //被加密的口令 13801 //創(chuàng)建日期與今天相隔的天數(shù) 0 //口令最短位數(shù) 99999 //用戶口令 7 //到7天時(shí)提醒 * //禁用天數(shù) * //過(guò)期天數(shù)
實(shí)例
如果是普通用戶執(zhí)行passwd只能修改自己的密碼。如果新建用戶后,要為新用戶創(chuàng)建密碼,則用passwd用戶名,注意要以root用戶的權(quán)限來(lái)創(chuàng)建。
[root@localhost ~]# passwd Linuxde //更改或創(chuàng)建Linuxde用戶的密碼; Changing password for user Linuxde. New UNIX password: //請(qǐng)輸入新密碼; Retype new UNIX password: //再輸入一次; passwd: all authentication tokens updated successfully. //成功;
普通用戶如果想更改自己的密碼,直接運(yùn)行passwd即可,比如當(dāng)前操作的用戶是Linuxde。
[Linuxde@localhost ~]$ passwd Changing password for user Linuxde. //更改Linuxde用戶的密碼; (current) UNIX password: //請(qǐng)輸入當(dāng)前密碼; New UNIX password: //請(qǐng)輸入新密碼; Retype new UNIX password: //確認(rèn)新密碼; passwd: all authentication tokens updated successfully. //更改成功;
比如我們讓某個(gè)用戶不能修改密碼,可以用-l
選項(xiàng)來(lái)鎖定:
[root@localhost ~]# passwd -l Linuxde //鎖定用戶Linuxde不能更改密碼;
Locking password for user Linuxde.
passwd: Success //鎖定成功;
[Linuxde@localhost ~]# su Linuxde //通過(guò)su切換到Linuxde用戶;
[Linuxde@localhost ~]$ passwd //Linuxde來(lái)更改密碼;
Changing password for user Linuxde.
Changing password for Linuxde
(current) UNIX password: //輸入Linuxde的當(dāng)前密碼;
passwd: Authentication token manipulation error //失敗,不能更改密碼;
再來(lái)一例:
[root@localhost ~]# passwd -d Linuxde //清除Linuxde用戶密碼; Removing password for user Linuxde. passwd: Success //清除成功; [root@localhost ~]# passwd -S Linuxde //查詢Linuxde用戶密碼狀態(tài); Empty password. //空密碼,也就是沒(méi)有密碼;
注意:當(dāng)我們清除一個(gè)用戶的密碼時(shí),登錄時(shí)就無(wú)需密碼,這一點(diǎn)要加以注意。
《Linux學(xué)習(xí)每日一個(gè)知識(shí)點(diǎn)》欄目是馬哥教育Linux云計(jì)算年薪20萬(wàn)+的學(xué)員社群特別發(fā)起,分享Linux工具、Linux語(yǔ)法、Linux項(xiàng)目等知識(shí)點(diǎn),幫助大家快速的了解Linux學(xué)習(xí),快速步入Linux高薪的快車道。
http://haohuigou.com/74163.html