Install¶
Automated installer¶
Using the Cloudstack installer automates the process of downloading and moving the cloudstack
binary to your $PATH
. The installer automatically detects your operating system and architecture.
real quick:
curl https://docs.cloudstack.one/get-cloudstack.sh | bash
a bit safer:
curl -fsSL -o get-cloudstack.sh https://docs.cloudstack.one/get-cloudstack.sh
chmod 0700 get-cloudstack.sh
# Optionally: less get-cloudstack.sh
./get-cloudstack.sh
real quick:
wget -qO- https://docs.cloudstack.one/get-cloudstack.sh | bash
a bit safer:
wget -q -O get-cloudstack.sh https://docs.cloudstack.one/get-cloudstack.sh
chmod 0700 get-cloudstack.sh
# Optionally: less get-cloudstack.sh
./get-cloudstack.sh
Manual Download¶
Install the CLI by following the steps for your platform below:
export VERSION=1.25
curl -fsSLo cloudstack.tar.gz https://s3.ayedo.de/cloudstack/cli/v${VERSION}/cloudstack_${VERSION}_linux_amd64.tar.gz
tar xvzf cloudstack.tar.gz
chmod +x cloudstack
./cloudstack version
export VERSION=1.25
curl -fsSLo cloudstack.tar.gz https://s3.ayedo.de/cloudstack/cli/v${VERSION}/cloudstack_${VERSION}_linux_arm64.tar.gz
tar xvzf cloudstack.tar.gz
chmod +x cloudstack
./cloudstack version
export VERSION=1.25
curl -fsSLo cloudstack.tar.gz https://s3.ayedo.de/cloudstack/cli/v${VERSION}/cloudstack_${VERSION}_darwin_amd64.tar.gz
tar xvzf cloudstack.tar.gz
chmod +x cloudstack
./cloudstack version
export VERSION=1.25
curl -fsSLo cloudstack.tar.gz https://s3.ayedo.de/cloudstack/cli/v${VERSION}/cloudstack_${VERSION}_darwin_arm64.tar.gz
tar xvzf cloudstack.tar.gz
chmod +x cloudstack
./cloudstack version
Last update:
May 20, 2022