ubuntu改密码mount -o remount,rw /无效怎么办
时间: 2023-12-03 13:05:46 浏览: 130
如果在 Ubuntu 中使用命令 `mount -o remount,rw /` 不能将文件系统重新挂载为可读写模式,你可以尝试以下方法:
1. 检查文件系统是否已经损坏。你可以使用 `dmesg` 命令查看系统日志,看是否有文件系统错误的提示信息。如果有错误,你需要修复文件系统才能重新挂载为可读写模式。你可以使用 `fsck` 命令来修复文件系统。
2. 确认你有足够的权限来修改密码。如果你不是管理员或者没有修改密码的权限,你需要以管理员身份运行命令。你可以使用 `sudo` 命令来以管理员身份运行命令。
3. 确认你的文件系统没有被加密。如果你的文件系统被加密了,你需要先解密才能重新挂载为可读写模式。
如果以上方法都不能解决你的问题,你可能需要考虑使用 Live CD 或者恢复模式来修复系统。
相关问题
cannot remount /dev/mapper/ubuntu--vg-ubuntu--lv read-write, is write-protected.
As an AI language model, I do not have the complete context of the situation. However, I can suggest some general solutions you can try:
1. Check if the file system is already mounted as read-only. You can use the "mount" command to check this. If it is mounted as read-only, try to remount it as read-write using the "mount -o remount,rw" command.
2. Check if the device is write-protected. If it is, you need to disable the write protection.
3. Check if there are any errors in the file system. You can use the "fsck" command to check and repair any errors.
4. Check if there are any issues with the storage device. It could be a hardware issue. You can try to connect the device to another machine to see if it works.
5. If none of the above solutions work, you may need to backup your data and reinstall the operating system.
Again, I would recommend seeking the help of a qualified technician if you are unsure of what to do.
ubuntu 修改root 密码
Ubuntu是一款流行的Linux操作系统,是一个开源软件,其中root是一个超级用户,拥有对系统的完全控制能力。它可以让你修改系统的配置,添加或删除用户等等操作。但是如果root密码被泄露或者忘记了,就需要修改root密码。
下面是如何在Ubuntu上修改root密码的步骤:
步骤1:进入ubuntu操作系统
首先,进入ubuntu系统。如果你在使用VMware或VirtualBox等类似虚拟机软件中运行ubuntu,那么就先打开虚拟机。
步骤2:进入恢复模式
在Ubuntu启动过程中,按住Shift或Esc键,这会进入boot loader菜单中。选择Ubuntu恢复模式,则会进入Recovery模式。
步骤3:进入root shell命令
在Recovery模式页面中,你需要选择root命令行选项,即“root Drop to root shell prompt”。
步骤4:重新挂载系统文件系统
在root shell命令行下,输入如下命令:
mount -o remount,rw /
“/”是系统根目录的挂载点。
步骤5:修改root密码
输入以下命令,进行修改密码:
passwd root
输入新的密码。在输入密码时,不会有任何的回显。
步骤6:重新启动系统
修改完成后,输入以下命令,即可让系统以普通方式重启。
reboot
总之,如果你忘记了Ubuntu系统的root密码,可以使用这个简单的方法来修改密码,这确保了你是唯一能够访问系统的用户。
阅读全文