Black screen after boot












0














After I choose Lubuntu on my Grub nothing happens. The screen turns black, the keyboard lights up like it may be doing something, but over time nothing happens.



This started happening after I closed my laptop and opened it up again. Now Lubuntu will not boot at all.










share|improve this question



























    0














    After I choose Lubuntu on my Grub nothing happens. The screen turns black, the keyboard lights up like it may be doing something, but over time nothing happens.



    This started happening after I closed my laptop and opened it up again. Now Lubuntu will not boot at all.










    share|improve this question

























      0












      0








      0


      1





      After I choose Lubuntu on my Grub nothing happens. The screen turns black, the keyboard lights up like it may be doing something, but over time nothing happens.



      This started happening after I closed my laptop and opened it up again. Now Lubuntu will not boot at all.










      share|improve this question













      After I choose Lubuntu on my Grub nothing happens. The screen turns black, the keyboard lights up like it may be doing something, but over time nothing happens.



      This started happening after I closed my laptop and opened it up again. Now Lubuntu will not boot at all.







      intel-graphics lubuntu






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 14 '12 at 22:14









      Nick Jacobs

      11




      11






















          2 Answers
          2






          active

          oldest

          votes


















          1














          This is likely because of something known as framebuffer. In order to disable it try adding the kernel parameters i915.modeset=1 or i915.modeset=0. In order to do this you'll need to restart computer, then press Shift to enter the grub menu, and when Ubuntu is highlighted press e. After seeing the line which has something like linux_gfxmode or something like that add one of those parameter to the line. Once you've done that press Ctrl+X.






          share|improve this answer































            0














            my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
            my distro: lubuntu 18.04
            my problem description:
            4.15.0-20-generic: displaying FHD1920x1080 ok
            4.15.0-42-generic: blank screen after a few lines appear after grub screen



            ~$ sudo lshw -C video
            *-display UNCLAIMED

            description: VGA compatible controller
            product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller



            First to make sure your firmwares and module libraries are intact for i915



            ~$ modinfo i915
            modinfo: ERROR: Module i915 not found.



            ======solutions=====
            make sure that both your "/lib/firmware/i915/" and "/lib/modules/'uname -r'/" are populated with files
            I lost mine due to "apt autoremove"



            ~$ sudo apt install --reinstall linux-modules-'uname -r' linux-modules-extra-'uname -r'



            After
            ~$ sudo modprobe i915



            ~$ sudo lspci -v | grep -A 10 -i vga
            00:02.0 VGA compatible controller: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
            Subsystem: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller
            Flags: bus master, fast devsel, latency 0, IRQ 28
            Memory at d0100000 (32-bit, non-prefetchable) [size=1M]
            I/O ports at 20d0 [size=8]
            [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
            Capabilities:
            Kernel driver in use: gma500
            Kernel modules: gma500_gfx



            and finally settle your grub:



            ~$ sudo /etc/default/grub



            video=LVDS-1:d is disabling LVDS-1 port which some kernel version might be directing the video to that port on default despite your mobo might not have such a port available to you



            GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.modeset=1 video=LVDS-1:d"



            ~$ sudo update-grub



            my problem solved, credit due to https://bbs.archlinux.org/viewtopic.php?id=145648
            which in turn drew his solution from
            http://permalink.gmane.org/gmane.linux.mageia.devel/13667



            I had spent many days trying to nail this issue. Hope my findings are of use to you linux supporters. Cheers






            share|improve this answer





















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "89"
              };
              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: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              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%2faskubuntu.com%2fquestions%2f201130%2fblack-screen-after-boot%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









              1














              This is likely because of something known as framebuffer. In order to disable it try adding the kernel parameters i915.modeset=1 or i915.modeset=0. In order to do this you'll need to restart computer, then press Shift to enter the grub menu, and when Ubuntu is highlighted press e. After seeing the line which has something like linux_gfxmode or something like that add one of those parameter to the line. Once you've done that press Ctrl+X.






              share|improve this answer




























                1














                This is likely because of something known as framebuffer. In order to disable it try adding the kernel parameters i915.modeset=1 or i915.modeset=0. In order to do this you'll need to restart computer, then press Shift to enter the grub menu, and when Ubuntu is highlighted press e. After seeing the line which has something like linux_gfxmode or something like that add one of those parameter to the line. Once you've done that press Ctrl+X.






                share|improve this answer


























                  1












                  1








                  1






                  This is likely because of something known as framebuffer. In order to disable it try adding the kernel parameters i915.modeset=1 or i915.modeset=0. In order to do this you'll need to restart computer, then press Shift to enter the grub menu, and when Ubuntu is highlighted press e. After seeing the line which has something like linux_gfxmode or something like that add one of those parameter to the line. Once you've done that press Ctrl+X.






                  share|improve this answer














                  This is likely because of something known as framebuffer. In order to disable it try adding the kernel parameters i915.modeset=1 or i915.modeset=0. In order to do this you'll need to restart computer, then press Shift to enter the grub menu, and when Ubuntu is highlighted press e. After seeing the line which has something like linux_gfxmode or something like that add one of those parameter to the line. Once you've done that press Ctrl+X.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Oct 15 '12 at 13:17









                  lambda23

                  1,53862543




                  1,53862543










                  answered Oct 15 '12 at 12:59









                  Nunya Businesss

                  111




                  111

























                      0














                      my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
                      my distro: lubuntu 18.04
                      my problem description:
                      4.15.0-20-generic: displaying FHD1920x1080 ok
                      4.15.0-42-generic: blank screen after a few lines appear after grub screen



                      ~$ sudo lshw -C video
                      *-display UNCLAIMED

                      description: VGA compatible controller
                      product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller



                      First to make sure your firmwares and module libraries are intact for i915



                      ~$ modinfo i915
                      modinfo: ERROR: Module i915 not found.



                      ======solutions=====
                      make sure that both your "/lib/firmware/i915/" and "/lib/modules/'uname -r'/" are populated with files
                      I lost mine due to "apt autoremove"



                      ~$ sudo apt install --reinstall linux-modules-'uname -r' linux-modules-extra-'uname -r'



                      After
                      ~$ sudo modprobe i915



                      ~$ sudo lspci -v | grep -A 10 -i vga
                      00:02.0 VGA compatible controller: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
                      Subsystem: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller
                      Flags: bus master, fast devsel, latency 0, IRQ 28
                      Memory at d0100000 (32-bit, non-prefetchable) [size=1M]
                      I/O ports at 20d0 [size=8]
                      [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
                      Capabilities:
                      Kernel driver in use: gma500
                      Kernel modules: gma500_gfx



                      and finally settle your grub:



                      ~$ sudo /etc/default/grub



                      video=LVDS-1:d is disabling LVDS-1 port which some kernel version might be directing the video to that port on default despite your mobo might not have such a port available to you



                      GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.modeset=1 video=LVDS-1:d"



                      ~$ sudo update-grub



                      my problem solved, credit due to https://bbs.archlinux.org/viewtopic.php?id=145648
                      which in turn drew his solution from
                      http://permalink.gmane.org/gmane.linux.mageia.devel/13667



                      I had spent many days trying to nail this issue. Hope my findings are of use to you linux supporters. Cheers






                      share|improve this answer


























                        0














                        my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
                        my distro: lubuntu 18.04
                        my problem description:
                        4.15.0-20-generic: displaying FHD1920x1080 ok
                        4.15.0-42-generic: blank screen after a few lines appear after grub screen



                        ~$ sudo lshw -C video
                        *-display UNCLAIMED

                        description: VGA compatible controller
                        product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller



                        First to make sure your firmwares and module libraries are intact for i915



                        ~$ modinfo i915
                        modinfo: ERROR: Module i915 not found.



                        ======solutions=====
                        make sure that both your "/lib/firmware/i915/" and "/lib/modules/'uname -r'/" are populated with files
                        I lost mine due to "apt autoremove"



                        ~$ sudo apt install --reinstall linux-modules-'uname -r' linux-modules-extra-'uname -r'



                        After
                        ~$ sudo modprobe i915



                        ~$ sudo lspci -v | grep -A 10 -i vga
                        00:02.0 VGA compatible controller: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
                        Subsystem: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller
                        Flags: bus master, fast devsel, latency 0, IRQ 28
                        Memory at d0100000 (32-bit, non-prefetchable) [size=1M]
                        I/O ports at 20d0 [size=8]
                        [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
                        Capabilities:
                        Kernel driver in use: gma500
                        Kernel modules: gma500_gfx



                        and finally settle your grub:



                        ~$ sudo /etc/default/grub



                        video=LVDS-1:d is disabling LVDS-1 port which some kernel version might be directing the video to that port on default despite your mobo might not have such a port available to you



                        GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.modeset=1 video=LVDS-1:d"



                        ~$ sudo update-grub



                        my problem solved, credit due to https://bbs.archlinux.org/viewtopic.php?id=145648
                        which in turn drew his solution from
                        http://permalink.gmane.org/gmane.linux.mageia.devel/13667



                        I had spent many days trying to nail this issue. Hope my findings are of use to you linux supporters. Cheers






                        share|improve this answer
























                          0












                          0








                          0






                          my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
                          my distro: lubuntu 18.04
                          my problem description:
                          4.15.0-20-generic: displaying FHD1920x1080 ok
                          4.15.0-42-generic: blank screen after a few lines appear after grub screen



                          ~$ sudo lshw -C video
                          *-display UNCLAIMED

                          description: VGA compatible controller
                          product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller



                          First to make sure your firmwares and module libraries are intact for i915



                          ~$ modinfo i915
                          modinfo: ERROR: Module i915 not found.



                          ======solutions=====
                          make sure that both your "/lib/firmware/i915/" and "/lib/modules/'uname -r'/" are populated with files
                          I lost mine due to "apt autoremove"



                          ~$ sudo apt install --reinstall linux-modules-'uname -r' linux-modules-extra-'uname -r'



                          After
                          ~$ sudo modprobe i915



                          ~$ sudo lspci -v | grep -A 10 -i vga
                          00:02.0 VGA compatible controller: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
                          Subsystem: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller
                          Flags: bus master, fast devsel, latency 0, IRQ 28
                          Memory at d0100000 (32-bit, non-prefetchable) [size=1M]
                          I/O ports at 20d0 [size=8]
                          [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
                          Capabilities:
                          Kernel driver in use: gma500
                          Kernel modules: gma500_gfx



                          and finally settle your grub:



                          ~$ sudo /etc/default/grub



                          video=LVDS-1:d is disabling LVDS-1 port which some kernel version might be directing the video to that port on default despite your mobo might not have such a port available to you



                          GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.modeset=1 video=LVDS-1:d"



                          ~$ sudo update-grub



                          my problem solved, credit due to https://bbs.archlinux.org/viewtopic.php?id=145648
                          which in turn drew his solution from
                          http://permalink.gmane.org/gmane.linux.mageia.devel/13667



                          I had spent many days trying to nail this issue. Hope my findings are of use to you linux supporters. Cheers






                          share|improve this answer












                          my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
                          my distro: lubuntu 18.04
                          my problem description:
                          4.15.0-20-generic: displaying FHD1920x1080 ok
                          4.15.0-42-generic: blank screen after a few lines appear after grub screen



                          ~$ sudo lshw -C video
                          *-display UNCLAIMED

                          description: VGA compatible controller
                          product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller



                          First to make sure your firmwares and module libraries are intact for i915



                          ~$ modinfo i915
                          modinfo: ERROR: Module i915 not found.



                          ======solutions=====
                          make sure that both your "/lib/firmware/i915/" and "/lib/modules/'uname -r'/" are populated with files
                          I lost mine due to "apt autoremove"



                          ~$ sudo apt install --reinstall linux-modules-'uname -r' linux-modules-extra-'uname -r'



                          After
                          ~$ sudo modprobe i915



                          ~$ sudo lspci -v | grep -A 10 -i vga
                          00:02.0 VGA compatible controller: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
                          Subsystem: Intel Corporation Atom Processor D2xxx/N2xxx Integrated Graphics Controller
                          Flags: bus master, fast devsel, latency 0, IRQ 28
                          Memory at d0100000 (32-bit, non-prefetchable) [size=1M]
                          I/O ports at 20d0 [size=8]
                          [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
                          Capabilities:
                          Kernel driver in use: gma500
                          Kernel modules: gma500_gfx



                          and finally settle your grub:



                          ~$ sudo /etc/default/grub



                          video=LVDS-1:d is disabling LVDS-1 port which some kernel version might be directing the video to that port on default despite your mobo might not have such a port available to you



                          GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.modeset=1 video=LVDS-1:d"



                          ~$ sudo update-grub



                          my problem solved, credit due to https://bbs.archlinux.org/viewtopic.php?id=145648
                          which in turn drew his solution from
                          http://permalink.gmane.org/gmane.linux.mageia.devel/13667



                          I had spent many days trying to nail this issue. Hope my findings are of use to you linux supporters. Cheers







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Dec 20 '18 at 9:01









                          Wilson Wong

                          11




                          11






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • 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.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • 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%2faskubuntu.com%2fquestions%2f201130%2fblack-screen-after-boot%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

                              flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                              Mangá

                               ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕