To take screenshots within the OS: - `Ctrl`+`Super`+`s` takes a screenshot of the entire screen. - `Ctrl`+`Super`+`w` takes a screenshot of the focused window. The screenshot will be saved as a Targa image in `/tmp/screenshot.tga`. Window screenshots will be 32-bit with alpha channel; fullscreen screenshots will be 24-bit with no alpha channel. To get screenshots off of the VM and into a more useful format, you can run: nc -l 9999 > screenshot.tga; convert screenshot.tga screenshot.png ... on the host machine, and then on the VM: cat /tmp/screenshot.tga > /dev/net/10.0.2.1:9999 ![](https://i.imgur.com/coW1Mao.png)