You are not logged in.

#1 2010-09-16 10:59:44

solo9300
Member
Registered: 2010-08-18
Posts: 13

Multiple monitors Problem ?

Hello all,

I am trying to setup xorg.conf for 2 monitors
     1. Labtop monitors (LVDS1)
     2. External monitors (HDMI1)

so i need the  External monitors  to be the man screen and Labtop monitors to be the External for it. However, all i got so far is a duble of one screen display on both screen. so if i open something it will be display on both screen.

$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
VGA1 disconnected (normal left inverted right x axis y axis)
LVDS1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 382mm x 214mm
   1600x900       60.3*+
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
HDMI1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 520mm x 324mm
   1920x1080      60.0*+
   1280x1024      60.0  
   1360x768       59.8  
   1280x720       59.7  
   1024x768       60.0  
   800x600        60.3  
   720x480        59.9  
   640x480        60.0  
DP1 disconnected (normal left inverted right x axis y axis)
$ lspci
00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 18)
00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 18)
00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
00:1a.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05)
00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05)
00:1d.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5)
00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
02:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe (rev 01)
04:00.0 Network controller: Atheros Communications Inc. AR928X Wireless Network Adapter (PCI-Express) (rev 01)
ff:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 05)
ff:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 05)
ff:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 05)
ff:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 05)
ff:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 05)
ff:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 05)



Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen1"   0 0
        Screen      1  "Screen0" RightOf "Screen1"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc/"
    FontPath     "/usr/share/fonts/TTF/"
    FontPath     "/usr/share/fonts/OTF/"
    FontPath     "/usr/share/fonts/Type1/"
    FontPath     "/usr/share/fonts/100dpi/"
    FontPath     "/usr/share/fonts/75dpi/"
EndSection
Section "Module"
    Load  "dri2"
    Load  "record"
    Load  "extmod"
    Load  "dri"
    Load  "dbe"
    Load  "glx"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection
Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection
Section "Device"
    Option      "Monitor-LVDS1" "Monitor0"
    Identifier  "Card0"
    Driver      "intel"
    VendorName  "Intel Corporation"
    BoardName   "Core Processor Integrated Graphics Controller"
    BusID       "PCI:0:2:0"
    #Screen      0
EndSection
Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport       0 0
                  Depth        24
        Modes          "1600x900"
        EndSubSection
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "LG"
    ModelName    "FULLHD"
EndSection
Section "Device"
        Option      "Monitor-HDMI1" "Monitor1"
        Identifier  "Card1"
        Driver      "intel"
        VendorName  "Intel Corporation"
        BoardName   "Core Processor Integrated Graphics Controller"
        BusID       "PCI:0:2:0"
           #Screen      1
EndSection 
Section "Screen"
        Identifier "Screen1"
        Device     "Card1"
        Monitor    "Monitor1"
        SubSection "Display"
                   Viewport       0 0
                Depth         24
        Modes          "1920x1080"
        EndSubSection
EndSection


any help would be much appreciated.

Offline

#2 2010-09-16 12:17:28

Cyrusm
Member
From: Bozeman, MT
Registered: 2007-11-15
Posts: 1,053

Re: Multiple monitors Problem ?

This should get you all set up http://www.thinkwiki.org/wiki/Xorg_RandR_1.2


Hofstadter's Law:
           It always takes longer than you expect, even when you take into account Hofstadter's Law.

Offline

#3 2010-09-16 12:33:43

Knute
Member
From: Minot, ND
Registered: 2009-03-17
Posts: 604

Re: Multiple monitors Problem ?

You have commented out your screen lines in your device sections.   You could try uncommenting them.

Another option, since it appears that you have one video card is to use metamodes to describe the setups that you want.  It's what I'm currently using with my nvidia card.  Not sure if the same options are available for an Intel card or not.


Knute

Offline

#4 2010-09-16 12:56:51

solo9300
Member
Registered: 2010-08-18
Posts: 13

Re: Multiple monitors Problem ?

Cyrusm wrote:

This should get you all set up http://www.thinkwiki.org/wiki/Xorg_RandR_1.2

it did get me all set up.

here what i did

xrandr --output HDMI1 --auto --output LVDS1 --auto right

thx alot Cyrusm

Offline

#5 2010-09-16 13:03:05

solo9300
Member
Registered: 2010-08-18
Posts: 13

Re: Multiple monitors Problem ?

Knute wrote:

You have commented out your screen lines in your device sections.   You could try uncommenting them.

Another option, since it appears that you have one video card is to use metamodes to describe the setups that you want.  It's what I'm currently using with my nvidia card.  Not sure if the same options are available for an Intel card or not.

i try uncommenting the screen lines but the X server crash. thank for the help but solve the problem.

thank you all

Offline

Board footer

Powered by FluxBB