Installing MS SQL Server on Ubuntu 20.04...
Just do this, copy past and voila. So much easier than walking someone through opening a menu...
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/20.04/mssql-server-2019.list)" sudo apt-get update sudo apt-get install -y mssql-server curl sudo /opt/mssql/bin/mssql-conf setup systemctl status mssql-server --no-pagerDone. With that SQL Server is installed, configured, and enabled! You can start using immediately. Try to do that on Windows!