在 15.10 中无法获取我的 ntfs 分区 UUID

在 15.10 中无法获取我的 ntfs 分区 UUID

我安装了 Ubuntu 15.10,但无法挂载我的 NTFS 分区。我搜索了很多,找到了一些解决方案并尝试了它们,但有趣的是,每次我在我的 PC 上安装 OS X Lion 时获得分区的 UUID,现在分区不同了,输入 mount 命令后我在 fstab 中写入的 UUID 表示没有这样的分区。我有一个 Fat32 硬盘,它可以毫无问题地挂载,但我无法在主硬盘上挂载这两个分区

这是命令的返回fdisk -l

Disk /dev/sdb: 931.5 GiB, 1000203804160 bytes, 1953523055 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: AFE71E0B-0932-46A1-9D20-51590AD74849

Device          Start        End   Sectors   Size Type
/dev/sdb1        2048     409599    407552   199M BIOS boot
/dev/sdb2      409640  630292479 629882840 300.4G Apple HFS/HFS+
/dev/sdb3   630292480  662292479  32000000  15.3G Linux swap
/dev/sdb4  1050572800 1953521663 902948864 430.6G Microsoft basic data
/dev/sdb5   782292482 1050571778 268279297 127.9G Microsoft basic data
/dev/sdb6   662292480  782290943 119998464  57.2G Linux filesystem

Partition table entries are not in disk order.

这是来自的回报blkid

/dev/sda1: LABEL="Backup" UUID="B87AEC097AEBC26C" TYPE="ntfs" PARTUUID="9b2f9b2f-01"
/dev/sdb3: UUID="0b11f260-f506-4feb-b27d-8ec98c56f9ee" TYPE="swap" PARTUUID="2511e248-4a18-4d64-8e5b-667266e50e83"
/dev/sdb6: UUID="3f8ea2fb-5659-4b3a-abee-1fe6c74828fe" TYPE="ext4" PARTUUID="3a8a9067-1bd7-4aa0-8f69-8f93e91f8c9f"
/dev/sdb1: PARTUUID="a7affebc-b7c8-435a-ac1c-fa9b179e25f9"
/dev/sdb2: PARTLABEL="OS X Lion" PARTUUID="242d5ef9-f715-49c3-a6e2-f1e356dce0d3"
/dev/sdb4: PARTLABEL="FILES" PARTUUID="043127c6-625d-4af7-b4be-1259c1beeaf4"
/dev/sdb5: PTTYPE="dos" PARTUUID="23d03a16-f05f-4e4d-9ae2-d5bc8f8f5e4e"

标有“备份”的分区是第二个硬盘驱动器,它将被安装,但我需要那些“OS X Lion”的“文件”和不再是这些名称的“dos”分区,我不知道为什么会这样,因为我不再有 HFS+ 分区,而 sdb2/sdb4/sdb5 分区都是 ntfs,但它无法识别。

例如,这是从此添加的行返回到fstab“OS X Lion”和mount命令

UUID=242d5ef9-f715-49c3-a6e2-f1e356dce0d3  /media/Data  ntfs-3g  defaults,windows_names,locale=en_US.utf8  0 0

返回:

mount: can't find UUID=242d5ef9-f715-49c3-a6e2-f1e356dce0d3

我感谢你们的任何帮助。

附言:我是 Linux/Ubuntu 的新手,我只是一个用户。

答案1

看起来您没有适合UUID您的分区的sdb,而是使用PARTUUID(这不起作用)。

您可以:

  • 添加 UUID 并使用它:gparted(8)可以正常执行此操作,或者ntfslabel(8)使用--new-serial选项
  • 用于PARTUUID=fstab

相关内容