web-dev-qa-db-ja.com

BootcampおよびWindows8.1とBitLockerのインストール後にMacOSXブートオプションが欠落している

ユーザーは最新のMacBookProを持っており、Mac OS Xをインストールしてから、BootCampとWindows8.1 Professionalをインストールし、BitLockerを有効にしました(明らかにWindowsパーティションを再配置しました)。 MacOSXパーティションを起動するオプションは提供されなくなりました。それを取り戻す方法はありますか?

更新:これと関係があると思います http://anand-iyer.com/blog/2014/fixing-missing -bootcamp-partition-in-osx.html

1
Aaron

Windows 10でも同じことが起こりました。私の場合、ビットロッカーの有効化プロセスによってOSXパーティションのタイプコードが変更されました。 Windowsで確認および修正するには、gdiskを使用します。 http://sourceforge.net/projects/gptfdisk/

検証

  • 管理コマンドプロンプトを開き、gdisk64.exeを実行します(x64を想定)。
  • 「0:」は、Windowsのディスクを記述するための特別な構文です。 (私はハードドライブを1つしか持っておらず、0:が最初です)
  • パーティションテーブルを印刷するには「p」
Type device filename, or press <Enter> to exit: 0:
Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Command (? for help): p
Disk 0:: 977105060 sectors, 465.9 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): FDABFC64-BD61-4C2D-95CC-AB54D6A16DAA
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 977105026
Partitions will be aligned on 8-sector boundaries
Total free space is 4028 sectors (2.0 MiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1              40          409639   200.0 MiB   EF00  EFI System Partition
   2          409640       293378375   139.7 GiB   0700  Customer
   3       293378376       294647911   619.9 MiB   AF00  Recovery HD
   4       294649856       976392292   325.1 GiB   0700  Basic data partition
   5       976394240       977104895   347.0 MiB   2700

私の場合、パーティション#2はOSXのインストールです。コードが0700であることに注意してください。これは正しくありません(gdiskは0700を「Microsoft基本データ」として記述しています)。同じことが表示された場合は修正を続行し、そうでない場合はここで停止します。また、MBRが保護的であり、ハイブリッドではないことを再確認してください。

修正

Command (? for help): t
Partition number (1-5): 2
Current type is 'Apple HFS/HFS+'
Hex code or GUID (L to show codes, Enter = 700): AF00
Changed type of partition to 'Apple HFS/HFS+'

Command (? for help): v

No problems found. 4028 free sectors (2.0 MiB) available in 4
segments, the largest of which is 1947 (973.5 KiB) in size.

Command (? for help): w
  • 「t」は、パーティションのタイプコードを変更するコマンドです。
  • 「2」は私のOSXパーティションインデックスです(あなたのものを使用してください)
  • 「AF00」はApple HFS/HFS +のタイプコードです
  • 「v」はディスクを検証します
  • 「w」はテーブルをディスクに書き込み、終了します
3
Kenneth Ito