安装内部驱动器 Lubuntu

安装内部驱动器 Lubuntu

我使用的是安装在 120 GB 驱动器上的 Lubuntu 16.10。但是,我还有一个 1TB 的辅助硬盘,里面装满了个人数据和类似的宝贵信息,但我无法安装它:

jan@Bondy:/$ sudo mount /dev/sdb2 /media/diskD
mount: wrong fs type, bad option, bad superblock on /dev/sdb2,
       missing codepage or helper program, or other error

       In some cases useful info is found in syslog - try
       doesg | tail or so.

输出fdisk

Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes/4096 bytes
Disklabel type: dos
Disk identifier: 0xcf802303

Device     Boot      Start        End    Sectors  Size Id Type
/dev/sdb1             2048   32507903   32505856 15.5G 27 Hidden NTFS WinRE
/dev/sdb2        302507904 1953521663 1921013760  916G  7 HPFS/NTFS/exFAT

我不确定。我的 NTFS 文件系统有问题吗?我是否需要再次格式化我的驱动器?

编辑:在我将 C 盘分成两个分区并再次安装 Lubuntu 后,Lubuntu 仍然无法加载第二个驱动器。在第二个分区上我安装了 Windows,它可以毫无问题地与第二个驱动器配合使用。


编者注:
这篇文章最初包含几张控制台文本的截图。这些截图现已被文字记录所取代。

答案1

显然,Linux 尝试使用它识别的 FS 类型,但失败了。首先让我们看看 Linux 认为它是什么:

blkid /dev/sdb2

因此,如果它说“vfat”,那么尝试 NTFS:

mount -t ntfs /dev/sdb2 /path/to/mount/point

如果显示“ntfs”,请尝试 VFAT:

mount -t vfat /dev/sdb2 /path/to/mount/point

相关内容