无法安装之前工作的驱动器

无法安装之前工作的驱动器

救命,我已经为此折腾了好几天了。我重新安装了 10.04 或 12.04,Ubuntu 启动正常。我弹出 CD 驱动器并插入另一个硬盘驱动器(320gb/NTFS),最初您可以在 Ubuntu 中看到该驱动器,但无法安装。按照 fstab 和虚拟驱动器说明操作:

/dev/sdb    /mnt/D_Drive    auto    rw,auto,user,exec   0   0

我尝试 mount -a 或者

/etc# sudo mount -t ntfs  /dev/sdb /mnt/D_Drive

以下是我看到的磁盘/分区

root@crunch005:/etc# sudo fdisk -l

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000ac3

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1       13995   112412672   83  Linux
/dev/sda2           13995       14594     4805633    5  Extended
/dev/sda5           13995       14594     4805632   82  Linux swap / Solaris

Disk /dev/sdb: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x07147c7f

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb2            2937       38913   288985252+   5  Extended
/dev/sdb5            2937       38913   288985221    7  HPFS/NTFS

任何帮助深表感谢。

提前致谢!

答案1

您要挂载 NTFS 分区而不是整个磁盘。因此,您的挂载命令应类似于sudo mount -t ntfs /dev/sdb5 /mnt/D_Drive

同样正确的 fstab 行是/dev/sdb5 /mnt/D_Drive auto rw,auto,user,exec 0 0 (只需在设备名称部分添加一个 NTFS 分区号,根据 fdisk 输出为 5)。

相关内容