Guides - Block Storage Volumes
Updated
, by Linode
The Linode CLI is a wrapper around the Linode API that allows you to manage your Linode account from the command line. Virtually any task that can be done through the Linode Manager can be done through the CLI, making it an excellent tool for scripting.
Create a Linode account
to try this guide with a $100 credit.
This credit will be applied to any valid services used during your first 60 days.
List your current Volumes:
linode-cli volumes listCreate a new Volume, with the size specified in GB:
linode-cli volumes create --label my-volume --size 100 --region us-eastSpecify a
linode_idto create the Volume and automatically attach it to a specific Linode:linode-cli volumes create --label my-volume --size 100 --linode_id $linode_idAttach or detach the Volume from a Linode:
linode-cli volumes attach $volume_id --linode_id $linode_id linode-cli volumes detach $volume_idResize a Volume (size can only be increased):
linode-cli volumes resize $volume_id --size 200Delete a Volume:
linode-cli volumes delete $volume_id
This page was originally published on




