1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Catalina で El Capitan の usb 起動ディスクを作成

Last updated at Posted at 2020-05-22

自用のメモ

  • El Captain の公式マウントイメージをダウンロード

  • ターミナルを開く

  • チェンジディレクトリ

     $ cd ~/Desktop
    
  • 作業用ディレクトリ作成

    $ mkdir installCapitan && cd installCapitan
    
  • dmg イメージをダブルクリックしてマウントする

  • dmgイメージを解凍

    $ xar -xf /Volumes/Install\ OS\ X/InstallMacOSX.pkg
    
  • InstallMacOSX.pkg 配下に、Payload, Scripts, InstallESD.dmg が存在することを確認

  • Payload を解凍

    $ tar xvzf InstallMacOSX.pkg/Payload
    
  • Install OS X El Capitan.app が生成されたことを確認

  • インストール用のデータを .app 配下に移動

    $ mv InstallMacOSX.pkg/InstallESD.dmg Install\ OS\ X\ El\ Capitan.app/Contents/SharedSupport/
    

​ mv先はTab補完が効かないが突き進めば良し

  • usb boot を作成

    $ sudo Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia \
            --applicationpath ./Install\ OS\ X\ El\ Capitan.app \
            --volume /Volumes/my_install_volume
    
  • ついでにこのusb boot で普通にGUIのインストールをやっても、不正やら改ざんやら言われ、インストールさせてくれないので、以下で回避可能(進捗が表示されないので、とにかく辛抱強く待つのみ)

    $ installer -pkg  /Volumes/Mac\ OS\ X\ Install\ DVD/Packages/OSInstall.mpkg -target /Volumes/"XXX"
    

Reference:

1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?