Apple - Is it possible to take a screenshot in Recovery Mode?
Where OS X is booted but you can't take a screenshot because you're not logged in (e.g. the login screen, lock screen) you can take a screenshot over SSH. Connect over SSH to your Mac and run…
sudo screencapture /path/to/screenshot.png
Where OS X isn't displaying a GUI (e.g. single user mode, boot sequence), you can't take a screenshot. This doesn't apply to virtual machines though, if you're determined to get a screenshot.
You most definitely can do a screen capture from Recovery.
- Boot into Recovery
- Open the Terminal from the Utilities menu
In Terminal type:
/Volumes/name_of_HD/usr/sbin/screencapture -s /Volumes/name_of_HD/Users/name_of_user/Desktop/name_for_file.png
You will get crosshairs so you can select what you want a screenshot of (like CMD-Shift-4)
name_of_HD=whatever the name of the HD is
name_of_user=any user on the system
name_for_file.png=whatever you want to name the file
When you login as that user, the screen capture will be waiting on your Desktop.