LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-20-2015, 02:34 PM   #1
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,296

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
HD4000 Graphics. Fine tuning on Multiple screens Pls.


I am trying to set up xorg.conf.d for running Extended mode on my HD4000 graphics. I'm close, but not quite there. My setup is
Screen0: Main Screen 1600x900
Screen1: HDMI at 1920x1080 OR 1280x720
Screen2: The VGA Plug – Resolution?? (I have 1440x900 atm)
I can use screen 1 or screen 2 but not both. I am not trying to break records.

Xorg does start each screen at an appropriate resolution. But it sets a Virtual screen on the bigger one and ignores my left/right stuff. It's trying to clone them. I thought the HD4000 did some extended mode where 2 screen sizes were belted out? Has anyone got that singing?

Code:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    Screen      2  "Screen2" RightOf "Screen0"
EndSection

Section "Monitor"
    Identifier     "Main"
    VendorName     "Samsung"
    ModelName      "TFT_Display"
    HorizSync       30.0 - 75.0
    VertRefresh     50.0 - 90.0
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "VGA2"
    VendorName     "Unplugged"
    ModelName      "Nothing Plugged In"
    HorizSync       30.0 - 75.0
    VertRefresh     50.0 - 90.0
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier      "HDMI1"
    VendorName      "Benq"
    ModelName       "Benq Projector"
    HorizSync       15.73 - 67.50
    VertRefresh     59.94 - 60.0
#    Modeline "1280x720"  74.25 1280 1390 1430 1650 720 725 730 750 +HSync +VSync
EndSection

Section "Device"
    Identifier  "Card0"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
    Identifier  "Card1"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
    Identifier  "Card2"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Main"
    DefaultDepth    24
    SubSection     "Display"
#        Modes     "1600x900" "1280x720"  
        Depth       24
    EndSubSection   
EndSection

Section "Screen"
    Identifier "Screen1"
    Device     "Card1"
    Monitor    "HDMI1"
    DefaultDepth    24
    SubSection     "Display"
#        Modes     "1280x720" 
        Depth       24
    EndSubSection   
EndSection

Section "Screen"
    Identifier "Screen2"
    Device     "Card2"
    Monitor    "VGA2"
    DefaultDepth    24
    SubSection "Display"
#        Modes     "1280x720"  
        Depth     24
    EndSubSection
EndSection
 
Old 03-20-2015, 06:29 PM   #2
TracyTiger
Member
 
Registered: Apr 2011
Location: California, USA
Distribution: Slackware
Posts: 528

Rep: Reputation: 273Reputation: 273Reputation: 273
Below is the pertinent parts of /etc/X11/xorg.conf that I've used the last couple of years. The CPU is an Intel i5-2400. Both of my screens are identical.

Perhaps something in my dual screen configuration will help some.

Code:
# **********************************************************************
# Monitor section
# **********************************************************************

Section "Monitor"
    Identifier "Left LG Monitor"
EndSection

Section "Monitor"
    Identifier "Right LG Monitor"
    Option "Position" "1920 0"
EndSection

## LG E2260 VT LED Monitors
## HorizSync 30-83
## VertRefresh 56-61

# **********************************************************************
# Graphics device section
# **********************************************************************

Section "Device"
    Identifier	"Intel HD"
    Driver	"intel"
    Option "Monitor-HDMI2" "Right LG Monitor"
    Option "Monitor-HDMI1" "Left LG Monitor"
EndSection

# **********************************************************************
# Screen sections
# **********************************************************************

Section "Screen"
    Identifier "Screen Left"
    Device	"Intel HD"
    Monitor	"Left LG Monitor"
    DefaultDepth 24
    Subsection "Display"
        Depth 24
        Modes "1920x1080"
    EndSubsection
EndSection

Section "Screen"
    Identifier "Screen Right"
    Device	"Intel HD"
    Monitor	"Right LG Monitor"
    DefaultDepth 24
    Subsection "Display"
        Depth 24
        Modes "1920x1080"
    EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

Section "ServerLayout"
    Identifier "Dual Monitor Layout"
    Screen "Screen Left"
    Screen "Screen Right" RightOf "Screen Left"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection

# **********************************************************************
 
1 members found this post helpful.
Old 03-21-2015, 04:20 AM   #3
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,296

Original Poster
Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
Yeah, thanks - I will borrow a line or two. Yours is well laid out. But for your set up, cloning screens will work. For mine, it won't. with 2 @ 1920x1080, you can set a Virtual Screen size. I can't.

My 1600x900 laptop screen is unlike anything I am plugging in.
HDMI gets monitor at 1920x1080 and a projector at 1280x720
VGA gets monitors at up to 1440x900.

So I can't set Virtual Screen size; that's the big issue. And I can't set modes. I am getting my biggest screen cloned, when I want the Extended thing with separate outputs. I don't even know if the HD4000 support that fully. Intel _SAY_ it does, but vlc keeps throwing errors about 'can't resize display'. when you run a movie. Mplayer does better.
 
  


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
Intel graphics HD4000 fails to work ericls Linux - Hardware 17 05-21-2014 11:57 AM
[SOLVED] Intel HD4000 graphics performance donreid Linux - Hardware 12 06-08-2013 01:59 AM
Graphics problem; multiple screens edvdrmark Linux - Hardware 18 12-31-2012 04:23 AM
Managing multiple screens: redirecting video output and switching between screens simopal6 Linux - Hardware 2 11-13-2007 06:08 AM
nvidia graphics driver with multiple screens miko3k Linux - Hardware 2 11-24-2005 05:58 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:06 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