我无法登录到我的帐户,我想从 Documents 文件夹备份我的数据,所以我需要知道如何从恢复模式挂载其他分区。我该怎么做?
mv /home/username/Documents /to_my_other_partitons
答案1
目前恢复模式有漏洞。请为该错误投票(单击该页面左上角的绿色文字)。
解决方法是,一进入Recovery模式就输入下面两个命令:
mount --options remount,rw /
mount --all
这将允许您正常继续。
答案2
mount <what to mount> <where to mount>
。通常它看起来像这样mount /dev/sdb1 /mnt
。您还可以指定许多选项,但您很可能不需要这些选项。此外,以这种方式安装需要 root 权限(例如 sudo)。