Portál AbcLinuxu, 12. května 2025 11:02

Dotaz: dve plochy, i810

16.12.2006 16:06 pierre
dve plochy, i810
Přečteno: 346×
Odpovědět | Admin
Ahoj, Riesim uz dva dni problem, ako na vystue pre externy monitor zobrazovat jednu z procovnych ploch. Mam notebook a na jeho LCD chcem mat napr plochu 1 a na externom plochu 2, podarilo sa mi akurat spojazdnit, ze mi zobrazuje na externom monitore tu istu plochu, zmenou konfiguraku xorg. No obraz na externom monitore je orezany (chyba cca 5cm z lava) a obnovovacia frekvencia je 62Hz. Nevie mi niekto poradit, ako tento problem alebo problem z plochami vyriesit. (precital som uz vsetky clanky co su tu a man. xorg budem vediet pomaly naspamat) (debian etch 4.0, GK intel GMA 945) casti xorg ktore som menil :

Section "Device"
        Identifier      "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        #added_by mrekucci_at_12.12.2006
        Option          "XAANoOffscreenPixmaps" "true"
        Screen          0
        Option          "ConnectedMonitor"      "Generic Monitor"
        #end_of_added
EndSection

Section "Device"
        Identifier      "Intel Out"
        Driver          "i810"
        BusID           "PCI:0:2:1"
        #added_by mrekucci_at_12.12.2006
        Option          "XAANoOffscreenPixmaps" "true"
        Screen          1
        Option          "MonitorLayout" "CRT,LFP"
        Option          "VBERestore"    "no"
        Option          "DevicePresence"        "yes"
        Option          "VertRefresh"   "85"
        Option          "ConnectedMonitor"      "Out Monitor"
        Option          "RenderAccel"   "true"
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"
        Option          "DPMS"
EndSection

Section "Monitor"
        Identifier      "Out Monitor"
        HorizSync       65 - 70
        VertRefresh     50 - 90
        Option          "DPMS"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1280x800"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1280x800"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1280x800"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1280x800"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1280x800"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1280x800"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "Screen 2"
        Device          "Intel Out"
        Monitor         "Out Monitor"
        DefaultDepth    24
        Option          "ConectedMonitor"       "CRT,TV"
        Option          "UseDisplayDevice"      "CRT"
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          0       "Default Screen" LeftOf "Screen2"
        Screen          1       "Screen 2" 0 0
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Synaptics Touchpad"
EndSection

Section "DRI"
        Mode    0666
EndSection

Section "Extensions"
    Option      "Composite"     "Enable"
EndSection
Nástroje: Začni sledovat (2) ?Zašle upozornění na váš email při vložení nového komentáře.

Odpovědi

27.12.2006 18:07 Ivo Danihelka | skóre: 3
Rozbalit Rozbalit vše Re: dve plochy, i810
Odpovědět | | Sbalit | Link | Blokovat | Admin
Zobrazit jinou plochu asi nejde, ale jdou jiné možnosti: - mít na každém monitoru separátní X server - mít rozlišení obrazovky přes dva monitory (tj. Xinerama)

Ta Xinemara je asi lepší, protože dovoluje přetahovat okna z jednoho monitoru na druhý.
CIJOML avatar 27.12.2006 21:46 CIJOML | skóre: 58 | Praha
Rozbalit Rozbalit vše Re: dve plochy, i810
Odpovědět | | Sbalit | Link | Blokovat | Admin
Section "Device"
        Identifier      "855-0"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        Option          "VBERestore"    "TRUE"
        Option          "DevicePresence" "true"
        Option          "MonitorLayout" "CRT,LFP"
        #Option "FixedPipe" "B"
        #Option "FlipPrimary" "true"

        Screen          0
EndSection

Section "Device"
        Identifier      "855-1"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        Option "FixedPipe" "B"
        Screen          1
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"
        Option          "DPMS"
EndSection

Section "Monitor"
        Identifier      "External Monitor"
        Option          "DPMS"
        #HorizSync      24.0 - 80.0
        #VertRefresh    49.0 - 75.0
        Option          "DevicePresence" "true"
        # 1280x1024 @ 75 hsync: 80.0 kHz
        #ModeLine "1280x1024@75" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +v
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "855-0"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                #Modes          "1280x1024" "1024x768"
                Modes           "1024x768"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "Screen2"
        Device          "855-1"
        Monitor         "External Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                #Modes           "1280x1024" "1024x768"
                Modes           "1280x1024"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          0 "Default Screen" 0 0
        Screen          1 "Screen2" RightOf "Default Screen"
        Option          "Xinerama" "true"
        InputDevice     "Generic Keyboard" "CoreKeyboard"
        InputDevice     "Touchpad" "CorePointer"
        InputDevice     "Optical_Genius_USB" "AlwaysCore"
        InputDevice     "Bluetooth Mouse" "AlwaysCore"
EndSection

Zajimave sekce - funkcni design dualhead

Založit nové vláknoNahoru

Tiskni Sdílej: Linkuj Jaggni to Vybrali.sme.sk Google Del.icio.us Facebook

ISSN 1214-1267, (c) 1999-2007 Stickfish s.r.o.