Child pages
  • Things To Do After Installing Ubuntu 20.04 LTS
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

1. Make sure that you have the latest libraries and packages

  launch the terminal from the menu or use the shortcut key Cntrl + Alt + T and enter the following command.

sudo apt update && sudo apt upgrade -y

2. Enable Partner Repositories

The next thing to do in Ubuntu 20 is to add additional repositories which might offer you more drivers and software updates; these are disabled in Ubuntu 20 by default. Most importantly, they are, after all, official but are not shared publicly due to restrictive licenses.

Ubuntu 18.04 Bionic Beaver Enable Partner Repositories

To enable additional repositories,

Go to Software & Updates.
Head over to the Other Software tab and select all the additional repositories other than Source Code Repositories.

3. Install Missing Graphic Drivers

Ubuntu 20 or the other Linux distributions might not be the go-to OS for gamers. Nevertheless, installing the latest graphics drivers is one of the first things you should do after installing Ubuntu or any other Linux distributions.

You might already know that most drivers come pre-built in the Linux kernel. Due to the dependency on proprietary restricted drivers, graphics drivers like Nvidia and some printers are the only exceptions.

To update/install graphics drivers on the latest Ubuntu 20.04 LTS —

  • Launch Software & Updates and hover over to the Additional Drivers tab.

  • Under the Additional Drivers tab, you can choose whether to install the closed source proprietary software or open source x.org Xerver Driver.

  • Installing the proprietary graphics driver is the recommended one in the list, and just as it reads, that would be the preferable one.

4. Installing Complete Multimedia Support

On the complete Ubuntu 20.04 LTS installation, you might remember the option to choose whether to install third-party software for graphics and Wi-Fi hardware, Flash, MP3, and other media. Selecting this option would have already installed the necessary multimedia codecs and plugins. But the multimedia codecs are not installed in Ubuntu, nor is it available in the store.

If you have the synaptic package manager installed, you can search and install a package called ubuntu restricted packages, which is the term used for the codecs. Alternatively, you can use the terminal.

To do this, enter the command in terminal:

sudo apt install ubuntu-restricted-extras

5. Install Microsoft Fonts & Core Fonts

apt install ttf-mscorefonts-installer & fonts-indic

6. Install Popular and Most useful Ubuntu software

Even though one might notice a few major software titles missing, almost all the popular software has Linux support. To help you get started, we will recommend a few free Ubuntu Linux Software here.

  • Install Google Chrome

Open your terminal either by using the Ctrl+Alt+T keyboard shortcut or by clicking on the terminal icon.

Use wget to download the latest Google Chrome .deb package.

Installing packages on Ubuntu requires administrative privileges. Running the following command as a user with sudo privileges to install Chrome .deb package on your system

sudo dpkg -i google-chrome-stable_current_amd64.deb

When prompted, enter your user password, and the installation will start.

At this point, you have Chrome installed on your Ubuntu system.

Install common software
sudo apt install emacs vim vlc filezilla cheese inkscape htop smartmontools nmap ethtool iperf ubuntu-restricted-extras libavcodec-extra gimp nautilus-image-converter ttf-mscorefonts-installer uget

Performance

Tweak swappiness

By default most Linux distros still assume people need a swap at all. That's unlikely, but in case it's present, it should be at least tweaked to only be used when RAM is 80% full and not 60% like by default. For this, add the following line to the end of /etc/sysctl.conf

vm.swappiness = 20

and reboot the machine to finalize everything.

  • No labels