is there an easy FOSS way to get a screenshot of a curses-based command line GUI when X isn't installed?

What if the powers-that-be say I can't remote login? (I'm working on it ha)

link|improve this question

50% accept rate
feedback

7 Answers

SSH to the server and run the curses-based command; it should translate properly to curses "graphics", depending on how your terminal client's emulation is configured. Screenshot using your desktop OS's utility.

At least, that's what I'd do.

link|improve this answer
feedback

You can also use the screen program, and pressing ctrl-a h will write the screen to a file 'hardcopy.n'.

link|improve this answer
feedback

In addition to what Joe mentioned you can also use a virtual machine to get screen shots of things that you can't do any other way such as the installer.

If getting the output of a session including all commands and output command as text would be better then have a look at the script command. And in some situations something like pastebinit may be appropriate.

Although I'm not sure how script deals with a curses based app.

link|improve this answer
feedback

scrot is a cli based screenshot tool which i've used before. Its a little quirky (it'll take a screenshot of the system i'm sshed in from) but might be ideal for your needs

link|improve this answer
feedback

I have done this on old serial terminals by takeing a photo of the termial screen. This is simple and works with no modifications to the terminal at all.

link|improve this answer
yeah, this is a reasonable backup, i just need to fill out a few papers and wait a week for a photographer to come ;) – Dustin Getz Mar 24 '10 at 13:45
feedback

One solution might be a video loopback. In theory, you could use a Video4Linux device then capture its output with a v4l capture program.

link|improve this answer
feedback

If you're running on a virtual terminal (e.g. [Ctrl]-Alt-F1), you can, from another terminal, type:

sudo cat /dev/vcs1 > screenshot_file

or

sudo cat /dev/vcsa1 > screenshot_file

but the results probably won't be satisfactory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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