Quick Tour

A guided walkthrough of Ubuntu's desktop environment, core applications, and essential features.

Tour Stops

  1. The Desktop
  2. Activities Overview
  3. The Dash & App Grid
  4. Files (Nautilus)
  5. Ubuntu Software
  6. Settings
  7. The Terminal
  8. Office & Productivity
  9. Media & Photos
  10. Web Browsing

The Desktop

1

Your Starting Point

When you log in to Ubuntu, you are greeted by the GNOME Shell desktop. At the top of the screen is the Top Bar, which contains three areas:

  • Activities button (top-left) — opens the Activities Overview.
  • Clock & calendar (centre) — click to see notifications and the calendar.
  • System tray (top-right) — quick access to network, volume, battery, and system settings.

The desktop itself is clean and uncluttered by default — application windows appear here when you open them.

Activities Overview

2

Your Mission Control

Press the Super key (the Windows key on most keyboards) or click Activities in the top-left corner to open the Activities Overview. This is the central hub of the GNOME desktop.

From here you can:

  • Search for applications, files, and settings by typing immediately after opening the overview.
  • See all open windows tiled across the screen.
  • Switch workspaces using the workspace strip on the right side.
  • Launch pinned apps from the Dash on the left.

Tip: You can search for anything — apps, documents, even calculator expressions — directly in the Activities search bar.

The Dash & App Grid

3

Launching Applications

The Dash is the vertical bar of icons visible on the left in the Activities Overview (and on the desktop if you use the Ubuntu Dock extension). It shows your favourite and currently running applications.

Click the grid icon at the bottom of the Dash to open the App Grid — a scrollable view of all installed applications. You can search within it or browse by category.

To pin an app to the Dash, right-click its icon in the App Grid and select Add to Favourites. Drag icons in the Dash to reorder them.

Files (Nautilus)

4

Managing Your Files

The Files application (also known as Nautilus) is Ubuntu's default file manager. Open it from the Dash or by pressing Super and typing "Files".

Key features of the Files app:

  • Sidebar — quick access to Home, Downloads, Documents, Pictures, and connected drives.
  • Search — press Ctrl + F to search for files by name or content.
  • Tabs — open multiple locations in one window with Ctrl + T.
  • View toggle — switch between grid and list view with Ctrl + 1 / Ctrl + 2.
  • Hidden files — toggle with Ctrl + H.
  • Network shares — access Windows/Samba shares via Other Locations in the sidebar.

Ubuntu organises your home folder into standard directories: Desktop, Documents, Downloads, Music, Pictures, Videos.

Ubuntu Software

5

Installing New Applications

Ubuntu Software is the graphical application store. Open it from the Dash (it looks like an orange shopping bag). From here you can browse, search, install, and remove applications with a single click — no command line required.

Applications are organised into categories: Productivity, Graphics, Games, Science & Education, and more. Each listing shows screenshots, a description, user reviews, and the software licence.

Ubuntu Software handles both traditional APT packages and Snap packages. Snaps update automatically in the background.

Note: Some applications are only available via the terminal or from the developer's website (as a .deb file or AppImage). Check the developer's documentation for installation instructions.

Settings

6

Configuring Your System

Open Settings from the system tray (top-right) or by searching in the Activities Overview. The Settings app provides a single, organised location for all system configuration:

  • Wi-Fi & Network — manage connections and VPNs.
  • Bluetooth — pair keyboards, mice, headphones, and other devices.
  • Background — change your wallpaper and lock screen image.
  • Appearance — switch between light and dark mode, adjust icon sizes.
  • Notifications — control which apps can send notifications.
  • Privacy & Security — manage screen lock, location, file history.
  • Users — add and manage user accounts.
  • System — check storage, installed OS version, and hardware details.
  • Additional Drivers — install proprietary hardware drivers.

The Terminal

7

The Power User's Tool

The Terminal (GNOME Terminal) gives you direct access to the Linux command line. Open it with Ctrl + Alt + T.

Essential terminal commands:

ls            # List files in current directory
cd folder     # Change directory
pwd           # Show current directory path
cp src dest   # Copy a file
mv src dest   # Move or rename a file
rm file       # Delete a file
mkdir name    # Create a directory
man command   # Show the manual for a command

For package management, apt is the main tool:

sudo apt update && sudo apt upgrade   # Update system
sudo apt install package-name         # Install software
sudo apt remove package-name          # Remove software

Tip: Press Tab to auto-complete commands and file names. Press the arrow key to cycle through your command history.

Office & Productivity

8

Getting Work Done

Ubuntu ships with LibreOffice, a full-featured, free office suite compatible with Microsoft Office file formats (.docx, .xlsx, .pptx):

  • LibreOffice Writer — word processor (equivalent to Microsoft Word)
  • LibreOffice Calc — spreadsheet (equivalent to Microsoft Excel)
  • LibreOffice Impress — presentation software (equivalent to PowerPoint)

For collaborative online work, access Google Docs, Microsoft 365, or Nextcloud Office through the Firefox web browser.

Media & Photos

9

Music, Video, and Photos

Ubuntu includes several media applications out of the box:

  • Rhythmbox — music player and library manager. Supports MP3, FLAC, OGG, and more.
  • Videos (Totem) — video player supporting common formats.
  • Shotwell — photo organiser and basic photo editor.
  • GNOME Photos — simple photo viewer integrated with online accounts.

To play proprietary media formats (MP3, H.264 video, etc.), install the ubuntu-restricted-extras package:

sudo apt install ubuntu-restricted-extras

For more advanced needs, VLC (plays almost any format), GIMP (image editing), and Kdenlive (video editing) are available in Ubuntu Software.

Web Browsing

10

Browsing the Web

Ubuntu ships with Firefox as the default web browser. It is a fast, privacy-respecting browser with a rich ecosystem of extensions.

Other popular browsers available for Ubuntu:

  • Chromium — the open-source base of Google Chrome: sudo apt install chromium-browser
  • Google Chrome — download the .deb from the Google website.
  • Brave — privacy-focused Chromium-based browser, available as a snap.
  • Opera — available as a .deb from the Opera website.

Tip: Firefox supports hardware video acceleration on Ubuntu. Enable it in about:config by setting media.ffmpeg.vaapi.enabled to true for smoother video playback.