目前不支持重新挂载。您必须卸载卷,然后再次安装它

目前不支持重新挂载。您必须卸载卷,然后再次安装它

我无法在 Ubuntu12.04 系统上 chmod /dev/sda3 中的文件。这是当我尝试查看其信息时得到的结果:

 $ mount | grep 'media'
    /dev/sda2 on /media/sda2 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
    /dev/sda6 on /media/sda6 type ext4 (rw)
    /dev/sda3 on /media/sda3 type fuseblk (ro,nosuid,nodev,allow_other,default_permissions,blksize=4096)

当我尝试将 /media/sda3 的模式更改为 rw 时,出现错误:

$ sudo mount -o remount,rw /media/sda3 
Remounting is not supported at present. You have to umount volume and then mount it once again.

所以,我卸载/media/sda3

$ sudo umount /media/sda3

然后,当我尝试再次安装它时,出现相同的错误:

$ sudo mount -o remount,rw /media/sda3 
Remounting is not supported at present. You have to umount volume and then mount it once again.

我想,我不知道正确的命令。我已经通过谷歌搜索进行了几次尝试,但到目前为止还没有运气。我害怕犯错误。任何有关如何使用读写权限挂载文件系统的帮助都会很棒。多谢!

答案1

不要使用-o remount.这仅对重新安装有用,即在一项操作中卸载并再次安装,而您的情况不支持这种操作。因此,您需要像以前一样卸载然后运行:

sudo mount -o rw /media/sda3 

相关内容