10 Things to Do After Installing Ubuntu Operating System

Harish Kumar · · 3748 Views

In this article, I will show you 40 things you can do after installing Ubuntu on your system. This isn't restricted to a specific version of Ubuntu; you can follow these on any version of Ubuntu to set it up according to your necessities.

First, you may like to view our tutorial about installing Ubuntu on your machine.

  1.  Ubuntu Installation step by step guide with disk partitioning

Everybody's requirements can differ as per their profession or day by day tasks they do, so I will cover the things which can be helpful for every user.

Follow these quick tips to do after installing Ubuntu:

1. Download and Install Latest Updates

Well, this is the first thing you should do whenever you install a new operating system on any device. Running the latest version of the product gets you far from pointless bugs and glitches that may hamper execution and updates likewise acquire new extra security features for your system.

You can update your Ubuntu system software from the Terminal by using the following command.

sudo apt-get update && sudo apt-get upgrade -y

2. Enable additional repositories for more software

Ubuntu has several repositories from where it provides software for your system. These repositories are:

  1. Main - Free and open-source software supported by Ubuntu team

  2. Universe - Free and open-source software maintained by the community

  3. Restricted - Proprietary drivers for devices.

  4. Multiverse - Software restricted by copyright or legal issues.

  5. Canonical Partners - Software packaged by Ubuntu for their partners 

Enabling every one of these repositories will give you access to more software and proprietary drivers.

To enable these, go to Activity Overview by pressing Super Key (Windows key), and search for Software & Updates.

Under the Ubuntu Software tab, ensure you have checked Main, Universe, Restricted, and Multiverse repository.

10 Things to Do After Installing Ubuntu Operating System

Now navigate to the Other Software tab, check the choice of Canonical Partners.

You'll need to enter your password to update the software sources. When it finishes, you'll discover more applications to install in the Software Center.

3. Install Missing Drivers

Even though Ubuntu automatically detects and installs missing drivers on your machine. Still, there may be a few drivers like graphics drivers that you may have to download and install manually. If you have dedicated graphics cards from NVIDIA or Radeon you may have to download a specific version of graphics drivers manually to play video games or do very high-end tasks.

To install additional missing drivers, go to the Software & Updates > Select Additional Drivers tab. Here you will discover the list of additional drivers that can be installed on the system. You just need to follow the instructions to install them.

10 Things to Do After Installing Ubuntu Operating System

4. Install GNOME Tweak Tool

GNOME Tweak Tool is an incredible application to have which allows you to tweak Ubuntu and customize it in a few different ways to get a refreshing look and set it up as per your requirements.

You can change the overall look and feel of the Ubuntu desktop environment, customize desktop icons, manage extensions, and a lot of things.

Run the following command in the terminal to install GNOME Tweak Tool:

sudo apt-get install gnome-tweak-tool -y
10 Things to Do After Installing Ubuntu Operating System

5. Install GNOME Extensions

You can take your user experience to next level by tweaking the interface by adding animations and customizing desktop-like app icons, fonts, and a lot more by simply installing GNOME shell extensions. Shell extensions like Open Weather, Dash to Panel, and User Themes are some of the must-have extensions.

Just go to https://extensions.gnome.org/ to download and install your preferred extensions.

10 Things to Do After Installing Ubuntu Operating System

6. Install Dash to Panel extension

This extension moves the dash into the gnome main panel, similar to that found in KDE Plasma and Windows 7+. You can install it from https://extensions.gnome.org/extension/1160/dash-to-panel/

For a more traditional experience, you may also want to use Tweak Tool to enable Windows > Titlebar Buttons > Minimize & Maximize.

7. Improve Battery Performance

Some of you may have seen more battery consumption on Ubuntu when compared with Windows. It is hardware-specific. 

Install TLP which is a power management tool that works in the background to decrease battery use.

sudo apt-get install tlp tlp-rdw
sudo systemct1 enable tlp

8. Must Know Commands for System Cleanup

For the smooth working of the system, keeping it clean from junk documents and the unwanted cache is necessary.

You can do it utilizing the following commands.

# To clean partial packages
sudo apt-get autoclean

# To remove unused dependencies
sudo apt-get autoremove

# To auto cleanup apt-cache
sudo apt-get clean

It’s a good idea to run this command every once in a while. If you don’t like the command line, you can use a GUI tool like Stacer or Bleach Bit.

9. Enable Firewall

UFW is the built-in Firewall for Ubuntu and it is an exceptionally reliable one. By default, it isn't enabled and you need to enable it manually. Basically, follow these steps to enable it on your Ubuntu system.

# To Enable
sudo ufw enable

# To Disable
$ sudo ufw disable

You can also use GUI for that:

# To Manage it in GUI
sudo apt-get install gufw
10 Things to Do After Installing Ubuntu Operating System

10. Install popular Application for Ubuntu

Here is the list of popular applications for ubuntu that you might want to install:

  1. Google chrome

  2. Visual Studio Code

  3. Slack

  4. Skype

sudo apt install skype
  1. Discord

sudo snap install discord
  1. VLC

sudo apt install vlc
  1. Timeshift (system backup)

sudo apt-get install timeshift
  1. GIMP (GNU Image Manipulation Software)

sudo apt-get install gimp
  1. Krita

sudo apt-get install krita
  1. Pinta - Paint alternative in Linux

sudo apt install pinta
  1. Kdenlive - Video Editing App

sudo apt install kdenlive
  1. OBS - Open Broadcaster Software 

sudo apt install obs-studio
  1. Simple Screen Recorder

sudo apt install simplescreenrecorder
  1. Shutter - Screenshot Tool

sudo apt install shutter
  1. FileZilla - FTP Client

sudo apt install filezilla

These are my suggestions for getting started with Ubuntu. If you have more tips for Ubuntu, share them with us in the comment section.

0

Please login or create new account to add your comment.

0 comments
You may also like:

How To Install NVM (Node Version Manager) on Ubuntu System?

This tutorial will assist you with installing NVM on the Ubuntu machine. Additionally, allow you to install different node versions and other useful examples.
Harish Kumar

Install Laravel Valet Linux+ development environment on Ubuntu System

The official Laravel Valet development environment is great if you are an Apple user. But there is no official Valet for Linux or Window system.
Harish Kumar

Install and Setup Oh-My-Zsh on Ubuntu System

In this post, I will show you how to install ZSH (Z-Shell). Then, we set up the oh-my-zsh framework for managing ZSH. We will likewise show you how to change the ZSH theme and (...)
Harish Kumar

Ubuntu Installation step by step guide with disk partitioning

Ubuntu is the most loved OS for many desktop users, particularly for developers. Canonical releases new Ubuntu versions every six months with free support for nine months and every (...)
Harish Kumar

How to Install phpMyAdmin with Nginx on Ubuntu Server?

The phpMyAdmin is an open-source PHP-based tool for handle MySQL and MariaDB databases over a web-based interface. 
Harish Kumar

How to install Laravel with LEMP stack on Ubuntu

Laravel is one of the most popular open-source PHP framework, and Laravel allows you to build scalable and flexible web applications. Because of its outstanding features, for example, (...)
Harish Kumar