Date: Fri, 4 Jun 2004 21:41:49 -0400 From: Randy Pratt <rpratt1950@earthlink.net> To: "Andrew L. Gould" <algould@datawok.com> Cc: questions@freebsd.org Subject: Re: How to make a screenshot? Message-ID: <20040604214149.082b2831.rpratt1950@earthlink.net> In-Reply-To: <20040604112313.1ede01a1.algould@datawok.com> References: <20040604112313.1ede01a1.algould@datawok.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 4 Jun 2004 11:23:13 -0500 "Andrew L. Gould" <algould@datawok.com> 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 --
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040604214149.082b2831.rpratt1950>