Azure-cli: Installing the tool on Linux

This post is the beginning of a series of others in which we will talk about Azure Cli. This tool is a command line interface in which one can manage microsoft azure resources.
My current linux is that.

romerito@dev:~$ cat /etc/os-release | head -3


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by romerito

This post is the beginning of a series of others in which we will talk about Azure Cli. This tool is a command line interface in which one can manage microsoft azure resources.
My current linux is that.

romerito@dev:~$ cat /etc/os-release | head -3

NAME="Pop!_OS"
VERSION="22.04 LTS"
ID=pop

My OS as you can see is PopOS which was built based on the ubuntu/debian architecture, so we will use the APT package manager (Advanced package tool).
There are several ways to install the program, but we have chosen the method of setting up the repository on our own machine.
First we will update our distro using this command:

romerito@dev:~$ sudo apt-get update\
&& sudo apt-get install ca-certificates\
curl\ 
apt-transport-https lsb-release\
gnupg

Now we need to use the gpg utility to authorize external repositories via apt.
but the utility only accepts GPG files, and in this case we need to convert from KEY to GPG, this is possible by passing the --dearmor flag after that we can add the repository link to the package source list.

romerito@dev:~$ curl -sL https://packages.microsoft.com/keys/microsoft.asc |
    gpg --dearmor |
    sudo tee /etc/apt/trusted.gpg.d/microsoft.gpg > /dev/null

And finally we add the repository

romerito@dev:~$ AZ_REPO=$(lsb_release -cs) &&
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_REPO main" |
    sudo tee /etc/apt/sources.list.d/azure-cli.list

After that, we update the system again and install the package

romerito@dev:~$ sudo apt-get update &&
sudo apt-get install azure-cli

Ready! now if you type the command az in the terminal we will have this.

Image description

In the next post we will link cli to our microsoft azure account, see you later.


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by romerito


Print Share Comment Cite Upload Translate Updates
APA

romerito | Sciencx (2022-12-15T03:38:58+00:00) Azure-cli: Installing the tool on Linux. Retrieved from https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/

MLA
" » Azure-cli: Installing the tool on Linux." romerito | Sciencx - Thursday December 15, 2022, https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/
HARVARD
romerito | Sciencx Thursday December 15, 2022 » Azure-cli: Installing the tool on Linux., viewed ,<https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/>
VANCOUVER
romerito | Sciencx - » Azure-cli: Installing the tool on Linux. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/
CHICAGO
" » Azure-cli: Installing the tool on Linux." romerito | Sciencx - Accessed . https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/
IEEE
" » Azure-cli: Installing the tool on Linux." romerito | Sciencx [Online]. Available: https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/. [Accessed: ]
rf:citation
» Azure-cli: Installing the tool on Linux | romerito | Sciencx | https://www.scien.cx/2022/12/15/azure-cli-installing-the-tool-on-linux/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.