LoginSignup
1
0

More than 3 years have passed since last update.

AMD RyzenにmacOS 10.15.7 CatalinaをOpenCoreでinstallする(改訂版)その1

Posted at

AMD RyzenにmacOS 10.15 CatalinaをOpenCoreでinstallする記事を書いたが
OpenCoreが https://dortania.github.io/ に変わったこともあり、書き直してみる。

参考にするガイド

既存のmacOS(今回はmacOS 10.15.3 Catalina)での作業です。

Hardware

CPU : AMD Ryzen 7 1700
MB : MSI X370 GAMING Pro Carbon
GPU : Radeon RX 570
SSD : Toshiba THNSNH128GCST
Memory : Corseai DDR4 PC4-25600 8GB 2枚組
USB stick : Silicon-Power16G

macOSの入手

Terminalアプリで

% cd
% mkdir macOS-installer
% cd macOS-installer  
% curl -O https://raw.githubusercontent.com/munki/macadmin-scripts/main/installinstallmacos.py
% sudo python installinstallmacos.py

ここで

ModuleNotFoundError: No module named 'xattr'

とエラーになる場合は

% pip install xattr

としてxattrをinstallする。
やり直して問題なければ、

 #      ProductID    Version    Build   Post Date  Title
 1      061-26578    10.14.5  18F2059  2019-10-14  macOS Mojave
 2      061-26589    10.14.6   18G103  2019-10-14  macOS Mojave
 3      041-91758    10.13.6    17G66  2019-10-19  macOS High Sierra
 4      041-88800    10.14.4  18E2034  2019-10-23  macOS Mojave
 5      041-90855    10.13.5   17F66a  2019-10-23  Install macOS High Sierra Beta
 6      061-86291    10.15.3  19D2064  2020-03-23  macOS Catalina
 7      001-04366    10.15.4  19E2269  2020-05-04  macOS Catalina
 8      001-15219    10.15.5  19F2200  2020-06-15  macOS Catalina
 9      001-36735    10.15.6  19G2006  2020-08-06  macOS Catalina
10      001-36801    10.15.6  19G2021  2020-08-12  macOS Catalina
11      001-51042    10.15.7     19H2  2020-09-24  macOS Catalina
12      001-57224    10.15.7     19H4  2020-10-27  macOS Catalina
13      001-68446    10.15.7    19H15  2020-11-11  macOS Catalina
14      071-00838       11.2    20D64  2021-02-01  macOS Big Sur

Choose a product to download (1-14): 13

と進むので、今回は13のCatalina最新版を選んだ。
しばらくすると、

Disk image created at: ./Install_macOS_10.15.7-19H15.dmg

と出て、macOS-installerフォルダ内にDMGファイルができている。
これをダブルクリックして開き、"macOS Catalinaインストール"をApplicationフォルダにcopyする。

USBインストーラーを作成する

16GBのUSB stickをDisk Utilityで初期化し、
HFS+/MacOS Journaled,GUID partitionでMyVolumeという名前に
Terminalで以下を実行

sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume
Ready to start.
To continue we need to erase the volume at /Volumes/MyVolume.
If you wish to continue type (Y) then press return: Y
Erasing disk: 0%... 10%... 20%... 30%... 100%
Copying to disk: 0%... 10%... 20%... 30%... 40%... 50%... 60%... 70%... 80%... 90%... 100%
Making disk bootable...
Copying boot files...
Install media now available at "/Volumes/Install macOS Catalina"

となればOK。

USB installerのEFI

MountEFIを入手する。

git clone https://github.com/corpnewt/MountEFI
cd MountEFI
chmod +x MountEFI.command
./MountEFI.command

と実行する。

#######################################################
#                      MountEFI                       #
#######################################################

1. Catalina (disk6s5)
2. EFI (disk8s1)
3. Install macOS Catalina (disk7s2)

S. Switch to Full Output
L. Set As Default Layout (Current: Slim)
B. Mount the Boot Drive's EFI

D. Pick Default Disk (None Set)
M. After Mounting: Return to Menu
Q. Quit

(* denotes the booted EFI (Clover/OC))
Pick the drive containing your EFI:

ここで3を選択するとUSB installerのEFIがFinderに表示される。
今のところ空っぽ。ここにmacOS bootに必要な物を入れていく。

(その2に続く)

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0