Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Noob question...

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

share|improve this question
3  
Use a digital camera. – Omtara May 14 '12 at 10:59
1  
Sorry, can't seem to find the comedy+ button on this site. – Dycey May 14 '12 at 11:00

closed as off topic by Johnsyweb, FelipeAls, martin clayton, Abizern, Joe Sep 9 '12 at 12:48

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

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
share|improve this answer
What if you do not have XWindow running, and want to grab the screen of a console based app? – Bram Jan 23 at 22:13

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
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.