我想将NTFS分区的Dual-boot安装到Ubuntu 20.04上,就像解释了的这里一样,但我无法获得UUID~请告诉我如何做到这一点?提前谢谢。
$ sudo blkid /dev/sda3
/dev/sda3: PARTLABEL="LDM data partition" PARTUUID="1ac8435c-9d24-11e9-ae6f-1856807279f5"
$ sudo fdisk -l
Disk /dev/sda: 931.53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: ST1000LX015-1U71
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: gpt
Disk identifier: C2D7B6B3-7446-4292-8878-B7EBA2689DB0
Device Start End Sectors Size Type
/dev/sda1 34 2081 2048 1M Microsoft LDM metadata
/dev/sda2 2082 262177 260096 127M Microsoft reserved
/dev/sda3 262178 1953525134 1953262957 931.4G Microsoft LDM data
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
Partition 3 does not start on physical sector boundary.发布于 2023-01-22 08:23:34
https://linuxhandbook.com/get-uuid-disk/
ls -l /dev/disk/by-uuid/
我建议您将它放到/etc/fstab中,这样您就不必每次都手动挂载。只需为您的情况填写正确的文件夹和UUID,然后将这一行添加到文件的末尾。
UUID=XXXXXXXXX /home/my/folder ntfs nofail,auto 0 0
您也可以尝试从GUI挂载。打开文件>其他位置,您将看到驱动器分区

正如mook765所指出的,它需要一个新工具才能使用该LDM分区。
https://askubuntu.com/questions/1451315
复制相似问题