System Grab Bag

View all TLDR pages from common (or from all pages)

linode-cli volumes

Manage Linode Volumes. See also: linode-cli. More information: https://www.linode.com/docs/products/tools/cli/guides/block-storage-volumes/.
  • List current Volumnes:
    linode-cli volumes list
  • Create a new Volume and attach it to a specific Linode:
    linode-cli volumes create --label {{volume_label}} --size {{size_in_GB}} --linode-id {{linode_id}}
  • Attach a Volume to a specific Linode:
    linode-cli volumes attach {{volume_id}} --linode-id {{linode_id}}
  • Detach a Volume from a Linode:
    linode-cli volumes detach {{volume_id}}
  • Resize a Volume (Note: size can only be increased):
    linode-cli volumes resize {{volume_id}} --size {{new_size_in_GB}}
  • Delete a Volume:
    linode-cli volumes delete {{volume_id}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.