mount -o rw,remount /报错
时间: 2023-11-21 11:57:30 浏览: 316
当你使用`mount -o rw,remount /`命令时,如果出现`Mount flags unexpectedly changed during remount of /`错误,这通常是由于文件系统已经以只读方式挂载,因此无法重新以读写方式挂载。你可以尝试使用以下命令来解决这个问题:
```shell
mount -o remount,rw /
```
这个命令将强制重新挂载文件系统,并将其设置为读写模式。如果你仍然无法以读写方式挂载文件系统,则可能需要检查文件系统是否已损坏或是否存在其他问题。
相关问题
mount -o rw,remount /报错mount_apfs: unrecognized option 'remount'
根据提供的引用内容,我们可以得知在新版本系统中,使用 `mount -o rw,remount /` 命令会出现 `mount_apfs: unrecognized option 'remount'` 的错误。这是因为在新版本的 macOS 中,`remount` 选项已经被废弃,因此需要使用不同的命令来实现相同的效果。
解决这个问题的方法是使用 `mount -uw /` 命令,其中 `-uw` 选项表示将文件系统挂载为可写模式。这个命令将会将根文件系统重新挂载为可写模式,从而允许您进行更改。
另外,如果您想要将某个特定的文件系统挂载为可写模式,可以使用以下命令:
```shell
mount -o rw,force /dev/diskXsY /path/to/mount/point
```
其中 `/dev/diskXsY` 是您要挂载的文件系统的设备名称,`/path/to/mount/point` 是您要将文件系统挂载到的目标路径。
mount -o rw,remount /报错mount_apfs: unrecognized option 'remount'和mount: / failed with 64
这个问题可能是由于您正在尝试在只读文件系统上进行读写操作而导致的。在这种情况下,您需要先将文件系统重新挂载为可读写模式,然后再进行操作。但是,根据您提供的引用,似乎您正在使用的是APFS文件系统,而在新版本的系统中,使用“mount -o rw,remount /”命令会出现错误“mount_apfs: unrecognized option 'remount'”。因此,您需要使用以下命令来重新挂载文件系统:
```shell
sudo mount -uw /
```***请尝试使用以下命令:
```shell
sudo mount -o remount,rw /
```
这应该会解决您的问题。
阅读全文