Ubuntu Linux Keyboard Shortcuts: Complete Guide for Dell PCs
Summary: Discover every Ubuntu Linux keyboard shortcut for your Dell PC, desktop navigation, window management, Terminal commands, screenshots, and more.
Instructions
Learning keyboard shortcuts is one of the most effective ways to become more productive in Ubuntu Linux. Rather than reaching for the mouse every time you want to open an app, switch windows, or take a screenshot, you can train your fingers to do the work, saving you time with every task you perform.
This guide walks you through every major keyboard shortcut available in Ubuntu's GNOME desktop environment. Each section explains not just what a shortcut does, but why it works the way it does, so you build a deeper understanding of your system over time. Whether you are just getting started with Ubuntu on your Dell PC or looking to sharpen your skills, this is your go-to reference.
Before You Start: Key Terms to Know
Before diving into the shortcuts, it helps to understand the keys involved. Ubuntu runs on the GNOME desktop environment (the default since Ubuntu 17.10), which assigns special roles to certain keys on your keyboard. Getting familiar with these terms will make the rest of this guide much easier to follow.
| Term | What It Means |
|---|---|
| Super key | The key with the Windows logo on your keyboard. Ubuntu's default desktop environment since Ubuntu 17.10 is GNOME, and the Super key is typically marked by the Windows logo and found between Ctrl and Alt on most keyboards. The Super key opens the Activities overview. |
| Ctrl | The Control key, usually found at the bottom-left and bottom-right of your keyboard. |
| Alt | The Alternate key, located next to the spacebar. |
| Shift | The Shift key, on both the left and right sides of your keyboard. |
| + | Means "press these keys together." For example, Ctrl + C means hold Ctrl, then press C. |
How to use a keyboard shortcut: Shortcuts are written like this: Alt + F1. To perform this shortcut, hold down the modifier key (such as Ctrl or Alt) first, then press the second key once, and release both. You do not need to press them at exactly the same time, holding the modifier key first and then tapping the second key is the correct technique.
Section 1: Desktop & System Shortcuts
These shortcuts are the foundation of working in Ubuntu. They help you navigate the GNOME desktop, search for applications, manage your session, and access system tools, all without touching the mouse. Learning these first gives you the biggest productivity gain.
| Shortcut | What It Does |
|---|---|
| Super | Opens the Activities Overview, showing all open windows and workspaces. After pressing Super, start typing to search applications, documents, or settings. |
| Super + A | Opens the application menu where you can see all installed applications and search for them. |
| Super + L | Locks your screen. |
| Super + D | Shows the desktop (minimizes all open windows). |
| Super + M | Opens the notification tray. Press again to close it. |
| Super + V | Toggles the notification tray open or closed. |
| Super + Space | Switches between installed input keyboards (useful for multilingual setups). |
| Ctrl + Alt + Del | In Ubuntu, pressing Ctrl + Alt + Del logs you out of your session (unlike standard GNOME, where it opens the power menu). |
| Alt + F2 | Opens a quick run console. Useful when you want to run a command without opening a full Terminal window. |
Section 2: Window Management Shortcuts
Understanding window management shortcuts is key to working efficiently across multiple applications. GNOME gives you the ability to snap, maximize, restore, and switch between windows entirely from the keyboard. Once you learn these, you will find yourself naturally multitasking faster.
| Shortcut | What It Does |
|---|---|
| Super + Up Arrow | Maximizes the active application window. |
| Super + Down Arrow | Restores a maximized window back to its normal size. |
| Super + Left Arrow | Snaps the active window to the left half of the screen. |
| Super + Right Arrow | Snaps the active window to the right half of the screen. |
| Alt + F4 | Closes the current window. |
| Alt + Tab | Switches between open applications. |
| Shift + Alt + Tab | Switches between applications in reverse order. |
| Super + Tab | Switches between running applications using the app switcher. |
| Super + Shift + Tab | Switches between running applications in reverse order. |
| Alt + Esc | Switches between open windows in a linear sequence (no visual switcher). |
| Ctrl + Q | Closes the active application window. |
| Ctrl + W | Closes the current tab or document within an application. |
Section 3: Workspace Shortcuts
Workspaces are one of Ubuntu's most powerful, and most underused features. Think of each workspace as a separate virtual desktop. For example, you could keep your web browser on Workspace 1, your code editor on Workspace 2, and your email on Workspace 3. This separation helps you stay organized and focused without cluttering a single screen with too many open windows.
| Shortcut | What It Does |
|---|---|
| Ctrl + Alt + Up Arrow | Moves to the workspace above. |
| Ctrl + Alt + Down Arrow | Moves to the workspace below. |
| Ctrl + Alt + Shift + Up Arrow | Moves the active window to the workspace above. |
| Ctrl + Alt + Shift + Down Arrow | Moves the active window to the workspace below. |
Section 4: Screenshot Shortcuts
Ubuntu includes a built-in screenshot tool that you can trigger entirely from the keyboard. Starting with Ubuntu 22.04, pressing Print Screen opens an interactive Screenshot tool that lets you choose what kind of screenshot you want to take, giving you more control and flexibility than a simple "capture everything" approach.
| Shortcut | What It Does |
|---|---|
| Print Screen (PrtSc) | Takes a screenshot of the entire Ubuntu desktop. |
| Alt + Print Screen | Takes a screenshot of the currently selected (active) window. |
| Shift + Print Screen | Takes a screenshot of a specific area you select by clicking and dragging. |
| Ctrl + Print Screen | Copies the full-screen screenshot to the clipboard instead of saving it to a file. |
| Ctrl + Alt + Print Screen | Copies the active window screenshot to the clipboard only. |
Where are my screenshots saved?
Ubuntu automatically saves screenshots to the Pictures/Screenshots folder inside your home directory. Each file is named with a "Screenshot" prefix followed by the date and time it was taken. The screenshot is also copied to your clipboard at the same time, so you can paste it immediately into an image editor or document if needed.
Tip for Laptop Users: On some Dell laptops, the Print Screen key is a secondary function shared with another key. If pressing Print Screen alone does nothing, try holding Fn first, then pressing Print Screen.
Section 5: Terminal Shortcuts
The Terminal is where Ubuntu's true power lives. It gives you direct access to the operating system through typed commands. Learning Terminal shortcuts does not just save time, it also builds your confidence with the command line by reducing the friction of navigating and editing commands. This section covers everything from opening the Terminal to managing processes and searching your command history.
Opening the Terminal
Press Ctrl + Alt + T to open a new Terminal window. This is the single most important shortcut to memorize when working in Ubuntu. You will use it constantly.
Navigating the Command Line
When you type a command in the Terminal, you are working on a command line, a single line of text. These shortcuts let you move your cursor along that line quickly, without having to use the mouse or tap the arrow keys repeatedly.
| Shortcut | What It Does |
|---|---|
| Ctrl + A | Moves the cursor to the beginning of the line. |
| Ctrl + E | Moves the cursor to the end of the line. |
| Alt + B | Moves the cursor one word to the left (back). |
| Alt + F | Moves the cursor one word to the right (forward). |
| Ctrl + B | Moves the cursor one character to the left. |
| Ctrl + F | Moves the cursor one character to the right. |
| Ctrl + Left Arrow | Moves the cursor one word to the left. |
| Ctrl + Right Arrow | Moves the cursor one word to the right. |
Good to know: When you move the cursor and start typing, Ubuntu inserts your new text at the cursor position, it does not overwrite what is already there. This insert-by-default behavior means you can safely reposition and add text anywhere in a command without losing anything.
Editing & Deleting Text
These shortcuts let you quickly clean up or modify parts of a command line without erasing everything and starting over.
| Shortcut | What It Does |
|---|---|
| Ctrl + U | Cuts everything on the line before (to the left of) the cursor. |
| Ctrl + K | Erases everything from the cursor to the end of the line. |
| Ctrl + W | Deletes the word immediately before the cursor. |
| Ctrl + Y | Pastes the last text you cut (using Ctrl + U or Ctrl + K). |
| Ctrl + T | Swaps the last two characters before the cursor. |
Copying & Pasting in the Terminal
Copying and pasting in the Terminal requires slightly different shortcuts from the rest of the desktop. This is one of the most important distinctions to understand.
| Shortcut | What It Does |
|---|---|
| Ctrl + Shift + C | Copies selected text in the Terminal to the clipboard. |
| Ctrl + Shift + V | Pastes text from the clipboard into the Terminal. |
Searching Command History
Every command you run in the Terminal is automatically saved to a history log. These shortcuts let you retrieve and reuse past commands instead of retyping them, which is a huge time-saver when working with long or complex commands.
| Shortcut | What It Does |
|---|---|
| Up Arrow | Goes to the previous command in your history. |
| Down Arrow | Goes to the next command in your history. |
| Ctrl + R | Recalls the last command matching the characters you type. Press and start typing to search your command history. |
| Ctrl + G | Exits history searching mode without running any command. |
| Ctrl + O | Runs the command you found using Ctrl + R. |
Controlling the Terminal Screen & Processes
These shortcuts give you control over what is happening inside the Terminal, whether that is clearing a cluttered screen, stopping a runaway process, or pausing output so you can read it.
| Shortcut | What It Does |
|---|---|
| Ctrl + L | Clears the terminal screen. Useful when the output becomes cluttered. |
| Ctrl + C | Kills (stops) the currently running process or command. |
| Ctrl + Z | Suspends (pauses) the currently running process. |
| Ctrl + D | Logs out of the terminal session or closes it. |
| Ctrl + S | Stops all output to the screen. Useful when a command produces a lot of output but you don't want to stop the command itself. |
| Ctrl + Q | Resumes output to the screen after stopping it with Ctrl + S. |
Tab Completion
Tab completion is one of the most educational habits you can build as a Linux user. Instead of typing out full file names, directory paths, or command names from memory, you can type the beginning of a word and let Ubuntu complete it for you.
| Shortcut | What It Does |
|---|---|
| Tab | Automatically completes a file, directory, or command name as you type it. If there are multiple matches, press Tab again to see a list of options. |
Section 6: Accessibility Shortcuts
Ubuntu is built with accessibility in mind. These shortcuts give you quick access to built-in tools that make the desktop easier to use for people with visual, motor, or other accessibility needs. You do not need to install any additional software to use these features, they are part of Ubuntu's default GNOME desktop.
| Shortcut | What It Does |
|---|---|
| Alt + Super + S | Toggles the Screen Reader on or off. |
| Alt + Super + 8 | Toggles zoom (magnification) on the desktop. |
| Alt + Super + + | Zooms in on the screen. |
| Alt + Super + - | Zooms out on the screen. |
Learning more about accessibility: Ubuntu also includes Sticky Keys, a feature that lets you press keyboard shortcut keys one at a time instead of holding them all down simultaneously. This is particularly helpful for users with limited hand mobility. To turn it on, go to Settings > Accessibility > Keyboard and enable Sticky Keys.
Section 7: How to View and Customize Your Keyboard Shortcuts
One of the most empowering things about Ubuntu is that almost every keyboard shortcut can be changed to suit your personal workflow. If a default shortcut feels awkward or conflicts with how you work, you can reassign it. You can even create entirely new shortcuts to launch your favorite applications or run custom commands with a single key press.
Understanding how to manage shortcuts also helps you troubleshoot conflicts, for example, if a shortcut stops working, it may be because another action has been assigned to the same key combination.
To View or Change an Existing Shortcut:
- Select Activities (or press the Super key) and search for Settings.
- Select Keyboard in the left panel.
- In the Keyboard Shortcuts section, select View and Customize Shortcuts.
- Select the desired category, or enter a search term.
- Click the row for the action you want to change. The Set Shortcut window opens.
- Hold down the desired key combination, or press Backspace to reset the shortcut, or press Esc to cancel.
To Create a Custom Shortcut:
- Follow steps 1–3 above.
- Scroll to the bottom of the shortcuts list and select Custom Shortcuts.
- Select the Add Shortcut button. In the Add Custom Shortcut window, hold down the desired shortcut key combination.
- Provide an easy-to-recognize name for the shortcut, the command that will run when the keys are used, and the key combination you want to use.
- Select Add to save your new shortcut.
Pro Tip: Before assigning a command to a custom shortcut, verify that the command works correctly by opening a Terminal and running it there first. This way, you know exactly what the shortcut will do before you save it. Also, note that GNOME will warn you in real time if the key combination you enter is already in use by another action, helping you avoid accidental conflicts.
Section 8: Troubleshooting — Shortcuts Not Working?
If a keyboard shortcut is not behaving as expected, do not worry, this is usually a straightforward problem to solve. The most common causes are shortcut conflicts, accidental reassignments, or small differences between Ubuntu versions or desktop environments. Use the table below to identify what might be happening and how to address it.
| Problem | What to Check |
|---|---|
| Shortcut does nothing | The shortcut may be assigned to a different action. Go to Settings > Keyboard > View and Customize Shortcuts and search for the key combination. |
| Print Screen does nothing | The shortcut may have been reassigned. Check Settings > Keyboard > Keyboard Shortcuts > System. |
| Shortcut conflicts with an application | Some applications override system shortcuts. Check the application's own settings or keyboard shortcuts menu. |
| Ctrl + C doesn't copy text in Terminal | This is expected behavior. Use Ctrl + Shift + C to copy inside the Terminal. |
| Alt + F2 does not open a run dialog | This shortcut may behave differently depending on your GNOME Shell version. Press Super and type your command instead as an alternative. |
| Shortcuts behave differently | Not all shortcuts work consistently across every desktop environment (such as GNOME vs. KDE), and customization settings can sometimes change them unintentionally. |
Quick Reference Summary Table
Use this table as a quick daily reference. Once you start using these shortcuts regularly, they will become second nature, and you will find yourself reaching for the mouse far less often.
| Category | Key Shortcut | Action |
|---|---|---|
| Desktop | Super | Open Activities / Search |
| Desktop | Super + A | Open App Menu |
| Desktop | Super + L | Lock Screen |
| Desktop | Ctrl + Alt + Del | Log Out |
| Window | Alt + F4 | Close Window |
| Window | Super + Up Arrow | Maximize Window |
| Window | Super + Left/Right Arrow | Snap Window Left/Right |
| Window | Alt + Tab | Switch Between Apps |
| Screenshot | Print Screen | Screenshot Full Screen |
| Screenshot | Alt + Print Screen | Screenshot Active Window |
| Terminal | Ctrl + Alt + T | Open Terminal |
| Terminal | Ctrl + C | Stop Running Command |
| Terminal | Ctrl + Shift + C | Copy Text in Terminal |
| Terminal | Ctrl + L | Clear Terminal Screen |
| Terminal | Ctrl + R | Search Command History |
| Terminal | Tab | Auto-complete Command |