To make a screenshot in console (without X)
My netbook have installed Debian linux without X.org. I need sometimes to make a screenshots-output of some scripts. I tried to use a framebuffer device for this purpose:
# cat /dev/fb0 > screenshot.raw
But problem that this .raw file is not a graphical format because it's not open even in Gimp. How it's possible to convert it to .png file, for example?
debian tty
add a comment |
My netbook have installed Debian linux without X.org. I need sometimes to make a screenshots-output of some scripts. I tried to use a framebuffer device for this purpose:
# cat /dev/fb0 > screenshot.raw
But problem that this .raw file is not a graphical format because it's not open even in Gimp. How it's possible to convert it to .png file, for example?
debian tty
add a comment |
My netbook have installed Debian linux without X.org. I need sometimes to make a screenshots-output of some scripts. I tried to use a framebuffer device for this purpose:
# cat /dev/fb0 > screenshot.raw
But problem that this .raw file is not a graphical format because it's not open even in Gimp. How it's possible to convert it to .png file, for example?
debian tty
My netbook have installed Debian linux without X.org. I need sometimes to make a screenshots-output of some scripts. I tried to use a framebuffer device for this purpose:
# cat /dev/fb0 > screenshot.raw
But problem that this .raw file is not a graphical format because it's not open even in Gimp. How it's possible to convert it to .png file, for example?
debian tty
debian tty
edited Jan 20 at 19:08
Rui F Ribeiro
39.6k1479132
39.6k1479132
asked Jan 20 at 18:33
linuxxoidlinuxxoid
285
285
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The format of the raw file you capture is going to depend on the bit depth and resolution.
There are a number of tools out there to do this. Debian has the fbcat
package. You may need to sudo apt-get install fbcat
to install it.
fbcat
will grab the frame buffer in ppm
format, so you can then use ppmtojpeg
or similar to convert it to the format you want.
There's also a fbgrab
wrapper which will save in PNG format.
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
add a comment |
You can use the sudo setterm --dump
command to print the content of the current tty into a text file, the default output is screen.dump
file. The --file
option can be used to get a custom output file name: sudo setterm --dump --file screen0.dump
.
man setterm
:
--dump [console_number]
Writes a snapshot of the virtual console with the given number to the file specified with the
--file
option, overwriting its contents; the default is screen.dump. Without an argument, it dumps the current virtual console. This overrides--append
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495638%2fto-make-a-screenshot-in-console-without-x%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The format of the raw file you capture is going to depend on the bit depth and resolution.
There are a number of tools out there to do this. Debian has the fbcat
package. You may need to sudo apt-get install fbcat
to install it.
fbcat
will grab the frame buffer in ppm
format, so you can then use ppmtojpeg
or similar to convert it to the format you want.
There's also a fbgrab
wrapper which will save in PNG format.
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
add a comment |
The format of the raw file you capture is going to depend on the bit depth and resolution.
There are a number of tools out there to do this. Debian has the fbcat
package. You may need to sudo apt-get install fbcat
to install it.
fbcat
will grab the frame buffer in ppm
format, so you can then use ppmtojpeg
or similar to convert it to the format you want.
There's also a fbgrab
wrapper which will save in PNG format.
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
add a comment |
The format of the raw file you capture is going to depend on the bit depth and resolution.
There are a number of tools out there to do this. Debian has the fbcat
package. You may need to sudo apt-get install fbcat
to install it.
fbcat
will grab the frame buffer in ppm
format, so you can then use ppmtojpeg
or similar to convert it to the format you want.
There's also a fbgrab
wrapper which will save in PNG format.
The format of the raw file you capture is going to depend on the bit depth and resolution.
There are a number of tools out there to do this. Debian has the fbcat
package. You may need to sudo apt-get install fbcat
to install it.
fbcat
will grab the frame buffer in ppm
format, so you can then use ppmtojpeg
or similar to convert it to the format you want.
There's also a fbgrab
wrapper which will save in PNG format.
answered Jan 20 at 19:17
Stephen HarrisStephen Harris
25.5k24477
25.5k24477
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
add a comment |
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
Thank you so much Stephen. fbcat utility working as need... fbgrab generated a png file but it's not viewable((
– linuxxoid
Jan 21 at 17:53
add a comment |
You can use the sudo setterm --dump
command to print the content of the current tty into a text file, the default output is screen.dump
file. The --file
option can be used to get a custom output file name: sudo setterm --dump --file screen0.dump
.
man setterm
:
--dump [console_number]
Writes a snapshot of the virtual console with the given number to the file specified with the
--file
option, overwriting its contents; the default is screen.dump. Without an argument, it dumps the current virtual console. This overrides--append
.
add a comment |
You can use the sudo setterm --dump
command to print the content of the current tty into a text file, the default output is screen.dump
file. The --file
option can be used to get a custom output file name: sudo setterm --dump --file screen0.dump
.
man setterm
:
--dump [console_number]
Writes a snapshot of the virtual console with the given number to the file specified with the
--file
option, overwriting its contents; the default is screen.dump. Without an argument, it dumps the current virtual console. This overrides--append
.
add a comment |
You can use the sudo setterm --dump
command to print the content of the current tty into a text file, the default output is screen.dump
file. The --file
option can be used to get a custom output file name: sudo setterm --dump --file screen0.dump
.
man setterm
:
--dump [console_number]
Writes a snapshot of the virtual console with the given number to the file specified with the
--file
option, overwriting its contents; the default is screen.dump. Without an argument, it dumps the current virtual console. This overrides--append
.
You can use the sudo setterm --dump
command to print the content of the current tty into a text file, the default output is screen.dump
file. The --file
option can be used to get a custom output file name: sudo setterm --dump --file screen0.dump
.
man setterm
:
--dump [console_number]
Writes a snapshot of the virtual console with the given number to the file specified with the
--file
option, overwriting its contents; the default is screen.dump. Without an argument, it dumps the current virtual console. This overrides--append
.
answered Jan 20 at 20:56
GAD3RGAD3R
26.2k1751108
26.2k1751108
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495638%2fto-make-a-screenshot-in-console-without-x%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown