Arch Linux : no screen found with nvidia graphics card
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
Installing arch linux+XFCE4 on MSI laptop with nvidia gtx950M and intel 530 graphics card. When I type startx
no screen found. Error is shown.
Full /var/log/Xorg.0.log
and xorg.conf
.
The output of "lspci | grep -E "VGA|3D"
is
00:02.0 VGA compatible controller: Intel Corporation Skylake Integrated Graphics (rev 06)
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 950M] (rev a2)
I am following these wiki links:
- NVIDIA
- Bumblebee
- NVIDIA Optimus
First tried using 2nd link(bumblebee) and then tried using only nvidia graphics or intel.
If I delete the xorg.conf
file and install xf86-video-vesa
driver i can do startx
and go inside DE but very sluggish, whenever mouse is over app icons or panel it freezes for few secs may be this is due to now hardware acceleration.
NB : there is one question "No screens found" while starting Xorg with startx after installing Nvidia drivers in Virtualbox already no log available and no accepted answer.
arch-linux nvidia desktop-environment
bumped to the homepage by Community⦠2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |Â
up vote
1
down vote
favorite
Installing arch linux+XFCE4 on MSI laptop with nvidia gtx950M and intel 530 graphics card. When I type startx
no screen found. Error is shown.
Full /var/log/Xorg.0.log
and xorg.conf
.
The output of "lspci | grep -E "VGA|3D"
is
00:02.0 VGA compatible controller: Intel Corporation Skylake Integrated Graphics (rev 06)
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 950M] (rev a2)
I am following these wiki links:
- NVIDIA
- Bumblebee
- NVIDIA Optimus
First tried using 2nd link(bumblebee) and then tried using only nvidia graphics or intel.
If I delete the xorg.conf
file and install xf86-video-vesa
driver i can do startx
and go inside DE but very sluggish, whenever mouse is over app icons or panel it freezes for few secs may be this is due to now hardware acceleration.
NB : there is one question "No screens found" while starting Xorg with startx after installing Nvidia drivers in Virtualbox already no log available and no accepted answer.
arch-linux nvidia desktop-environment
bumped to the homepage by Community⦠2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Installing arch linux+XFCE4 on MSI laptop with nvidia gtx950M and intel 530 graphics card. When I type startx
no screen found. Error is shown.
Full /var/log/Xorg.0.log
and xorg.conf
.
The output of "lspci | grep -E "VGA|3D"
is
00:02.0 VGA compatible controller: Intel Corporation Skylake Integrated Graphics (rev 06)
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 950M] (rev a2)
I am following these wiki links:
- NVIDIA
- Bumblebee
- NVIDIA Optimus
First tried using 2nd link(bumblebee) and then tried using only nvidia graphics or intel.
If I delete the xorg.conf
file and install xf86-video-vesa
driver i can do startx
and go inside DE but very sluggish, whenever mouse is over app icons or panel it freezes for few secs may be this is due to now hardware acceleration.
NB : there is one question "No screens found" while starting Xorg with startx after installing Nvidia drivers in Virtualbox already no log available and no accepted answer.
arch-linux nvidia desktop-environment
Installing arch linux+XFCE4 on MSI laptop with nvidia gtx950M and intel 530 graphics card. When I type startx
no screen found. Error is shown.
Full /var/log/Xorg.0.log
and xorg.conf
.
The output of "lspci | grep -E "VGA|3D"
is
00:02.0 VGA compatible controller: Intel Corporation Skylake Integrated Graphics (rev 06)
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 950M] (rev a2)
I am following these wiki links:
- NVIDIA
- Bumblebee
- NVIDIA Optimus
First tried using 2nd link(bumblebee) and then tried using only nvidia graphics or intel.
If I delete the xorg.conf
file and install xf86-video-vesa
driver i can do startx
and go inside DE but very sluggish, whenever mouse is over app icons or panel it freezes for few secs may be this is due to now hardware acceleration.
NB : there is one question "No screens found" while starting Xorg with startx after installing Nvidia drivers in Virtualbox already no log available and no accepted answer.
arch-linux nvidia desktop-environment
arch-linux nvidia desktop-environment
edited Apr 13 '17 at 12:36
Communityâ¦
1
1
asked Apr 10 '16 at 18:10
Marungsha Brahma
614
614
bumped to the homepage by Community⦠2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community⦠2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
I don't know if it will help but try adding
BusID "PCI:1:0:0"
Or something like that to your Section "Device"
that matches your graphic card in your /etc/X11/xorgs.conf
. I had no external display showing on my laptop and my external screens only appeared after doing so.
The following command could help you too
sudo lshw -c display
Mine displayed bus info: pci@0000:01:00.0
, which you write PCI:1:0:0
in grub
config
My graphic cards are different than yours, but my xorg.conf
device section looks like this:
Section "Device"
Identifier "k1100m"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro K1100M"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "intelhd4000"
Driver "intel"
BusID "PCI:2:0:0"
EndSection
This command can also provide you with some infos:
nvidia-xconfig --query-gpu-info
Good luck!
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I don't know if it will help but try adding
BusID "PCI:1:0:0"
Or something like that to your Section "Device"
that matches your graphic card in your /etc/X11/xorgs.conf
. I had no external display showing on my laptop and my external screens only appeared after doing so.
The following command could help you too
sudo lshw -c display
Mine displayed bus info: pci@0000:01:00.0
, which you write PCI:1:0:0
in grub
config
My graphic cards are different than yours, but my xorg.conf
device section looks like this:
Section "Device"
Identifier "k1100m"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro K1100M"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "intelhd4000"
Driver "intel"
BusID "PCI:2:0:0"
EndSection
This command can also provide you with some infos:
nvidia-xconfig --query-gpu-info
Good luck!
add a comment |Â
up vote
0
down vote
I don't know if it will help but try adding
BusID "PCI:1:0:0"
Or something like that to your Section "Device"
that matches your graphic card in your /etc/X11/xorgs.conf
. I had no external display showing on my laptop and my external screens only appeared after doing so.
The following command could help you too
sudo lshw -c display
Mine displayed bus info: pci@0000:01:00.0
, which you write PCI:1:0:0
in grub
config
My graphic cards are different than yours, but my xorg.conf
device section looks like this:
Section "Device"
Identifier "k1100m"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro K1100M"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "intelhd4000"
Driver "intel"
BusID "PCI:2:0:0"
EndSection
This command can also provide you with some infos:
nvidia-xconfig --query-gpu-info
Good luck!
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I don't know if it will help but try adding
BusID "PCI:1:0:0"
Or something like that to your Section "Device"
that matches your graphic card in your /etc/X11/xorgs.conf
. I had no external display showing on my laptop and my external screens only appeared after doing so.
The following command could help you too
sudo lshw -c display
Mine displayed bus info: pci@0000:01:00.0
, which you write PCI:1:0:0
in grub
config
My graphic cards are different than yours, but my xorg.conf
device section looks like this:
Section "Device"
Identifier "k1100m"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro K1100M"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "intelhd4000"
Driver "intel"
BusID "PCI:2:0:0"
EndSection
This command can also provide you with some infos:
nvidia-xconfig --query-gpu-info
Good luck!
I don't know if it will help but try adding
BusID "PCI:1:0:0"
Or something like that to your Section "Device"
that matches your graphic card in your /etc/X11/xorgs.conf
. I had no external display showing on my laptop and my external screens only appeared after doing so.
The following command could help you too
sudo lshw -c display
Mine displayed bus info: pci@0000:01:00.0
, which you write PCI:1:0:0
in grub
config
My graphic cards are different than yours, but my xorg.conf
device section looks like this:
Section "Device"
Identifier "k1100m"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "Quadro K1100M"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "intelhd4000"
Driver "intel"
BusID "PCI:2:0:0"
EndSection
This command can also provide you with some infos:
nvidia-xconfig --query-gpu-info
Good luck!
answered Aug 18 '16 at 22:00
GabLeRoux
259212
259212
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f275534%2farch-linux-no-screen-found-with-nvidia-graphics-card%23new-answer', 'question_page');
);
Post as a guest
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
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
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