Intel Integrated Graphics driver problem on Intel Atom D2500HN
my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
my distro: lubuntu 18.04
My display: a FullHD Samsung LS22F350FHEXXM with a VGA and HDMI.
my problem description:
tested on kernels
4.15.0-20-generic:
4.15.0-42-generic: blank/black screen after a few lines appear after grub screen. Only the VGA port of display is connected. And the display's power LED was blinking - indicating no in-coming video signal.
~$ sudo lshw -C video
*-display UNCLAIMED
description: VGA compatible controller
product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller
~$ modinfo i915
modinfo: ERROR: Module i915 not found.
18.04
add a comment |
my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
my distro: lubuntu 18.04
My display: a FullHD Samsung LS22F350FHEXXM with a VGA and HDMI.
my problem description:
tested on kernels
4.15.0-20-generic:
4.15.0-42-generic: blank/black screen after a few lines appear after grub screen. Only the VGA port of display is connected. And the display's power LED was blinking - indicating no in-coming video signal.
~$ sudo lshw -C video
*-display UNCLAIMED
description: VGA compatible controller
product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller
~$ modinfo i915
modinfo: ERROR: Module i915 not found.
18.04
4
Please edit your question and remove the 'solution' part as this is a Q&A website, questions and answers should be posted separately. Then post the solution below by clicking answer your question button. It's absolutely fine to do that. Also removed 'SOLVED' from the title, that's not how it's done here. You'll be able to 'accept' your answer after two days. P.S. Also use code formatting.
– pomsky
Dec 20 '18 at 9:08
add a comment |
my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
my distro: lubuntu 18.04
My display: a FullHD Samsung LS22F350FHEXXM with a VGA and HDMI.
my problem description:
tested on kernels
4.15.0-20-generic:
4.15.0-42-generic: blank/black screen after a few lines appear after grub screen. Only the VGA port of display is connected. And the display's power LED was blinking - indicating no in-coming video signal.
~$ sudo lshw -C video
*-display UNCLAIMED
description: VGA compatible controller
product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller
~$ modinfo i915
modinfo: ERROR: Module i915 not found.
18.04
my mobo is Intel D2500HN which has only 1 VGA port and no LVDS-1
my distro: lubuntu 18.04
My display: a FullHD Samsung LS22F350FHEXXM with a VGA and HDMI.
my problem description:
tested on kernels
4.15.0-20-generic:
4.15.0-42-generic: blank/black screen after a few lines appear after grub screen. Only the VGA port of display is connected. And the display's power LED was blinking - indicating no in-coming video signal.
~$ sudo lshw -C video
*-display UNCLAIMED
description: VGA compatible controller
product: Atom Processor D2xxx/N2xxx Integrated Graphics Controller
~$ modinfo i915
modinfo: ERROR: Module i915 not found.
18.04
18.04
edited Dec 21 '18 at 9:15
asked Dec 20 '18 at 9:05
Wilson Wong
11
11
4
Please edit your question and remove the 'solution' part as this is a Q&A website, questions and answers should be posted separately. Then post the solution below by clicking answer your question button. It's absolutely fine to do that. Also removed 'SOLVED' from the title, that's not how it's done here. You'll be able to 'accept' your answer after two days. P.S. Also use code formatting.
– pomsky
Dec 20 '18 at 9:08
add a comment |
4
Please edit your question and remove the 'solution' part as this is a Q&A website, questions and answers should be posted separately. Then post the solution below by clicking answer your question button. It's absolutely fine to do that. Also removed 'SOLVED' from the title, that's not how it's done here. You'll be able to 'accept' your answer after two days. P.S. Also use code formatting.
– pomsky
Dec 20 '18 at 9:08
4
4
Please edit your question and remove the 'solution' part as this is a Q&A website, questions and answers should be posted separately. Then post the solution below by clicking answer your question button. It's absolutely fine to do that. Also removed 'SOLVED' from the title, that's not how it's done here. You'll be able to 'accept' your answer after two days. P.S. Also use code formatting.
– pomsky
Dec 20 '18 at 9:08
Please edit your question and remove the 'solution' part as this is a Q&A website, questions and answers should be posted separately. Then post the solution below by clicking answer your question button. It's absolutely fine to do that. Also removed 'SOLVED' from the title, that's not how it's done here. You'll be able to 'accept' your answer after two days. P.S. Also use code formatting.
– pomsky
Dec 20 '18 at 9:08
add a comment |
1 Answer
1
active
oldest
votes
First to make sure your firmware and module libraries are intact for i915
======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 which
~$ 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: <access denied>
Kernel driver in use: gma500
Kernel modules: gma500_gfx
and finally settle your grub:
~$ sudo <your_editor> /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
add a comment |
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
});
}
});
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%2faskubuntu.com%2fquestions%2f1103313%2fintel-integrated-graphics-driver-problem-on-intel-atom-d2500hn%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
First to make sure your firmware and module libraries are intact for i915
======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 which
~$ 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: <access denied>
Kernel driver in use: gma500
Kernel modules: gma500_gfx
and finally settle your grub:
~$ sudo <your_editor> /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
add a comment |
First to make sure your firmware and module libraries are intact for i915
======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 which
~$ 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: <access denied>
Kernel driver in use: gma500
Kernel modules: gma500_gfx
and finally settle your grub:
~$ sudo <your_editor> /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
add a comment |
First to make sure your firmware and module libraries are intact for i915
======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 which
~$ 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: <access denied>
Kernel driver in use: gma500
Kernel modules: gma500_gfx
and finally settle your grub:
~$ sudo <your_editor> /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
First to make sure your firmware and module libraries are intact for i915
======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 which
~$ 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: <access denied>
Kernel driver in use: gma500
Kernel modules: gma500_gfx
and finally settle your grub:
~$ sudo <your_editor> /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
answered Dec 21 '18 at 9:21
Wilson Wong
11
11
add a comment |
add a comment |
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.
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%2faskubuntu.com%2fquestions%2f1103313%2fintel-integrated-graphics-driver-problem-on-intel-atom-d2500hn%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
4
Please edit your question and remove the 'solution' part as this is a Q&A website, questions and answers should be posted separately. Then post the solution below by clicking answer your question button. It's absolutely fine to do that. Also removed 'SOLVED' from the title, that's not how it's done here. You'll be able to 'accept' your answer after two days. P.S. Also use code formatting.
– pomsky
Dec 20 '18 at 9:08