mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli: update description linodes: update page linode-cli-account: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-events: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-volumes: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-tickets: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli: update page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-domains: update page Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
29 lines
761 B
Markdown
29 lines
761 B
Markdown
# 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}}`
|