Ubuntu updates via command line

Update: sudo apt-get update # Fetches the list of available updates sudo apt-get upgrade # Strictly upgrades the current packages sudo apt-get dist-upgrade # Installs updates (new ones) Clean up the system from old packages: sudo apt-get update && sudo apt-get autoclean && sudo apt-get clean && sudo apt-get autoremove Check the Ubuntu version: lsb_release … Read more

How to install Mono on Ubuntu

sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF echo “deb http://download.mono-project.com/repo/debian wheezy main” | sudo tee /etc/apt/sources.list.d/mono-xamarin.list sudo apt-get update sudo apt-get install mono-runtime

How to install .Net Core on Ubuntu 16.04

Add the dotnet apt-get feed In order to install .NET Core on Ubuntu, you need to first set up the apt-get feed that hosts the package you need. sudo sh -c ‘echo “deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main” > /etc/apt/sources.list.d/dotnetdev.list’ sudo apt-key adv –keyserver apt-mo.trafficmanager.net –recv-keys 417A0893 sudo apt-get update Install .NET Core SDK Before you … Read more

Re-map keyboard keys

Many computer keyboards have an Fn key. It allows adding a second function to an existing key. An example is the F11 key. In combination with the Fn key it acts as a Volume Down: Fn + F11 = Volume Down Some other keyboards have this the opposite way – F11 acts as a Volume … Read more