LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-11-2014, 02:31 AM   #1
freakTux
LQ Newbie
 
Registered: Jan 2014
Distribution: Slackware64-current
Posts: 26

Rep: Reputation: Disabled
Multiple screen entries in xorg.conf after xorgsetup


Hi all...
While I tried to install nvidia driver for my slackware I had to reconfigure xorg typing xorgsetup...this automatically rewrite a new xorg.conf, but now I can see that in my new xorg.conf there are many entries for the card, monitor and screen...exactly I have 8 entries for the card (card0 .... card7), other 8 for the monitor (monitor0 ...monitor7) and 8 for the screen (screen0 ...screen7).
At the top of my xorg.conf I have the
Code:
Section "ServerLayout" 
        Identifier     "X.org Configured" 
        Screen      0  "Screen0" 0 0 
        Screen      1  "Screen1" RightOf "Screen0" 
        Screen      2  "Screen2" RightOf "Screen1" 
        Screen      3  "Screen3" RightOf "Screen2" 
        Screen      4  "Screen4" RightOf "Screen3" 
        Screen      5  "Screen5" RightOf "Screen4" 
        Screen      6  "Screen6" RightOf "Screen5" 
        Screen      7  "Screen7" RightOf "Screen6" 
        InputDevice    "Mouse0" "CorePointer" 
        InputDevice    "Keyboard0" "CoreKeyboard" 
EndSection
Why my xorg.conf has so many monitors and cards??What is the real card and monitor that my system is using?Thanks
 
Old 02-11-2014, 12:06 PM   #2
Finlay
Senior Member
 
Registered: Mar 2003
Location: Seattle
Distribution: Slackware ?-14.1
Posts: 1,029

Rep: Reputation: 47
what version of slackware are you running?
is it stock xorg or do you have a different version?
 
Old 02-12-2014, 07:00 AM   #3
freakTux
LQ Newbie
 
Registered: Jan 2014
Distribution: Slackware64-current
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Finlay View Post
what version of slackware are you running?
is it stock xorg or do you have a different version?
My slackware is 14.1 64bit...xorg server is the stock...
 
Old 02-12-2014, 09:58 AM   #4
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
I've got the same setup, Slackware64, 14.1, NVidia driver. I've only just checked my xorg.conf, since you mentioned it, and find I have 4 screens listed. Very strange!
Code:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    Screen      2  "Screen2" RightOf "Screen1"
    Screen      3  "Screen3" RightOf "Screen2"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
It doesn't seem to have any negative effects, though. Not sure what to do, so suggest leaving it as it is for now.
This should be the only one:
Code:
Screen      0  "Screen0" 0 0
P.S.
This probably happens with other distros, not a Slackware problem.

Last edited by brianL; 02-12-2014 at 10:30 AM.
 
Old 02-13-2014, 04:29 AM   #5
freakTux
LQ Newbie
 
Registered: Jan 2014
Distribution: Slackware64-current
Posts: 26

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by brianL View Post
I've got the same setup, Slackware64, 14.1, NVidia driver. I've only just checked my xorg.conf, since you mentioned it, and find I have 4 screens listed. Very strange!
Code:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    Screen      2  "Screen2" RightOf "Screen1"
    Screen      3  "Screen3" RightOf "Screen2"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
It doesn't seem to have any negative effects, though. Not sure what to do, so suggest leaving it as it is for now.
This should be the only one:
Code:
Screen      0  "Screen0" 0 0
P.S.
This probably happens with other distros, not a Slackware problem.

The strange thing is that my Screen0 has the Card0 (which uses the driver Intel, and not the nvidia)...the only cards that use the nvidia driver are the Card3 and Card4, associated with Screen3 and Screen4...this sounds like very strange...How can I check what Screen entry am I using?The only thing that I know is that if I check the nvidia driver with
Code:
lsmod|grep nvidia
I can see that the modules are loaded at boot time...
 
Old 02-13-2014, 08:06 AM   #6
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
I've just opened NVidia X Server settings, in the Settings menu on KDE, that tells me what screen number (0) I'm using, and other details. Try it.
 
Old 02-13-2014, 08:37 AM   #7
Finlay
Senior Member
 
Registered: Mar 2003
Location: Seattle
Distribution: Slackware ?-14.1
Posts: 1,029

Rep: Reputation: 47
have you tried renaming your xorg.conf and then running as root:
nvidia-xconfig
 
Old 02-13-2014, 08:59 AM   #8
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
I let the installer run that, to create an xorg.conf. Those multiple screen entries are in that file:
Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 319.49  (buildmeister@swio-display-x64-rhel04-03)  Tue Aug 13 20:42:18 PDT 2013
Anyway, like I said, it doesn't seem to be causing any problems. It's just strange, having multiple screen entries fo a single monitor system.

Last edited by brianL; 02-13-2014 at 09:02 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Various xorg.conf examples for using (multiple) cards + (multiple) monitors GrapefruiTgirl Linux - Hardware 7 10-13-2022 02:04 PM
Changing GUI screen resolution in /etc/XOrg.config (aka xorg.conf) stf92 Linux - General 0 07-10-2012 03:48 AM
How do I generate the entries for monitor in xorg.conf? rexmo Linux - Newbie 8 03-05-2009 11:04 AM
multiple DNS entries to /etc/resolv.conf noir911 Linux - Networking 1 02-26-2007 11:43 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration