linux系統root密碼修改
普通使用者給root使用者修改密碼
9.switch into a chroot jail, where /sysroot is treated as the root of the filesystem tree
switch_root:/# chroot /sysroot
10.set a new root password:
sh-4.2# passwd [root] (change the root password)
orsh-4.2# passwd -d root (delete the root password)
11.make sure that all unlabeled files (including/etc/shadow at this point)get relabeled during boot.
sh-4.2# touch /.autorelabel
12. sh-4.2# exit
13. switch_root:/# exit
破解root密碼操作步驟:
1、重啟虛擬機器
2、在linux16末尾加上 rd.break,ctrl+x執行
3、mount -o remount,rw /sysroot
4、chroot /sysroot
5、passwd root
6、輸入新密碼:
7、確認密碼
8、touch /.autorelabel
9、exit
10、exit
重啟虛擬機器摁鍵盤(e)鍵
到此頁面
找到紅色橫線,然後空一格輸入 rd.break,ctrl+x執行
用行到此頁面,然後按照以下輸入
mount -o remount,rw /sysroot
chroot /sysroot
passwd
輸入新密碼
確認密碼
基本操作
在虛擬機器中輸入pwd//檢視當前工作目錄
輸入mkdir xixi//建立資料夾xiix
切換目錄 cd
1.絕對路徑(以/開頭的路徑):cd /home/xixi
2.相對路徑(以./開頭的路徑):cd / cd home cd xixi
修改密碼:passwd 使用者名稱 直接輸入passwd修改當前使用者的密碼
刪除密碼:passwd -d 使用者名稱
root使用者:不需要輸入原密碼,可以不符合密碼複雜性規則,可以給任何人修改密碼
普通使用者:需要輸入原密碼,必須符合密碼複雜性規則,passwd修改密碼無法指定使用者
linux 修改普通使用者許可權
命令 su 2.給root新增sudoers檔案的寫許可權 命令 chmod u w etc sudoers 3.編輯sudoers檔案 命令 vi etc sudoers 找到這行 root all all all 在下面新增 username all all all 可新增下面四種任意一種格式 ...
Linux普通使用者許可權修改
這個關於許可權修改的部落格到處都是,但是本文主要是針對,配置檔案修改過了之後,普通使用者還是不能進行建立檔案進行的操作。修改許可權,主要是去 etc sudoers下面進行修改 1.切換到root使用者 命令 su 2.給root新增sudoers檔案的寫許可權 命令 chmod 777 etc s...
linux賦予普通使用者root許可權
開始 測試環境 centos 5.5 1 新增使用者,首先用adduser命令新增乙個普通使用者,命令如下 adduser tommy 新增乙個名為tommy的使用者 passwd tommy 修改密碼 changing password for user tommy.new unix passwo...