LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-18-2004, 02:38 PM   #1
apoc013
Member
 
Registered: Jan 2004
Location: New York
Distribution: Red Hat 9
Posts: 31

Rep: Reputation: 15
Exclamation How do I take scrren shots?


Can someone tell me what I need to take a screen shot of my screen in gnome, and/or kde.

Thanks in advance!
 
Old 01-18-2004, 02:42 PM   #2
eam
Member
 
Registered: Nov 2003
Location: USA
Distribution: Slackware
Posts: 67

Rep: Reputation: 15
Hit the Print Screen key and a screen shot window should come up.
 
Old 01-18-2004, 02:46 PM   #3
apoc013
Member
 
Registered: Jan 2004
Location: New York
Distribution: Red Hat 9
Posts: 31

Original Poster
Rep: Reputation: 15
Thanks I'll try it next time I boot into linux.
 
Old 01-18-2004, 02:57 PM   #4
Hal
Member
 
Registered: Oct 2003
Location: East Anglia, England
Distribution: Dapper Drake / Slackware
Posts: 151

Rep: Reputation: 30
Or alternatively if you have the GIMP, try acquire screenshot or something like that.
 
Old 01-18-2004, 03:10 PM   #5
willand
Member
 
Registered: Dec 2003
Location: Paris, France
Distribution: Debian, Knoppix & Mandrake
Posts: 52

Rep: Reputation: 15
there is a command when you are running the console mode... but i forget it

With X, you can so use Ksnapshot....
But the "print screen" key... it doesn't work... on the distros that i use... Mdk, Debian, Red Hat...
 
Old 01-18-2004, 03:12 PM   #6
leonscape
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Debian SID / KDE 3.5
Posts: 2,313

Rep: Reputation: 48
Some Distros simply set the print screen button as a shortcut for Ksnapshot. Easy to do from the menu editor.
 
Old 01-18-2004, 03:15 PM   #7
megaspaz
Senior Member
 
Registered: Nov 2002
Location: Silly Con Valley
Distribution: Red Hat 7.3, Red Hat 9.0
Posts: 2,054

Rep: Reputation: 46
actually it should. at least it does for me in kde on rh 7.3. i think you need to check for a couple of things first. sheck your shortcut keys and see if you have key combos that map to screenshots. i've got print screen mapped to full desktop screenshot and alt+printscreen mapped to windowed screenshots. this doesn't work for every app though. i know the alt+printscreen doesn't work for the gimp. but it does work for kpaint. you do an alt+printscreen on let's say your konqeror window. open up kpaint and then do Edit > Past Image. a new kpaint window will open up with your konqueror screenshot. save it if you wish or do some basic editing and save it. printscreen itself doesn't work that well, from my experience though. using the hotkeys for a full desktop screenshot and pasting into kpaint causes my window decs to disappear until next login, so imo, that's buggy. but alt+printscreen works fine.

but not withstanding, i think i use either ksnapshot or the shoot plugin from gkrellm the most.
 
Old 01-18-2004, 03:36 PM   #8
apoc013
Member
 
Registered: Jan 2004
Location: New York
Distribution: Red Hat 9
Posts: 31

Original Poster
Rep: Reputation: 15
Thanks for all your help. The print screen worked just fine.
 
Old 01-18-2004, 05:12 PM   #9
Whitehat
Senior Member
 
Registered: Feb 2003
Location: The Cold North
Distribution: SuSE 9.1
Posts: 1,289

Rep: Reputation: 46
You could always take a picture of your screen with a camera .....have the film developed......and then postal mail each one of us a copy.

I'd say that's the best and most effecient way

LOL

Peace,
Whitehat
 
Old 01-18-2004, 06:04 PM   #10
vincebs
Member
 
Registered: Oct 2003
Location: Mississauga, ON
Distribution: Ubuntu 9.04
Posts: 496

Rep: Reputation: 30
What happens if you don't have KDE?
 
Old 01-18-2004, 06:22 PM   #11
leonscape
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Debian SID / KDE 3.5
Posts: 2,313

Rep: Reputation: 48
Theirs GNOME screen-shooter, or ImageMagick.
 
Old 02-07-2004, 03:58 PM   #12
JimDog
Member
 
Registered: Aug 2003
Location: Colorado, USA
Distribution: Fedora Core
Posts: 100

Rep: Reputation: 15
I usually use:

import -window root /home/user/screenshot.jpg
 
Old 02-08-2004, 01:00 AM   #13
mikshaw
LQ Addict
 
Registered: Dec 2003
Location: Maine, USA
Distribution: Slackware/SuSE/DSL
Posts: 1,320

Rep: Reputation: 45
I like to be lazy...and annoyingly organized. "snap 60" takes a snapshot and compresses it at 60% quality, then saves it in a specified directory with the current date as the filename:

Code:
YEAR=`date +%y`
MONTH=`date +%m`
DAY=`date +%d`
#HOUR=`date +%H`
#MINUTE=`date +%M`
FILENAME="${HOME}/image/snap/${YEAR}linflux_${MONTH}${DAY}.png"

if [ ! $1 ]; then
       echo "no compression specified (1-100)"
else
import -pause 2 -window root -quality $1 ${FILENAME}
        if [ -r ${FILENAME} ]; then
        echo "image saved to ${FILENAME}"
        else
        echo "could not save ${FILENAME}"
        fi
fi
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing scrren resolution in text mode in RedHat 9 coolfrog Linux - Newbie 2 10-20-2005 09:17 PM
Fedora Linux 3 Install, grey scrren hanging nathanpr Linux - Software 1 08-25-2005 07:51 PM
login scrren lyonsd Solaris / OpenSolaris 1 06-06-2005 01:15 AM
Screen Shots Dr. Bush SUSE / openSUSE 2 05-29-2005 03:56 PM
screwed up scrren in installation sh4d0w13 Debian 5 03-02-2005 09:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:35 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration