Skip to content

Instantly share code, notes, and snippets.

@aminusia
Created August 16, 2020 09:31
Show Gist options
  • Save aminusia/f02720b7f5635d016b729a9d0b9c12e9 to your computer and use it in GitHub Desktop.
Save aminusia/f02720b7f5635d016b729a9d0b9c12e9 to your computer and use it in GitHub Desktop.
Add storage block to Vultr CC
parted -s /dev/vdb mklabel gpt
parted -s /dev/vdb unit mib mkpart primary 0% 100%
mkfs.ext4 /dev/vdb1
mkdir /mnt/games
echo >> /etc/fstab
echo /dev/vdb1 /mnt/games ext4 defaults,noatime,nofail 0 0 >> /etc/fstab
mount /mnt/games
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment