我正在通过 VMPlayer 运行 Ubuntu 服务器,但我不知道,也找不到登录凭据。
有人可以告诉我吗?
谢谢。
答案1
如果有 GRUB,则选择恢复模式。您应该有一个 root shell。查找添加用户。
如果你想设置 root 密码,请运行passwd root
答案2
实际上没有任何“默认登录凭据”,因此听起来您需要为自己创建一个用户。为此,您需要启动到恢复模式(如 acematrix 所述)。以下是描述如何执行此操作的问题/答案的链接:我如何恢复我的管理员权限?
使用 VMWare/Player 有点棘手。您需要启动它,然后快速将焦点放在 Ubuntu VM 上,并SHIFT在启动前按住。按照上面链接的问题中的说明进行操作,然后调用“恢复模式”。
登录后,您需要将自己添加为用户:
adduser new_user_name
设置密码并提供其他所需信息。
Adding user `new_user_name' ...
Adding new group `new_user_name' (1001) ...
Adding new user `new_user_name' (1001) with group `new_user_name' ...
Creating home directory `/home/new_user_name' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for new_user_name
Enter the new value, or press ENTER for the default
Full Name []: tester
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n] Y
然后,将该用户添加到管理员和 sudo 组(假设您希望您的用户具有“sudo”的能力)。
adduser new_user_name admin
addgroup new_user_name sudo
然后重新启动并以新用户身份登录。