How To Take Screenshot In Ubuntu

7 min read

How to Take Screenshot in Ubuntu: A Complete Guide

If you're new to Ubuntu and need to capture your screen, learning how to take screenshot in Ubuntu is essential for everything from sharing tutorials to preserving important information. Ubuntu offers several built‑in methods, each suited to different workflows and desktop environments. This guide walks you through the most common techniques—keyboard shortcuts, graphical tools, and command‑line options—so you can choose the approach that best fits your needs.

Keyboard Shortcuts: The Quickest Way

Ubuntu’s default keyboard shortcuts let you snap screenshots in seconds without opening any extra programs.

Standard Screenshot

  • Full screen: Press Print Screen (sometimes labeled Print Scr or PrtScn). The image is saved to your Pictures/Screenshots folder with a timestamp.
  • Active window: Hold Ctrl + Print Screen. Only the currently focused window is captured.
  • Custom selection: Press Ctrl + Shift + Print Screen. Your cursor turns into a crosshair; click and drag to select the area you want, then release the mouse button.

Tip: If your keyboard lacks a dedicated Print Screen key, you can simulate it using Fn + Insert on many laptops, or enable the shortcut in Settings → Keyboard → Shortcuts → Accessibility.

Alternative Shortcut for GNOME

  • Full screen: Super (Windows) + Print Screen – works in GNOME‑based Ubuntu versions (e.g., Ubuntu 20.04 and later).
  • Active window: Super + Ctrl + Print Screen.
  • Selection: Super + Shift + Print Screen.

These shortcuts are pre‑configured, but you can verify or modify them in Settings → Keyboard → Shortcuts → Screenshot That's the whole idea..

Graphical Tools: More Control and Editing

Once you need extra options—such as adding a delay, annotating, or choosing a save location—Ubuntu’s built‑‑in screenshot utilities provide a richer experience.

GNOME Screenshot

  1. Open the Activities overview and type “Screenshot”.
  2. Click the Screenshot icon to launch the utility.
  3. Choose from three capture modes:
    • Screenshot window: Click any window.
    • Selection: Drag to define the area.
    • Background: Select a delay (5‑10 seconds) before capturing.
  4. Click the Save button and pick a destination folder.

You can also enable “Copy to clipboard” instead of saving a file directly.

KSnapshot (KDE Plasma)

If you’re using the KDE Plasma edition of Ubuntu, the KSnapshot tool offers similar functionality:

  • Launch KSnapshot from the application menu.
  • Use the Capture dropdown to select Window, Region, or Desktop.
  • Add a delay via the Delay slider.
  • Apply simple annotations using the toolbar icons before saving.

Xfce Screenshot

For Xfce users, the Xfce Screenshot utility provides a lightweight option:

  • Access it via Applications → Accessories → Xfce Screenshot.
  • Choose Window, Region, or Desktop from the Capture menu.
  • Set a delay and preview the image before finalizing.

These graphical tools are especially handy for beginners because they give visual feedback and easy access to editing features.

Command‑Line Methods: Power User Approaches

Ubuntu’s command line offers precise control and is ideal for scripting or automation. The two most common utilities are scrot and gnome-screenshot Small thing, real impact..

Using scrot

scrot is a simple, terminal‑based screenshot tool that comes pre‑installed on many Ubuntu variants.

  • Full screen:
    scrot
    
  • Active window:
    scrot -w
    
  • Selection:
    scrot -s
    
  • Delay and filename:
    scrot -d 5 -f /home/yourname/Desktop/screenshot.png
    
    -d sets a 5‑second delay; -f specifies the output file.

You can also combine options, e.Because of that, g. , scrot -s -z to zoom into the selected region after capture Worth keeping that in mind..

Using gnome-screenshot

If you prefer the GNOME command line tool, run:

  • Full screen:
    gnome-screenshot
    
  • Active window:
    gnome-screenshot -w
    
  • Selection:
    gnome-screenshot -s
    
  • Copy to clipboard:
    gnome-screenshot -c
    
  • Delay:
    gnome-screenshot -d 3
    

Both utilities support PNG output by default, but you can add --quality or --file options if you need JPEG or custom naming Worth knowing..

Tips & Tricks for Efficient Screenshot Capture

  • Set a default save folder: In Settings → Privacy & Security → Screenshots, you can change the default destination to a folder of your choice.
  • Enable thumbnail previews: After taking a screenshot, Ubuntu can display a small preview in the top‑right corner. Click it to open the image quickly.
  • Keyboard layout variations: On some international keyboards, the Print Screen key may be mapped to Fn + F12 or Scroll Lock. Check your keyboard layout in Settings → Keyboard → Layout and adjust shortcuts if needed.
  • Use delay for dropdown menus: If you need to capture a menu that disappears on mouse leave, use a 3‑second delay via the graphical tool or gnome-screenshot -d 3.
  • Combine with imageMagick: For advanced processing, you can pipe scrot output into ImageMagick commands, e.g., scrot -f - | convert - crop 100x100+0+0 screenshot.png.

Frequently Asked Questions (FAQ)

Q: Where does Ubuntu store screenshots by default?
A: Ubuntu saves screenshots in ~/Pictures/Screenshots with filenames like Screenshot from 2023-09-15 14:23:45.png.

Q: Can I change the screenshot file format?
A: Yes. In GNOME Screenshot, click the Save as dropdown and choose PNG, JPEG, or WEBP. For command‑line tools, use scrot -e 'convert $f png/$f.png' to convert automatically.

Q: My Print Screen key doesn’t work. What should I do?
A: Verify the shortcut in Settings → Keyboard → Shortcuts → Screenshot. Also, some laptops require pressing Fn + Print Screen. If the issue persists, you can re‑map the key in Keyboard → Shortcuts → Custom Shortcuts.

Q: Is there a way to capture a scrolling webpage?
A: The built‑in screenshot tools capture only the visible area. For full‑page captures, consider using external tools like scrot -s combined with imagemagick or browser extensions (though extensions are not covered here).

Q: How do I copy a screenshot directly to the clipboard?

A: Use the clipboard option or the corresponding keyboard shortcut.

From the graphical screenshot tool, select Copy to clipboard instead of Save.

From the terminal:

gnome-screenshot -c

For a specific area:

gnome-screenshot -s -c

For the active window:

gnome-screenshot -w -c

On many Ubuntu desktops, Ctrl + Print Screen copies the selected screenshot area to the clipboard. You can then paste it directly into applications such as Text Editor, LibreOffice, Slack, Discord, or a web form.

More Useful Screenshot Questions

Q: Can I crop a screenshot after taking it?
A: Yes. You can crop screenshots using Image Viewer, GNOME Photos, Shotwell, or command-line tools such as ImageMagick. For example:

convert screenshot.png -crop 800x600+100+100 cropped.png

Q: Can I annotate or mark something on a screenshot?
A: Yes. Tools like Shotwell, GNOME Image Editor, Paint.NET on Windows, or command-line tools such as ImageMagick can add arrows, highlights, text, and blur effects Practical, not theoretical..

Q: What is the fastest way to screenshot on Ubuntu?
A: Press Print Screen, choose the area you want, and click Take or press Enter. If you only need the whole screen quickly, gnome-screenshot is the fastest command-line option.

Q: How do I capture the active window without opening the screenshot tool?
A: Use the shortcut:

Alt + Print Screen

Or run:

gnome-screenshot -w

Q: Can I take a screenshot of a video, game, or protected window?
A: Not always. Some applications, especially games, fullscreen video players, and secure content areas, may block screenshots or display blank/black regions. This depends on the application and desktop environment That's the part that actually makes a difference..

Q: Which screenshot method should I use?
A: For quick visual capture, use Print Screen. For custom areas, windows, or delayed captures, use the graphical screenshot tool. For automation, scripts, or batch processing, use command-line tools like gnome-screenshot, scrot, or import The details matter here..

Conclusion

Taking screenshots on Ubuntu is simple whether you prefer the graphical interface, keyboard shortcuts, or terminal commands. The built-in screenshot tool is ideal for everyday use, while utilities like gnome-screenshot, scrot, and ImageMagick are better for automation, delayed captures, cropping, and advanced workflows Worth keeping that in mind..

By understanding the available shortcuts, save locations, clipboard options, and command-line tools, you can capture exactly what you need quickly

and efficiently. Whether you're capturing a bug report, sharing a recipe, or documenting a process, Ubuntu provides the tools to do it your way.

For those who need more, consider exploring scrot for its simplicity and scriptability, or ImageMagick for powerful post-capture editing directly in the terminal. Don't forget about delayed captures (gnome-screenshot -d 5) for setting up a scene, or third-party tools like Flameshot for an all-in-one annotation and upload experience.

Mastering these techniques turns a simple screenshot into a versatile tool for communication and productivity. Now, go capture what you need Most people skip this — try not to..

Keep Going

Brand New Stories

Close to Home

Keep Exploring

Thank you for reading about How To Take Screenshot In Ubuntu. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home