我的猫走到我的键盘上并按下了“神奇的” SysRq u,进行了紧急重新安装 R/O。 我该如何扭转这种局面?
在如何将文件系统重新挂载为读/写?SirCharlo 声称
正确的语法是:
sudo mount -o remount,rw /partition/identifier /mount/point
但这只会导致另一个错误,
mount: you must specify the filesystem type
如果我提供它,例如,
$ sudo mount -t ext4 -o remount,rw /dev/sda7 /
我回到了原帖所报告的错误消息,
mount: / not mounted or bad option
该诊断引出了一个问题,哪个?未安装,还是错误的选项?退出状态为 32,并man mount
提供以下密钥:
mount has the following return codes (the bits can be ORed):
0 success
1 incorrect invocation or permissions
2 system error (out of memory, cannot fork, no more loop devices)
4 internal mount bug
8 user interrupt
16 problems writing or locking /etc/mtab
32 mount failure
64 some mount succeeded
好的,看起来像是安装失败。;-)
我该怎么办?
顺便说一句,在回答 Alkthree 的问题“我该如何重新上马”时,SirCharlo 还建议不是remount 后,umount 又接着 mount。为什么?