6

Noob question...

But shutter not installed, print screen doesn't appear to work, screen grab not installed etc.

Dycey
  • 4,767
  • 5
  • 47
  • 86

2 Answers2

7

This can be achieved with ImageMagick. Install by running the command

sudo apt-get install imagemagick

To grab all desktop just type

import -window root screen.png

Or you can do it with a delay of 5 seconds

sleep 5; import -window root screen.png
Jørgen R
  • 10,568
  • 7
  • 42
  • 59
pmalheiros
  • 71
  • 1
  • What if you do not have XWindow running, and want to grab the screen of a console based app? – Bram Jan 23 '13 at 22:13
6

For a lighter weight screenshot tool, use scrot

sudo apt-get install scrot

To take a screenshot, at the terminal, just type

scrot

To take a screenshot after, say, 5 seconds

scrot -d 5
Terence Eden
  • 14,034
  • 3
  • 48
  • 89