From owner-freebsd-questions@FreeBSD.ORG Fri Jun 4 18:41:05 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6727416A4CE for ; Fri, 4 Jun 2004 18:41:05 -0700 (PDT) Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59CAB43D5A for ; Fri, 4 Jun 2004 18:41:05 -0700 (PDT) (envelope-from rpratt1950@earthlink.net) Received: from user166.net317.fl.sprint-hsd.net ([65.40.2.166] helo=kt.weeble.com) by harrier.mail.pas.earthlink.net with smtp (Exim 3.33 #1) id 1BWQAf-0000vx-00; Fri, 04 Jun 2004 18:40:29 -0700 Date: Fri, 4 Jun 2004 21:41:49 -0400 From: Randy Pratt To: "Andrew L. Gould" Message-Id: <20040604214149.082b2831.rpratt1950@earthlink.net> In-Reply-To: <20040604112313.1ede01a1.algould@datawok.com> References: <20040604112313.1ede01a1.algould@datawok.com> X-Mailer: Sylpheed version 0.9.11 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: How to make a screenshot? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jun 2004 01:41:05 -0000 On Fri, 4 Jun 2004 11:23:13 -0500 "Andrew L. Gould" wrote: > How can I make a screenshot of what's on my monitor? (I searched the > archives unsuccessfully for "screenshot".) > > I'm running FreeBSD 4.10. > > Thanks, > > Andrew Everyone so far has mentioned mostly screenshots within XFree86 so I'll mention a method for console mode. >From "man vidcontrol": The following command will capture the contents of the first virtual terminal, and redirect the output to the shot.scr file: vidcontrol -p < /dev/ttyv0 > shot.scr The following command will dump contents of the fourth virtual terminal to the standard output in the human readable format: vidcontrol -P < /dev/ttyv3 The .scr images can be manipulated with textproc/scr2txt and graphics/scr2png. The man pages for both describe their usage. These are the tools that are used to produce the screenshots of the console and Sysinstall in the Handbook. For screenshots in XFree86, I find that graphics/xv does the job quite nicely without a lot of fuss. Best regards, Randy --