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 1: Line 1:
<ol>
<ol>
</i>Get the device names (identifiers) for the disks to use:
<li>Get the device names (identifiers) for the disks to use:
<pre>
<pre>
# diskutil list
# diskutil list

Revision as of 01:53, 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’