How to create an encrypted RAID CoreStorage volume in macOS Sierra THE OLD WAY: Difference between revisions

From blinkenwiki

No edit summary
No edit summary
 
Line 30: Line 30:
</pre>
</pre>
</ol>
</ol>
(From Evernote)

Latest revision as of 02:15, 13 June 2021

  1. Get the device names (identifiers) for the disks to use:
    # diskutil list
    
  2. Create an AppleRaid device
    # diskutil ar create stripe PlutoRAID jhfs+ disk97 disk98
    
  3. Get the device name of the new device
    # diskutil ar list
    
  4. Create a CoreStorage logical volume group
    # diskutil cs create PlutoLVG disk99
    
  5. Create a CoreStorage volume
    # diskutil cs createvolume PlutoLVG jhfs+ Pluto 100%
    
  6. (Optional) Encrypt the volume
    # diskutil cs encryptvolume Pluto -passphrase ‘somepassphrasehere’
    

(From Evernote)