Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> Linux普通用戶偽裝root用戶

Linux普通用戶偽裝root用戶

日期:2017/1/20 17:37:06      編輯:Linux系統常見問題解答

1 版本信息

系統版本:Red Hat EnterpriseLinux *

 

2 配置步驟

2.1 添加新用戶

添加新用戶。

 

useradd  username

 

2.2 修改用戶密碼

修改用戶密碼。

 

passwd  username

 

2.3 修改passwd配置文件

修改passwd文件,將root的信息賦予新用戶username。

 

vi  /etc/passwd
 
#將root後面的內容復制給新用戶
root:x:0:0:root:/root:/bin/bash
username:x:0:0:root:/root:/bin/bash

 

2.4 驗證偽裝

使用su命令來驗證,如果顯示為root說明偽裝成功。

 

su - username
 
[root@hostname ~]#
Copyright © Windows教程網 All Rights Reserved