安装系统管理设备 /dev/sda5 时出错

安装系统管理设备 /dev/sda5 时出错

我怎么解决这个问题?

Error mounting system-managed device /dev/sda5: 
Command-line `mount "/media/naymar/skool"' exited with non-zero exit status 1:
[mntent]: line 2 in /etc/fstab is bad
mount: can't find /media/naymar/skool in /etc/fstab or /etc/mtab**

答案1

您的挂载命令应该是:

mount <device> <directory>

所以你需要

mount /dev/sda5 /media/naymar/skool

根据 sda5 设备上的文件系统,您可能需要包含 FS 类型:

mount -t <fstype> <device> <directory>

答案2

您可以尝试以下链接中的步骤。它解决了我的问题。 http://www.makeuseof.com/tag/fix-corrupted-windows-ntfs-filesystem-ubuntu/ 如果你无法从存储库获取 ntfsprogs(使用 apt-get install ntfsprogs),请从以下位置下载http://launchpadlibrarian.net/115355735/ntfsprogs_2012.1.15AR.5-4ubuntu3_all.deb

相关内容