Francesco Pasa

How to Install & Setup Ubuntu for Productivity

Update 2026-07: Since this page was written, I have moved to Arch Linux mainly to avoid having to reinstall or upgrade, as Arch is rolling-release. Arch also has the advantage of having much newer software available, but setting it up is much more work (and/or for less polished results).

Another reason for me was also that ubuntu/red hat are companies and have their own corporate interests, and I like more community-driven projects. I am now exclusively using community distros (debian on server and arch on desktop).

One example is ubuntu pushing rust-coreutils for no reason whatsoever and then having to do a security audit and finding lots of issues. I am also not a fan of snap packages.

I have to say I am finding it very productive with arch, although it’s much more rustic, I have started to appreciate things like using a terminal file manager.

I just reinstalled Ubuntu on my machine, after I mounted a larger SDD.

In this article I will document my basic setup, such as options, gnome customizations, keyboard shortcuts, and basic tools to install for a base system.

The configuration is generic, but some of the applications I install are geared towards technical users and developers.

So, let’s get started.

Ubuntu Version and Flavour

I only use LTS versions, because I use my computer to work and I don’t want to fiddle around with updates every 6 months. I also had some bad experiences with updates in the past, where it would not cleanly transition to the next version. So 22.04 it is.

I use the default Ubuntu with Gnome. Initially, I was a bit skeptical of Gnome in general, but it’s the only environment (bar maybe KDE) that properly works with my nvidia graphics card and supports fractional scaling (necessary due to 4k monitor). I also find bluetooth it’s the most reliable I have seen on linux, which helps since I use a wireless keyboard.

It’s also the environment that looks the best out of the box.

Partitioning

One of the reasons I write this guide is that I stopped using a separate partition for /home, so I have to reconfigure everything each time. One of the recommended setups in the linux world is this:

This way, when reinstalling, one doesn’t need to backup files and application configuration, as it’s possible to reformat only /.

In spite of this, I find it impractical for the following reasons:

Installation Options

During installation, I never install updates, as it takes a lot of time, and in the meanwhile I cannot use the machine. I install updates at the first boot, while I configure my system.

To update everything use:

# First terminal (keep Firefox closed)
sudo snap refresh
# Second terminal
sudo apt update && sudo apt upgrade

I also do only minimal installation, as it takes less time. I mostly do not need all the application anyway, such as LibreOffice (we’re not in 2003 anymore).

Gnome Setup

Gnome out of the box is mostly fine, however you might want to customize your system to make it work and look even better and feel a little more personal. Additionally, there are some Gnome shell extensions which are really useful.

Shortcuts

Gnome is a very keyboard centric Desktop Environment, and the most efficient way to do most things is using the shortcuts.

In the following, Super is also known as the Meta, Win or Windows key. When I write Up or Left the inverse operation works with the opposite arrow key.

The most useful shortcuts are:

These are basics, but we can configure a few additional one in Settings > Keyboard:

Gnome Keyboard Shortcut Setting

My favorite are:

After this, you hardly need to search for apps anymore, at least the most common ones. The last shortcuts allows for moving windows quickly between workspaces without touching the mouse. There are also shortcuts for multi-monitor setups if you use one.

Note: Gnome likes to map your function keys (F1-F12) to the quick actions (such as music forward, calculator, etc). This might be fine for you, but I find it very annoying because I use them a lot in code editors and in the terminal.

To disable this behavior, run this command

echo options hid_apple fnmode=2 | sudo e -a /etc/modprobe.d/hid_apple.conf

then reboot.

Quick Detour on Workspaces

Some of the keyboards shortcuts above are related to workspaces (also known as virtual desktops) which are screen that contain application windows. You can move the windows around and arrange them as you like.

This is a feature I adore, as it enables much easier navigation with the keyboard.

In practice, I usually keep one workspace for each window or task. For instance, my first workspace is always the web browser, and the second is my code editor. Switching from code to documentation in then a single key press.

I then create other workspaces if I have other tasks (file browsing, terminals, image editing, etc).

Learn to use them, they are very useful!

Display, Appearance and Multitasking Customization

That is mostly up to your liking, but I usually set the following:

Extensions

Let’s start with the extensions. To manage them, I install the Extension Manager application with Ubuntu Software:

Gnome Extensions

This is handy, as with it you can quickly install and configure extensions.

Utility extensions I install:

And now the controversial bits 😀: the eye-candy. I don’t like Ubuntu’s default dock (I actually don’t use the dock much, due to keyboard) and a few other things, for instance desktop icons. Here my opinionated list of changes (from the Extension Manager):

Other extensions to consider:

Applications

This is of course user-specific, but I have some apps that I find are consistently useful:

To install all:

sudo snap install chromium
sudo snap install telegram-desktop
sudo snap install intellij-idea-community --classic
sudo snap install pycharm-community --classic
sudo snap install code --classic
sudo apt install gimp inkscape curl vim htop ncdu git python-is-python3

From there, I install what I need on demand.

Troubleshooting

Problems by updating Ubuntu Software

First close Ubuntu Software, then run

sudo snap refresh

If it says no snaps to update but it’s still not updated, kill the snap-software process and try again.

Cannot find or install Gnome extension

Try to add the Firefox browser extension, update Gnome to the latest version and reboot the machine.

If you cannot find the extension you want from the app, try installing directly from https://extensions.gnome.org

Final Tips

For even faster start when I boot my PC, I configure to launch the web browser at startup. Additionally, I set my computer to auto-login, since it’s a desktop box and never moves from my room.

I hope you enjoyed this guide and you found some information to work more efficiently with Ubuntu and Gnome!