Child pages
  • Things To Do After Installing Ubuntu 20.04 LTS

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  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

...

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

...

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

...

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.

...

7. Install common software
sudo apt install emacs vim vlc filezilla 
Cheese
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.