Skip to content

Instantly share code, notes, and snippets.

@mowings
Created July 5, 2015 17:53
Show Gist options
  • Save mowings/1a1fdb80232fa504ca55 to your computer and use it in GitHub Desktop.
Save mowings/1a1fdb80232fa504ca55 to your computer and use it in GitHub Desktop.
AWS Create a raid0 volume from two ephemerals. Can be run on startup with diskpart /s diskpart.txt
select disk 1
convert dynamic
select volume 2
delete volume
select disk 2
convert dynamic
select volume 2
delete volume
create volume stripe disk=1,2
format quick recommended label="My Label"
assign letter d
exit
@mowings
Copy link
Author

mowings commented Jul 5, 2015

Note that the initial volumes are not necessarily available on boot. You may have to wait 20 seconds or so

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment