From dbc85e3c6051a884814bbcc13261f5ec085a12e6 Mon Sep 17 00:00:00 2001 From: KrantiSawantP10 <88872097+KrantiSawantP10@users.noreply.github.com> Date: Tue, 12 Jul 2022 18:35:31 +0530 Subject: [PATCH] Adding Ubuntu 20.04 (Focal) Installation details Reference Link : https://docs.microsoft.com/en-us/windows-server/administration/linux-package-repository-for-microsoft-software --- doc/installation/linux.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/installation/linux.md b/doc/installation/linux.md index bcc5d748..8c3189eb 100644 --- a/doc/installation/linux.md +++ b/doc/installation/linux.md @@ -57,6 +57,23 @@ sudo apt-get install mssql-cli sudo apt-get install -f ``` +#### Ubuntu 20.04 (Focal) + +# Import the public repository GPG keys +curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc + +# Register the Microsoft Ubuntu repository +sudo apt-add-repository https://packages.microsoft.com/ubuntu/20.04/prod + +# Update the list of products +sudo apt-get update + +# Install mssql-cli +sudo apt-get install mssql-cli + +# Install missing dependencies +sudo apt-get install -f + ### Debian > `apt-transport-https` is required for importing keys. If not installed, call `sudo apt-get install curl apt-transport-https`.