From owner-freebsd-questions@FreeBSD.ORG Sun May 4 17:25:47 2003 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 6B4DA37B401 for ; Sun, 4 May 2003 17:25:47 -0700 (PDT) Received: from priv-edtnes04.telusplanet.net (outbound02.telus.net [199.185.220.221]) by mx1.FreeBSD.org (Postfix) with ESMTP id A203843FCB for ; Sun, 4 May 2003 17:25:46 -0700 (PDT) (envelope-from viktorlazlo@telus.net) Received: from [192.168.1.100] ([207.6.229.118]) by priv-edtnes04.telusplanet.netESMTP <20030505002546.ZHEO8012.priv-edtnes04.telusplanet.net@[192.168.1.100]>; Sun, 4 May 2003 18:25:46 -0600 Date: Sun, 4 May 2003 17:25:23 -0700 (PDT) From: Viktor Lazlo X-X-Sender: viktorlazlo@a3ij25fvy80j.bc.hsia.telus.net To: JoeB In-Reply-To: Message-ID: <20030504172204.W90178-100000@a3ij25fvy80j.bc.hsia.telus.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FBSDQ Subject: RE: Command line command to creat image of what is displayed on screen 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: Mon, 05 May 2003 00:25:47 -0000 On Sun, 4 May 2003, JoeB wrote: > I am running FBSD 4.8 and there is no man page for import. > Are you sure import is part of the basic install. > > -----Original Message----- > From: mpd [mailto:mpd@rochester.rr.com] > Sent: Sunday, May 04, 2003 7:58 PM > To: JoeB > Cc: FBSDQ > Subject: Re: Command line command to creat image of what is > displayed on screen > > On Sun, May 04, 2003 at 07:50:27PM -0400, JoeB wrote: > > Looking for command line command like ms/dos print screen keyboard > > key. > > Want to command to create image file of screen > > > > import(1) will do this. Man page has examples. import is part of the ImageMagick suite in /usr/ports/graphics. If you don't have this installed you can create a screen dump in X using: xwd -frame -out default.xwd or if you are not using X and want a graphic dump of a console window: vidcontrol -p < /dev/whatever > outputfile.scr (or vidcontrol -P for a text dump) Cheers, Viktor