Skip to content

Instantly share code, notes, and snippets.

@judexzhu
Created December 27, 2017 06:01
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 judexzhu/2ccf29980a46a5efeb2f3b055a90e013 to your computer and use it in GitHub Desktop.
Save judexzhu/2ccf29980a46a5efeb2f3b055a90e013 to your computer and use it in GitHub Desktop.
Format disk, only run once
#!/bin/bash
lsblk
echo -n "Enter disk name and press [ENTER]: "
read disk
echo -e "o\nn\np\n1\n\n\nw" | fdisk /dev/$disk
mkfs.xfs -f /dev/$disk
mkdir /data
echo "/dev/$disk /data xfs defaults 0 0" >> /etc/fstab
mount -a
df -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment