Skip to content

Instantly share code, notes, and snippets.

@dasgoll
Created November 15, 2014 07:15
Show Gist options
  • Save dasgoll/305748305a95f1991d6c to your computer and use it in GitHub Desktop.
Save dasgoll/305748305a95f1991d6c to your computer and use it in GitHub Desktop.
## to find free space
parted /dev/sdb print free
# to see free space in bytes
# parted /dev/sda unit B print free | grep 'Free Space' | tail -n1 | awk '{print $3}'
# parted /dev/sda unit TB print free | grep 'Free Space' | tail -n1 | awk '{print $3}'
# parted /dev/sda unit MB print free | grep 'Free Space' | tail -n1 | awk '{print $3}'
# parted /dev/sda unit '%' print free | grep 'Free Space' | tail -n1 | awk '{print $3}'
# in sectors
# parted /dev/sda unit s print free | grep 'Free Space' | tail -n1 | awk '{print $3}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment