1、文件系统不支持:可能需要安装对应的工具,例如挂载 NTFS:sudo apt install ntfs-3g没有权限访问:可以使用 sudo chown 修改目录属主:sudo chown $USER:$USER /mnt/mydisk2、挂载报错
Failed to mount '/dev/sda2': 输入/输出错误
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows解决:把这块硬盘接回 Windows 系统或者使用PE系统进入。
打开命令提示符(管理员权限),输入:
cmd
chkdsk /f X:
其中 X: 是该硬盘在 Windows 中的盘符(比如 D:)。/f 参数表示“自动修复错误”。执行完毕后,重启 Windows 两次(重要!)再回到 Ubuntu 中重新挂载:
sudo mount -t ntfs-3g /dev/sda2 /media/ysb/work