“Ubuntu is freedom — but also simplicity: learning to move around is the first step toward feeling at home.”
After installing Ubuntu, the first thing you’ll notice is its desktop environment: clean, fluid, and designed to balance productivity with stability.
But beneath that modern interface lies a powerful heart — the terminal, a direct channel to communicate with your system.
This chapter will guide you through both sides of Ubuntu:
the desktop environment (the visual part) and the essential commands (the operational core).
2.1 The Ubuntu Desktop Environment
Ubuntu uses GNOME, one of the most popular desktop environments in the Linux world.
GNOME aims to provide an intuitive, clean, and consistent experience on any computer.
Main Interface Elements
- Top Panel
Contains the clock, system settings, Wi-Fi, audio, and power menu.
Think of it as Ubuntu’s status bar. - Side Dock (Launcher)
The bar on the left shows your favorite and active applications.
From here, you can open programs like Firefox, Files, Terminal, or Software. - Activities Overview
Open it by clicking the top-left corner or pressing the Super key (Windows key).
It displays all open windows and lets you search for any app or file instantly. - File Manager (Nautilus)
Ubuntu’s file explorer — for managing folders, documents, USB drives, and external disks.
It includes quick links like “Documents,” “Downloads,” and “Pictures.” - Software Center (Ubuntu Software)
Lets you install, update, or remove applications with just a few clicks.
It’s your open-source App Store.
2.2 Comparing Ubuntu and Windows
For Windows users, Ubuntu may look different — but only in names, not in logic.
| Action | In Windows | In Ubuntu |
|---|---|---|
| Open main menu | Windows key → Start | Super key → Activities |
| Browse files | File Explorer | Files (Nautilus) |
| Install software | Microsoft Store or .exe installer | Ubuntu Software or Terminal (sudo apt install) |
| System settings | Control Panel / Settings | Settings → System, Appearance, Network |
| App bar | Bottom taskbar | Left-side Dock |
| Close window | X (top-right) | X (top-left) |
| Switch windows | Alt + Tab | Alt + Tab |
| Screenshot | Print Screen | Shift + Print or Screenshot Tool |
As you can see, the experience is very similar — the layout changes, not the logic.
After just a few days, using Ubuntu feels natural, and switching back to Windows will feel surprisingly easy.
2.3 Customizing Your Environment
One of Ubuntu’s greatest strengths is customization.
You can tweak virtually every part of the interface:
- Change theme and colors: Settings → Appearance
- Move the dock: bottom, right, or left
- Enable dark mode: perfect for working at night
- Add GNOME extensions: like Dash to Dock or Clipboard Indicator to boost productivity
In Windows, you can change wallpapers and themes.
In Ubuntu, you can change everything — even the way the system behaves or the kernel itself.
That’s freedom at a deeper level.
2.4 The Terminal — Ubuntu’s Core Power
The Terminal is Ubuntu’s most powerful tool.
You can open it by:
- Pressing Ctrl + Alt + T
- Searching “Terminal” in the Activities overview
- Right-clicking inside a folder → “Open in Terminal”
While Windows users rely on Command Prompt or PowerShell, Ubuntu uses the Bash shell (or alternatives like Zsh or Fish).
The difference?
Linux commands are simpler and more consistent — each one does one thing, but it does it perfectly.
2.5 Essential Commands for Beginners
| Command | Description | Windows Equivalent |
|---|---|---|
pwd | Show current directory | cd (without arguments) |
ls | List files in current directory | dir |
cd folder_name | Enter a folder | cd folder_name |
mkdir folder_name | Create a new folder | mkdir folder_name |
rm filename | Delete a file | del filename |
cp source destination | Copy a file or folder | copy |
mv source destination | Move or rename a file | move |
sudo apt update | Refresh package list | Windows Update (GUI) |
sudo apt install package_name | Install a program | Double-click setup.exe |
clear | Clear the screen | cls |
exit | Close the terminal | exit |
Practical Example
In Windows:
- Open a browser
- Go to the GIMP website
- Download the
.exeinstaller - Run it manually
In Ubuntu:
sudo apt update
sudo apt install gimp
Two lines. No websites, no ads, no malware.
That’s efficiency and security.
2.6 Terminal Tips and Tricks
- Tab: auto-complete filenames and folders
- ↑ / ↓: navigate through your command history
- &&: chain multiple commands (e.g.,
sudo apt update && sudo apt upgrade) - man command: open the manual for any command (
man ls)
2.7 The “From Zero to WoW” Philosophy
You don’t need to memorize hundreds of commands.
The goal is to realize that Ubuntu isn’t hard — it’s logical.
Every command does exactly what it says. Every part of the system is transparent.
The WoW moment comes when you realize you can truly control your computer — not just use it.
Ubuntu isn’t “against” Windows — it’s a different philosophy of computing:
one built on understanding, not dependence.
Next Chapter → 3. Managing Files, Folders, and Permissions
Next, we’ll explore Ubuntu’s file structure, how permissions work, and how to manage your documents and devices safely.
