What is `Load “fb”` in xorg.conf

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
1
down vote

favorite












What Load "fb" in Section "Module" of xorg.conf actually does?




Tried to RTFM and searching first.







share|improve this question

























    up vote
    1
    down vote

    favorite












    What Load "fb" in Section "Module" of xorg.conf actually does?




    Tried to RTFM and searching first.







    share|improve this question





















      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      What Load "fb" in Section "Module" of xorg.conf actually does?




      Tried to RTFM and searching first.







      share|improve this question











      What Load "fb" in Section "Module" of xorg.conf actually does?




      Tried to RTFM and searching first.









      share|improve this question










      share|improve this question




      share|improve this question









      asked 2 days ago









      JAre

      1084




      1084




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          Load "fb" is telling X to load the framebuffer module.



          (II) Loading sub module "fb"
          (II) LoadModule: "fb"
          (II) Loading /usr/lib/xorg/modules//libfb.so
          (II) Module fb: vendor="X.Org Foundation"
          compiled for 1.4.2, module version = 1.0.0
          ABI class: X.Org ANSI C Emulation, version 0.3


          from the freedesktop.org xorg archives


           The fb library is what is responsible for almost all of the software
          rendering that your X Server might do.

          You're probably mostly spending your time in fbComposite() and its
          children, which is the Render extension software implementation. Some
          drivers have hardware implementations of this, and we're working on
          making this be the case for more hardware.

          --
          Eric Anholt anholt at FreeBSD.org
          eric at anholt.net eric.anholt at intel.com



          On most distros you can locate files like this:



          $ locate libfb.so
          /usr/lib64/xorg/modules/libfb.so
          $ rpm -qf /usr/lib64/xorg/modules/libfb.so
          xorg-x11-server-Xorg-1.19.5-5.el7.x86_64


          And inquire into the package itself about the contents/purpose.



          What's a framebuffer



          So the next question might be, what's a framebuffer. For that look to wikipedia: Framebuffer:




          A framebuffer (frame buffer, or sometimes framestore) is a portion of RAM1 containing a bitmap that drives a video display. It is a memory buffer containing a complete frame of data.2 Modern video cards contain framebuffer circuitry in their cores. This circuitry converts an in-memory bitmap into a video signal that can be displayed on a computer monitor.




          In computers, buffers such as this, are used to directly map a region of memory to a display/screen, which has a driver that's monitoring the region. Anything placed into this location is picked up and rendered on the display/screen itself.



          For more on frame buffers, please refer to this U&L Q&A titled: What is a framebuffer device and is it required to obtain a higher resolution?.



          Reference



          • What is libfb.so responsible for?





          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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            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%2f460551%2fwhat-is-load-fb-in-xorg-conf%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            accepted










            Load "fb" is telling X to load the framebuffer module.



            (II) Loading sub module "fb"
            (II) LoadModule: "fb"
            (II) Loading /usr/lib/xorg/modules//libfb.so
            (II) Module fb: vendor="X.Org Foundation"
            compiled for 1.4.2, module version = 1.0.0
            ABI class: X.Org ANSI C Emulation, version 0.3


            from the freedesktop.org xorg archives


             The fb library is what is responsible for almost all of the software
            rendering that your X Server might do.

            You're probably mostly spending your time in fbComposite() and its
            children, which is the Render extension software implementation. Some
            drivers have hardware implementations of this, and we're working on
            making this be the case for more hardware.

            --
            Eric Anholt anholt at FreeBSD.org
            eric at anholt.net eric.anholt at intel.com



            On most distros you can locate files like this:



            $ locate libfb.so
            /usr/lib64/xorg/modules/libfb.so
            $ rpm -qf /usr/lib64/xorg/modules/libfb.so
            xorg-x11-server-Xorg-1.19.5-5.el7.x86_64


            And inquire into the package itself about the contents/purpose.



            What's a framebuffer



            So the next question might be, what's a framebuffer. For that look to wikipedia: Framebuffer:




            A framebuffer (frame buffer, or sometimes framestore) is a portion of RAM1 containing a bitmap that drives a video display. It is a memory buffer containing a complete frame of data.2 Modern video cards contain framebuffer circuitry in their cores. This circuitry converts an in-memory bitmap into a video signal that can be displayed on a computer monitor.




            In computers, buffers such as this, are used to directly map a region of memory to a display/screen, which has a driver that's monitoring the region. Anything placed into this location is picked up and rendered on the display/screen itself.



            For more on frame buffers, please refer to this U&L Q&A titled: What is a framebuffer device and is it required to obtain a higher resolution?.



            Reference



            • What is libfb.so responsible for?





            share|improve this answer



























              up vote
              2
              down vote



              accepted










              Load "fb" is telling X to load the framebuffer module.



              (II) Loading sub module "fb"
              (II) LoadModule: "fb"
              (II) Loading /usr/lib/xorg/modules//libfb.so
              (II) Module fb: vendor="X.Org Foundation"
              compiled for 1.4.2, module version = 1.0.0
              ABI class: X.Org ANSI C Emulation, version 0.3


              from the freedesktop.org xorg archives


               The fb library is what is responsible for almost all of the software
              rendering that your X Server might do.

              You're probably mostly spending your time in fbComposite() and its
              children, which is the Render extension software implementation. Some
              drivers have hardware implementations of this, and we're working on
              making this be the case for more hardware.

              --
              Eric Anholt anholt at FreeBSD.org
              eric at anholt.net eric.anholt at intel.com



              On most distros you can locate files like this:



              $ locate libfb.so
              /usr/lib64/xorg/modules/libfb.so
              $ rpm -qf /usr/lib64/xorg/modules/libfb.so
              xorg-x11-server-Xorg-1.19.5-5.el7.x86_64


              And inquire into the package itself about the contents/purpose.



              What's a framebuffer



              So the next question might be, what's a framebuffer. For that look to wikipedia: Framebuffer:




              A framebuffer (frame buffer, or sometimes framestore) is a portion of RAM1 containing a bitmap that drives a video display. It is a memory buffer containing a complete frame of data.2 Modern video cards contain framebuffer circuitry in their cores. This circuitry converts an in-memory bitmap into a video signal that can be displayed on a computer monitor.




              In computers, buffers such as this, are used to directly map a region of memory to a display/screen, which has a driver that's monitoring the region. Anything placed into this location is picked up and rendered on the display/screen itself.



              For more on frame buffers, please refer to this U&L Q&A titled: What is a framebuffer device and is it required to obtain a higher resolution?.



              Reference



              • What is libfb.so responsible for?





              share|improve this answer

























                up vote
                2
                down vote



                accepted







                up vote
                2
                down vote



                accepted






                Load "fb" is telling X to load the framebuffer module.



                (II) Loading sub module "fb"
                (II) LoadModule: "fb"
                (II) Loading /usr/lib/xorg/modules//libfb.so
                (II) Module fb: vendor="X.Org Foundation"
                compiled for 1.4.2, module version = 1.0.0
                ABI class: X.Org ANSI C Emulation, version 0.3


                from the freedesktop.org xorg archives


                 The fb library is what is responsible for almost all of the software
                rendering that your X Server might do.

                You're probably mostly spending your time in fbComposite() and its
                children, which is the Render extension software implementation. Some
                drivers have hardware implementations of this, and we're working on
                making this be the case for more hardware.

                --
                Eric Anholt anholt at FreeBSD.org
                eric at anholt.net eric.anholt at intel.com



                On most distros you can locate files like this:



                $ locate libfb.so
                /usr/lib64/xorg/modules/libfb.so
                $ rpm -qf /usr/lib64/xorg/modules/libfb.so
                xorg-x11-server-Xorg-1.19.5-5.el7.x86_64


                And inquire into the package itself about the contents/purpose.



                What's a framebuffer



                So the next question might be, what's a framebuffer. For that look to wikipedia: Framebuffer:




                A framebuffer (frame buffer, or sometimes framestore) is a portion of RAM1 containing a bitmap that drives a video display. It is a memory buffer containing a complete frame of data.2 Modern video cards contain framebuffer circuitry in their cores. This circuitry converts an in-memory bitmap into a video signal that can be displayed on a computer monitor.




                In computers, buffers such as this, are used to directly map a region of memory to a display/screen, which has a driver that's monitoring the region. Anything placed into this location is picked up and rendered on the display/screen itself.



                For more on frame buffers, please refer to this U&L Q&A titled: What is a framebuffer device and is it required to obtain a higher resolution?.



                Reference



                • What is libfb.so responsible for?





                share|improve this answer















                Load "fb" is telling X to load the framebuffer module.



                (II) Loading sub module "fb"
                (II) LoadModule: "fb"
                (II) Loading /usr/lib/xorg/modules//libfb.so
                (II) Module fb: vendor="X.Org Foundation"
                compiled for 1.4.2, module version = 1.0.0
                ABI class: X.Org ANSI C Emulation, version 0.3


                from the freedesktop.org xorg archives


                 The fb library is what is responsible for almost all of the software
                rendering that your X Server might do.

                You're probably mostly spending your time in fbComposite() and its
                children, which is the Render extension software implementation. Some
                drivers have hardware implementations of this, and we're working on
                making this be the case for more hardware.

                --
                Eric Anholt anholt at FreeBSD.org
                eric at anholt.net eric.anholt at intel.com



                On most distros you can locate files like this:



                $ locate libfb.so
                /usr/lib64/xorg/modules/libfb.so
                $ rpm -qf /usr/lib64/xorg/modules/libfb.so
                xorg-x11-server-Xorg-1.19.5-5.el7.x86_64


                And inquire into the package itself about the contents/purpose.



                What's a framebuffer



                So the next question might be, what's a framebuffer. For that look to wikipedia: Framebuffer:




                A framebuffer (frame buffer, or sometimes framestore) is a portion of RAM1 containing a bitmap that drives a video display. It is a memory buffer containing a complete frame of data.2 Modern video cards contain framebuffer circuitry in their cores. This circuitry converts an in-memory bitmap into a video signal that can be displayed on a computer monitor.




                In computers, buffers such as this, are used to directly map a region of memory to a display/screen, which has a driver that's monitoring the region. Anything placed into this location is picked up and rendered on the display/screen itself.



                For more on frame buffers, please refer to this U&L Q&A titled: What is a framebuffer device and is it required to obtain a higher resolution?.



                Reference



                • What is libfb.so responsible for?






                share|improve this answer















                share|improve this answer



                share|improve this answer








                edited 2 days ago


























                answered 2 days ago









                slm♦

                232k65479648




                232k65479648






















                     

                    draft saved


                    draft discarded


























                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f460551%2fwhat-is-load-fb-in-xorg-conf%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay