Azure: installing the Azure CLI on Ubuntu
Managing resources in Azure from the command line can be done natively from Ubuntu using the Azure CLI. First, add the prerequisite packages. sudo apt-get update sudo apt-get install ca-certificates curl apt-transport-https lsb-release gnupg -y Then install the Microsoft signing key and add the custom repository. curl -sL https://packages.microsoft.com/keys/microsoft.asc | gpg –dearmor | sudo tee … Azure: installing the Azure CLI on Ubuntu