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:
The desktop itself is clean and uncluttered by default — application windows appear here when you open them.
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:
Tip: You can search for anything — apps, documents, even calculator expressions — directly in the Activities search bar.
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.
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:
Ubuntu organises your home folder into standard directories:
Desktop, Documents, Downloads,
Music, Pictures, Videos.
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.
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:
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.
Ubuntu ships with LibreOffice, a full-featured, free office suite
compatible with Microsoft Office file formats (.docx, .xlsx,
.pptx):
For collaborative online work, access Google Docs, Microsoft 365, or Nextcloud Office through the Firefox web browser.
Ubuntu includes several media applications out of the box:
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.
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:
sudo apt install chromium-browser.deb from the Google website..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.