OS X:无法创建分区,因为驱动器已锁定


16

问题: 我有一个带有Mountain Lion的USB密钥,我想在我的MacBook Pro上安装它。我删除了笔记本电脑上的现有分区,并希望创建一个新的安装操作系统,但不能,因为驱动器的分区选项卡中的所有内容都显示为灰色。

基本上,在解锁分区之前我无能为力。所以问题是:如何从磁盘实用程序或命令行解锁分区?

Answers:


31

我亲眼看到了这个问题,并且以下命令解锁并格式化了磁盘,尽管磁盘工具不能。

$ diskutil list

应该显示这样的事情:

/dev/disk0
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *121.3 GB   disk0
   1:                        EFI                         209.7 MB   disk0s1
   2:                  Apple_HFS Macintosh HD            120.5 GB   disk0s2
   3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
/dev/disk1
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *64.0 GB    disk1
   1:                        EFI                         209.7 MB   disk1s1
   2:          Apple_CoreStorage                         63.2 GB    disk1s2
   3:                 Apple_Boot Recovery HD             650.0 MB   disk1s3

然后格式化有问题的磁盘。在这种情况下,disk1。

$ diskutil eraseDisk JHFS+ name disk1

你应该看到这个:

Started erase on disk1
Unmounting disk
Creating the partition map
Waiting for the disks to reappear
Formatting disk1s2 as Mac OS Extended (Journaled) with name name
Initialized /dev/rdisk1s2 as a 59 GB HFS Plus volume with a 8192k journal
Mounting disk
Finished erase on disk1

以下网页帮助我解决了这个问题,并可能对其他人有用。

https://discussions.apple.com/thread/4091299?start=0&tstart=0

http://derflounder.wordpress.com/2011/11/23/using-the-command-line-to-unlock-or-decrypt-your-filevault-2-encrypted-boot-drive/


1
谢谢。把我的头踢到墙上之后,你就把它解决了。再次感谢。
Stephen Cox

这节省了我,我有一个FileVault启用MacBook Air,试图擦除后试图做山狮干净安装
agilityvision

1
辉煌!!!我有一个损坏的文件库分区,我无能为力。这工作并花了几秒钟。
Richard
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.