How do I find the size of Linode's distribution images?

Linode Staff

I'm trying to figure out the base image size of each distribution available during creation.

1 Reply

To get a list of our Supported Distributions along with their base image sizes, you can use either our API or the Linode CLI. The Linode CLI is a wrapper around the API. Both of these resources will provide the image size information you're looking to obtain.

I prefer to use the Linode CLI as it provides information in a cleaner format. If you haven't used the Linode CLI previously, the following guide provides the installation instructions, along with some example commands.

Once you've configured the Linode CLI, you can obtain the images list with sizes using the following command:

linode-cli images list

Any images preceded by linode/ under the id column are public images, and the size column is MB.

To make an API call directly, I would recommend reviewing the following guide to get started.

You can then run the following query to obtain the list of available images:

curl https://api.linode.com/v4/images/ | json_pp

You can find more information on the Images endpoint in our API documentation.

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct