Translation(s): English - EspaƱol - Italiano

(!) ?Discussion


How to make a screenshot under Debian ?

Using Gnome

Gnome has built-in capability to make a screenshot (package gnome-utils). Simply press:

More options are available in "Gnome Application Menu/Acessories/Take Screenshot" (like delayed screen shot).

Using KDE

KDE has the capability to make a screenshot (using package ksnapshot). Simply press:

Using command line

Just open a graphical terminal and type:

The command xwd is a standard xorg tool, which creates a pnm file. You can then use imagemagick 's convert, or netpbm 's xwdtopnm tool

Similarly the screenshot of a single window can be obtained by not specifying a target window to xwd:

the mouse pointer then becomes a crosshair and the user must click on the desired window.

Similar results can be obtained combining the xwininfo utility in x11-utils with imagemagick 's import:

A powerful alternative tool is scrot, which can directly save files as png (and other formats), and generate a filename. See scrot(1).

Console / Xterm

Rather that making a graphical snapshot of the console/command line or X-window terminal, it's usually better to copy the actual text content (select the region with a mouse).

Console

To you use the mouse on the Console screen, you need to install gpm (run apt-get install gpm).

Advanced tip: if you don't want to use a text editor, you can run cat > /tmp/outfile.txt, then paste the content using middle-button, then press Ctrl-D (once).

Framebuffer

If your system is using framebuffer (vga=XXX kernel argument, etc.), you can use fbgrab to capture and convert the framebuffer content.

Hint: If fbgrab isn't installed when you want to capture the screen, you can use cp /dev/fb0 screen.raw, then use fbgrab -f screen.raw -w 1024 -h 768 -b 16 screen.png .

Other Tools

Debian provides some other (advanced) tools to make screenshot, including gimp .

Debian Installer GUI screenshots

DebianInstaller's GUI has a take "Screenshot" button.

To fetch the captured screen :

If you complete the installation, the screenshots can also be found in the directory /var/log/installer/ (after the reboot into the installed system).

License of screenshots

Screenshots are considered as derivative works (according to SPI legal counsel), see http://lists.debian.org/debian-legal/2008/08/msg00016.html.

See Also