Skip to content

Instantly share code, notes, and snippets.

@Thraka
Last active April 6, 2017 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Thraka/ab1d8b78ac4b23722f3d3c1c03ac5df4 to your computer and use it in GitHub Desktop.
Save Thraka/ab1d8b78ac4b23722f3d3c1c03ac5df4 to your computer and use it in GitHub Desktop.
Prep for Azure vmss
#!/bin/bash
# Setup the data disk
(echo n; echo p; echo 1; echo ; echo ; echo w) | fdisk /dev/sdc
fdisk /dev/sdc
mkfs -t ext4 /dev/sdc1
mkdir /datadrive
mount /dev/sdc1 /datadrive
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment