Mountain Lion 中的 UUID

Mountain Lion 中的 UUID

我尝试在 Mountain Lion 中查找我的外部 HDD UUID,但 diskutil info /dev/disk1s1 返回:

Najis-MacBook-Air:~ ****$ diskutil info disk1s1
   Device Identifier:        disk1s1
   Device Node:              /dev/disk1s1
   Part of Whole:            disk1
   Device / Media Name:      Untitled 1

   Volume Name:              My Book
   Escaped with Unicode:     My%FF%FE%20%00Book

   Mounted:                  Yes
   Mount Point:              /Volumes/My Book
   Escaped with Unicode:     /Volumes/My%FF%FE%20%00Book

   File System Personality:  NTFS
   Type (Bundle):            ntfs
   Name (User Visible):      Windows NT File System (NTFS)

   Partition Type:           Windows_NTFS
   OS Can Be Installed:      No
   Media Type:               Generic
   Protocol:                 USB
   SMART Status:             Not Supported

   Total Size:               2.0 TB (2000364240896 Bytes) (exactly 3906961408 512-Byte-Blocks)
   Volume Free Space:        212.5 GB (212506509312 Bytes) (exactly 415051776 512-Byte-Blocks)
   Device Block Size:        512 Bytes

   Read-Only Media:          No
   Read-Only Volume:         Yes
   Ejectable:                Yes

   Whole:                    No
   Internal:                 No

而且没有 UUID。到底是什么问题?

谢谢。

答案1

实际上

diskutil info disk?s?

不提供 UUID,但使用以下命令可以:

diskutil info /Volumes/YOUR_DRIVE_NAME

答案2

在我的 Mac(Mountain Lion)上,实际上两个命令

diskutil info disk?s?

diskutil /Volumes/YOUR_DRIVE_NAME

提供相同的信息。请注意,FAT(MS_DOS)格式的卷没有 UUID。如果您将其格式化为 Mac OSX 扩展格式,它将有!

答案3

您尝试访问的驱动器属于 Windows_NTFS 分区类型。因此它不显示驱动器的 UDID。要进一步访问驱动器,请按照此旧版中给出的步骤操作博客(显示与 10.6 相关的步骤),但由于 MAC OSX 从不改变其后端核心,因此可以满足您的目的。

相关内容