To make a screenshot in console (without X)












2















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





























    2















    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



























      2












      2








      2








      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 3 hours ago









      Rui F Ribeiro

      39.6k1479132




      39.6k1479132










      asked 3 hours ago









      linuxxoidlinuxxoid

      213




      213






















          2 Answers
          2






          active

          oldest

          votes


















          3














          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































            0














            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









              3














              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




























                3














                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


























                  3












                  3








                  3







                  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 3 hours ago









                  Stephen HarrisStephen Harris

                  25.4k24477




                  25.4k24477

























                      0














                      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




























                        0














                        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


























                          0












                          0








                          0







                          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 1 hour ago









                          GAD3RGAD3R

                          26k1751107




                          26k1751107






























                              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

                              SQL Server 17 - Attemping to backup to remote NAS but Access is denied

                              Always On Availability groups resolving state after failover - Remote harden of transaction...

                              Restoring from pg_dump with foreign key constraints