Mac Lion 上的 CoreStore 加密錯誤

Mac Lion 上的 CoreStore 加密錯誤

我正在嘗試在 Mac Lion 10.7.4 上使用 diskutil CoreStorage 加密外部磁碟機。我認為唯一的要求是驅動器具有 GUID 分區方案和日誌式 HFS+ 檔案系統。我認為我的驅動器已相應配置,但當我鍵入以下命令時,我收到一條錯誤訊息:

Michaels-MacBook-Pro:~ Michael$ diskutil cs convert disk2 -passphrase TestPassword

將磁碟轉換為 CoreStorage 時發生錯誤:Core Storage 不支援給定的檔案系統 (-69756)

以下是有關相關驅動器的報告詳細資訊:

Michaels-MacBook-Pro:~ Michael$ diskutil list disk2
/dev/disk2
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *500.1 GB   disk2
   1:                        EFI                         209.7 MB   disk2s1
   2:                  Apple_HFS Test1                   499.8 GB   disk2s2

Michaels-MacBook-Pro:~ Michael$ diskutil list disk2
/dev/disk2
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *500.1 GB   disk2
   1:                        EFI                         209.7 MB   disk2s1
   2:                  Apple_HFS Test1                   499.8 GB   disk2s2

Michaels-MacBook-Pro:~ Michael$ diskutil info disk2s2
   Device Identifier:        disk2s2
   Device Node:              /dev/disk2s2
   Part of Whole:            disk2
   Device / Media Name:      Test1

   Volume Name:              Test1
   Escaped with Unicode:     Test1

   Mounted:                  Yes
   Mount Point:              /Volumes/Test1
   Escaped with Unicode:     /Volumes/Test1

   File System Personality:  Journaled HFS+
   Type (Bundle):            hfs
   Name (User Visible):      Mac OS Extended (Journaled)
   Journal:                  Journal size 40960 KB at offset 0xe8e000
   Owners:                   Disabled

   Partition Type:           Apple_HFS
   OS Can Be Installed:      Yes
   Media Type:               Generic
   Protocol:                 FireWire
   SMART Status:             Not Supported
   Volume UUID:              1024D0B8-1C45-3057-B040-AE5C3841DABF

   Total Size:               499.8 GB (499763888128 Bytes) (exactly 976101344 512-Byte-Blocks)
   Volume Free Space:        499.3 GB (499315826688 Bytes) (exactly 975226224 512-Byte-Blocks)
   Device Block Size:        512 Bytes

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

   Whole:                    No
   Internal:                 No

我有點擔心“分區類型:Apple_HFS”條目導致了問題,但我不知道如何更改它。我似乎只能控制Disk Utility.

有人能為我解釋一下嗎?

答案1

您需要為其提供 JHFS+ 分割區 ( disk2s2),而不是整個磁碟 ( disk2)。

diskutil 的手冊頁在涉及coreStorage convert( cs convert) 動詞時特別說明了這一點:

將常規日誌 HFS+ 或區分大小寫的日誌 HFS+ 磁碟區(必須位於分割區上且處於 GPT 分割區方案內)轉換為 CoreStorage 邏輯磁碟區。

相關內容