I am unable to install mssql-tools
sudo apt-get install mssql-tools
It gives the error:
E: unable to locate
How can I fix this?
I am unable to install mssql-tools
sudo apt-get install mssql-tools
It gives the error:
E: unable to locate
How can I fix this?
You need to make sure you set up the MSSQL repository for the mssql-tools and then install it. None of the MSSQL stuff is available out of the box.
Caveats:
16.04 is the only available version of Ubuntu supported at the time of this post.
Since this post, only LTSes are guaranteed to work, interim releases may work but LTSes are preferred environments.
(Source)
NOTE FROM THOMAS WARD: These are from Microsoft, I don't necessarily endorse all their recommended procedures.
Install tools on Ubuntu
Enter Superuser Mode
sudo suImport the public repository GPG keys:
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -Register the Microsoft Ubuntu repository:
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/msprod.listExit superuser mode:
exitUpdate the sources list and run the installation command:
sudo apt-get update sudo apt-get install mssql-tools