我忘记了我的 Ubuntu 密码,也无法打开 grub 菜单,有办法解决这个问题吗?请帮忙
答案1
在 USB 驱动器上获取 Ubuntu 安装映像或 Live Image 的副本。从该 USB 驱动器启动。
当出现安装屏幕时,按 ctrl + alt F3,这将为您提供一个 shell。在 shell 中键入,sudo bash
这将为您提供 root 访问权限。
使用以下命令找到安装了原始操作系统的驱动器:
lsblk
然后运行:
mkdir /mnt/newroot
mount /dev/sdx /mnt/newroot (replace with the correct device you identified)
or if your root is on a lvm
mount /dev/mapper/....... /mnt/newroot (replace with the correct device you identified)
mount -R /run /mnt/newroot/run
mount -R /dev /mnt/newroot/dev
mount -R /proc /mnt/newroot/proc
mount -R /sys /mnt/newroot/sys
chroot /mnt/newroot /bin/bash
这将使您进入原始操作系统的 root shell,要更改您的帐户密码,请输入:
passwd <username>
出现提示时输入您的新密码。
您现在可以像平常一样重新启动并登录系统。