Skip to content Skip to main navigation Skip to footer

Linux/Ubuntu: 设置root密码

在ubuntu linux系统安装的时候,不会要求用户去设置root的密码,因为ubuntu官方为了系统安全考虑不建议用户使用root账户。

如果想使用root账户的话,但不知道root的初始密码,下面我们来讲述如何来设置ubuntu系统中的root密码。
1# 使用普通用户登录到当前的ubuntu系统
2# 输入下面的命令来设置root的新密码
$ sudo passwd 

ubuntutest@ubuntutest:~$ sudo passwd
[sudo] password for ubuntutest:
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully

3# 执行下面的su root命令来验证密码是否创建成功。
$ su root 

ubuntutest@ubuntutest:~$ su root
Password:
root@ubuntutest:/home/ubuntutest#