To make a screenshot in console (without X)












3















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?










share|improve this question





























    3















    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?










    share|improve this question



























      3












      3








      3


      1






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 20 at 19:08









      Rui F Ribeiro

      39.6k1479132




      39.6k1479132










      asked Jan 20 at 18:33









      linuxxoidlinuxxoid

      285




      285






















          2 Answers
          2






          active

          oldest

          votes


















          5














          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.






          share|improve this answer
























          • 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



















          1














          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.







          share|improve this answer























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            5














            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.






            share|improve this answer
























            • 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
















            5














            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.






            share|improve this answer
























            • 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














            5












            5








            5







            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.






            share|improve this answer













            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.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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



















            • 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













            1














            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.







            share|improve this answer




























              1














              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.







              share|improve this answer


























                1












                1








                1







                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.







                share|improve this answer













                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.








                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 20 at 20:56









                GAD3RGAD3R

                26.2k1751108




                26.2k1751108






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    An IMO inspired problem

                    Management

                    Has there ever been an instance of an active nuclear power plant within or near a war zone?