Filesystems

目前不支持重新掛載。您必須解除安裝卷,然後再次安裝它

  • January 24, 2016

我無法在我的 Ubuntu12.04 系統上的 /dev/sda3 中對文件進行 chmod。這是我嘗試查看其資訊時得到的:

$ 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.

我想,我不知道正確的命令。我已經從Google搜尋中進行了幾次試錯,但到目前為止還沒有運氣。我害怕犯錯誤。關於如何以讀寫權限掛載文件系統的任何幫助都會很棒。非常感謝!

不要使用-o remount. 這僅對重新安裝有用,即在您的情況不支持的一個操作中解除安裝和重新安裝。因此,您需要像以前一樣解除安裝,然後執行:

sudo mount -o rw /media/sda3 

引用自:https://unix.stackexchange.com/questions/257394