Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[XORG] GForce 6800 et Dual Screen
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index French
View previous topic :: View next topic  
Author Message
chrissou
Guru
Guru


Joined: 22 Mar 2004
Posts: 473

PostPosted: Wed May 25, 2005 10:37 am    Post subject: [XORG] GForce 6800 et Dual Screen Reply with quote

Bonjour @ tous voilà j'aimerais faire fonctionner sur mon portable le port DVI pour afficher sur un écran LCD externe
Ma carte graphique est une Gforce 6800 en pci express, j'ai tenté pas mal de config mais rien ne fonctionne sur mon écran externe

voici mon xorg.conf

Code:

Section "Files"

    RgbPath     "/usr/lib/X11/rgb"

    FontPath    "/home/zobi/.fonts/artwiz-aleczapka-en-1.3:unscaled"
    FontPath    "/usr/share/fonts/local/"
    FontPath    "/usr/share/fonts/misc/"
    FontPath    "/usr/share/fonts/75dpi/:unscaled"
    FontPath    "/usr/share/fonts/100dpi/:unscaled"
    FontPath    "/usr/share/fonts/Type1/"
    FontPath    "/usr/share/fonts/TTF/"
    FontPath    "/usr/share/fonts/CID/"
    FontPath    "/usr/share/fonts/Speedo/"
    FontPath    "/usr/share/fonts/75dpi/"
    FontPath    "/usr/share/fonts/100dpi/"

EndSection

Section "Extensions"
        Option "Composite" "Enable"
EndSection


# **********************************************************************
# Module section -- this is an optional section which is used to specify
# which run-time loadable modules to load when the X server starts up.
# **********************************************************************

Section "Module"


    Load        "dbe"
    SubSection  "extmod"
        Option  "omit xfree86-dga"
    EndSubSection
    Load        "type1"
    Load        "freetype"
    Load        "synaptics"
    Load        "glx"
EndSection


# **********************************************************************
# Server flags section.  This contains various server-wide Options.
# **********************************************************************

Section "ServerFlags"

    Option      "blank time"    "10"    # 10 minutes
    Option      "standby time"  "20"
    Option      "suspend time"  "30"
    Option      "off time"      "60"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier  "Keyboard1"
    Driver      "keyboard"
#    Option     "AutoRepeat"    "500 5"
    Option      "XkbModel"      "pc105"
    Option      "XkbLayout"     "fr"

EndSection
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************


Section "InputDevice"

        Driver "synaptics"
        Identifier "touchpad"
        Option "Device" "/dev/input/mouse0"
        Option "Protocol" "auto-dev"
        Option "LeftEdge" "120"
        Option "RightEdge" "830"
        Option "TopEdge" "120"
        Option "BottomEdge" "650"
        Option "FingerLow" "14"
        Option "FingerHigh" "15"
        Option "MaxTapTime" "180"
        Option "MaxTapMove" "110"
        Option "EmulateMidButtonTime" "75"
        Option "VertScrollDelta" "20"
        Option "HorizScrollDelta" "20"
        Option "MinSpeed" "0.5"
        Option "MaxSpeed" "1.2"
        Option "AccelFactor" "0.01"
        Option "EdgeMotionMinSpeed" "15"
        Option "EdgeMotionMaxSpeed" "15"
        Option "UpDownScrolling" "1"
        Option "CircularScrolling" "1"
        Option "CircScrollDelta" "0.1"
        Option "CircScrollTrigger" "2"

EndSection

Section "InputDevice"
    Identifier  "mulot_ext"
    Driver      "mouse"
    Option      "Protocol"      "Auto"
    Option      "Device"        "/dev/input/mice"
    Option      "ZAxisMapping" "4 5"
EndSection

Section "Modes"
        Identifier "16:10"
        ModeLine "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087
        ModeLine "1680x1050" 188.1 1680 1800 1984 2288 1050 1051 1054 1096
        ModeLine "1680x1050" 214.5 1680 1800 1984 2288 1050 1051 1054 1103
        ModeLine "1680x1050" 256.2 1680 1808 1992 2304 1050 1051 1054 1112
        ModeLine "1920x1200" 193.16 1920 2048 2256 2592 1200 1201 1204 1242
        -Hsync +Vsync
EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

Section "Monitor"

        Identifier  "LCD_int"
        Option  "dpms"
        HorizSync   31.5 - 100.0
        VertRefresh 30.0 -  90.0
        DisplaySize     505 315
        UseModes        "16:10"

EndSection

Section "Monitor"

        Identifier      "LCD_ext"
        Option          "dpms        HorizSync       30 - 100
        VertRefresh     30 - 90

EndSection

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

# Any number of graphics device sections may be present

Section "Device"

        Identifier      "Gforce_int"
        Driver          "nvidia"
        Option          "NoLogo"        "true"
        Option          "RenderAccel"   "true"
        BusID           "PCI:1:0:0"
        Option          "TwinView"
        Option          "ConnectedMonitor"      "LCD, LCD"
        Option          "TwinViewOrientation"   "Clone"

EndSection



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

Section "Screen"

    Identifier  "affichage 1"
    Device      "Gforce_int"
    Monitor     "LCD_int"

    DefaultDepth 24

    Subsection "Display"
        Depth       24
        ViewPort        0 0
        Modes   "1920x1200"
    EndSubsection

EndSection

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

Section "ServerLayout"
    Identifier  "another layout"
    Screen      "Affichage 1"
    InputDevice "touchpad" "CorePointer"
    InputDevice "mulot_ext" "SendCoreEvents"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection

Section "DRI"
        Mode 0666
EndSection



Je souhaiterais avoir sur mon écran de portable une résolution en 1920x1200
et sur mon écran LCD une résolution en 1280x1024 ...

Merci d'avance @ tous
_________________
MacBookPro 17, OSX 10.6

Mon site oueb : http://www.generationdomotique.com
Back to top
View user's profile Send private message
penguin_totof
Apprentice
Apprentice


Joined: 04 Aug 2004
Posts: 227
Location: Lyon, France

PostPosted: Wed May 25, 2005 12:39 pm    Post subject: Reply with quote

bon, deja, il faut declarer 2 devices (comme si tu avai 2 cartes en fait)
et ta section serverlayout est incomplete.

d'autre part, je ne sais pas si ca fonctionne correctement avec 2 resolution differentes...

pour info, voila mon xorg.conf, essaye de t'en inspirer:

Code:

# File generated by xorgconfig.


# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"     # Double buffer extension
   
# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the font modules
    Load        "type1"
#    Load        "speedo"
    Load        "freetype"
#    Load        "xtt"

# This loads the GLX module
   Load       "glx"
# This loads the DRI module
#    Load       "dri"
   
   Load "v4l"

EndSection



Section "Extensions"
#       Option  "Composite"     "Disable"
       Option  "RENDER"        "Enable"
EndSection




# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

    RgbPath   "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
#

#    FontPath   "/usr/share/fonts/CID/"
#    FontPath   "/usr/share/fonts/Speedo/"
#    FontPath   "/usr/share/fonts/TrueType/"
#    FontPath   "/usr/share/fonts/freefont/"

# The module search path.  The default path is shown here.

#    ModulePath "/usr/X11R6/lib/modules"

    FontPath    "/usr/share/fonts/misc"
    FontPath    "/usr/share/fonts/TTF"
    FontPath    "/usr/share/fonts/Type1"
    FontPath    "/usr/share/fonts/75dpi"
    FontPath    "/usr/share/fonts/100dpi"
    FontPath    "/usr/share/fonts/local"
    FontPath    "/usr/local/share/fonts"
    FontPath    "/usr/share/fonts"
    FontPath    "/usr/X11R6/lib/X11/fonts"
EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

# Uncomment this to cause a core dump at the spot where a signal is
# received.  This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

#    Option "NoTrapSignals"

# Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

#    Option "DontVTSwitch"

# Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
# This allows clients to receive this key event.

#    Option "DontZap"

# Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
# sequences.  This allows clients to receive these key events.

#    Option "Dont Zoom"

# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.

#    Option "DisableVidModeExtension"

# Uncomment this to enable the use of a non-local xvidtune client.

#    Option "AllowNonLocalXvidtune"

# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.

#    Option "DisableModInDev"

# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).

#    Option "AllowNonLocalModInDev"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier   "Keyboard1"
    Driver   "kbd"

# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

    Option "AutoRepeat" "500 30"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#    Option   "Xleds"      "1 2 3"

#    Option "LeftAlt"     "Meta"
#    Option "RightAlt"    "ModeShift"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#    Option "XkbModel"    "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#    Option "XkbModel"    "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#    Option "XkbLayout"   "de"
# or:
#    Option "XkbLayout"   "de"
#    Option "XkbVariant"  "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#    Option "XkbOptions"  "ctrl:swapcaps"

# These are the default XKB settings for Xorg

#    Option "XkbModel"    "pc101"
#    Option "XkbLayout"   "us"
#    Option "XkbVariant"  ""
#    Option "XkbOptions"  ""

#    Option "XkbDisable"


    Option "XkbModel"   "pc105"
    Option "XkbLayout"   "fr"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier   "Mouse1"
    Driver   "mouse"
    Option "Protocol"    "ExplorerPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Device"      "/dev/input/mice"

# Mouse-speed setting for PS/2 mouse.

#    Option "Resolution"   "256"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol"   "Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate"   "9600"
#    Option "SampleRate"   "150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection



# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

    Identifier  "trust"
    HorizSync   30 - 69

#    HorizSync   30-64         # multisync
#    HorizSync   31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync   15-25, 30-50  # multiple ranges of sync frequencies

    VertRefresh 50-100

EndSection

Section "Monitor"

    Identifier  "lg"
    HorizSync   30 - 69

#    HorizSync   30-64         # multisync
#    HorizSync   31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync   15-25, 30-50  # multiple ranges of sync frequencies

    VertRefresh 50-100

EndSection


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

# Any number of graphics device sections may be present

# Standard VGA Device:

Section "Device"
    Identifier   "Standard VGA"
    VendorName   "Unknown"
    BoardName   "Unknown"

# The chipset line is optional in most cases.  It can be used to override
# the driver's chipset detection, and should not normally be specified.

#    Chipset   "generic"

# The Driver line must be present.  When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module.  Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.

    Driver     "vga"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for.  When this line isn't present, a device
# section can only match up with the primary video device.  For PCI
# devices a line like the following could be used.  This line should not
# normally be included unless there is more than one video device
# intalled.

#    BusID      "1:0:0"

    VideoRam   128

#    Clocks   25.2 28.3

EndSection

# Device configured by xorgconfig:

Section "Device"
    Identifier  "card0"
   Driver      "nvidia"
   
   Option "IgnoreDisplayDevices" "DFP, TV"
   BusID "1:0:0"
   Screen 0
   
EndSection

Section "Device"
    Identifier  "card1"
   Driver      "nvidia"
   
   Option "IgnoreDisplayDevices" "DFP, TV"
   BusID "1:0:0"
   Screen 1
   
EndSection


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

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    Identifier  "Screen0"
    Device      "card0"
    Monitor     "trust"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection


Section "Screen"
    Identifier  "Screen1"
    Device      "card1"
    Monitor     "lg"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection









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

# Any number of ServerLayout sections may be present.  Each describes
# the way multiple screens are organised.  A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option.  In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.

#Section "ServerLayout"

# The Identifier line must be present
#    Identifier  "Simple Layout"

# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens.  The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen.  In this example, screen 2 is located to the
# right of screen 1.

#   Screen "Screen 1"

# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used.  Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".

#    InputDevice "Mouse1" "CorePointer"
#    InputDevice "Keyboard1" "CoreKeyboard"

#EndSection

Section "ServerLayout"
Identifier "Multihead layout"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
Option "Xinerama" "on"
Option "Clone" "off"
EndSection

# Section "DRI"
#    Mode 0666
# EndSection


_________________
1001111100100001110010011100100111111001
1001111100100100110010011100111001100111
1001111100100110010010011100111110011111
1001111100100111000010011100111001100111
1000000100100111100011000001100111111001
Back to top
View user's profile Send private message
chrissou
Guru
Guru


Joined: 22 Mar 2004
Posts: 473

PostPosted: Wed May 25, 2005 1:58 pm    Post subject: Reply with quote

Franchement la je comprends rien de chez rien j'ai rajouté une section

Code:

Section "Device"
            Identifier "Gforce_ext"
            Driver    "nvidia"
            Option    "NoLogo" "true"
            Option    "RenderAccel" "true"
            BusID    "1:0:0"
EndSection


j'ai modifié mon server layout comme le tien

j'ai aussi rajouté une section screen
Code:

Section "Screen"
            Identifier "affichage 2"
            Device    "Gforce_ext"
            Monitor    "LCD_ext"

            DefaultDepth 24

             Subsection "Display"
                         Depth 24
                         Modes "1280x1024"
             EndSubsection
Ensection


Mais malheureusement mon ecran LCD externe reste toujours noir :( j'ai essayé la sortie DVI et la sortie SVGA de ma carte graphique résultat identique :(
_________________
MacBookPro 17, OSX 10.6

Mon site oueb : http://www.generationdomotique.com
Back to top
View user's profile Send private message
kwenspc
Advocate
Advocate


Joined: 21 Sep 2003
Posts: 4954

PostPosted: Wed May 25, 2005 3:02 pm    Post subject: Reply with quote

tu as bien l'extention xinerama à ton xorg?
(le flag USE xinerama a besoin d'être mis dans ce cas là)

[edit] l'accélération en dual head avec nvidia c'est possible? ça m'étonne un peu je dois dire...[/edit]
Back to top
View user's profile Send private message
chrissou
Guru
Guru


Joined: 22 Mar 2004
Posts: 473

PostPosted: Wed May 25, 2005 5:06 pm    Post subject: Reply with quote

Non pas du tout je n'ai pas mis xinerama dans xorg ni dans mon USE ... est-ce indispensable ?
a quoi cela sert-il ??

Pour l'accélération aucune idée si c'est possible mais ca me plairait bien ! En tout cas sous windows l'accélération en dual fonctionne ca c'est une chose sure ...
_________________
MacBookPro 17, OSX 10.6

Mon site oueb : http://www.generationdomotique.com
Back to top
View user's profile Send private message
Ey
l33t
l33t


Joined: 07 Apr 2005
Posts: 863
Location: Paris

PostPosted: Wed May 25, 2005 7:55 pm    Post subject: Reply with quote

chrissou wrote:

Code:

Section "Device"
            Identifier "Gforce_ext"
            Driver    "nvidia"
            Option    "NoLogo" "true"
            Option    "RenderAccel" "true"
            BusID    "1:0:0"
EndSection


Tu as oublié une option importante : Screen.
Il faut que l'un ait Screen 0 et l'autre Screen 1.

EDIT : Il faut aussi spécifier quel sont les entrées qui correspondent au différents devices. Soit comme indiqué au dessus avec un IgnoreDisplayDevices soit avec un ConnectedMonitor.


Last edited by Ey on Wed May 25, 2005 7:58 pm; edited 2 times in total
Back to top
View user's profile Send private message
Leander256
l33t
l33t


Joined: 05 Jul 2003
Posts: 910
Location: Singapour

PostPosted: Wed May 25, 2005 7:56 pm    Post subject: Reply with quote

Si tu utilises deux sections Screen distinctes, le xinerama ne te servira pas. Il n'est nécessaire que si tu veux fusionner les deux écrans en un seul bureau. Par contre le fait d'avoir deux sections Screen va en fait te donner deux bureaux différents (identifiés par les variables DISPLAY :0.0 et :0.1), entre lesquels il peut être parfois un peu coton de naviguer. Mais tu conserveras l'accélération 3D, c'est configuré comme ça chez moi et je peux jouer à ET sur un écran sans affecter l'autre.

Je te conseille de lire ça: http://gentoo-wiki.com/HOWTO_Dual_Monitors
Back to top
View user's profile Send private message
chrissou
Guru
Guru


Joined: 22 Mar 2004
Posts: 473

PostPosted: Thu May 26, 2005 7:24 am    Post subject: Reply with quote

J'ai donc suivi vos conseils !
j'ai bien mes 2 sections screen distinctes le xinerama ne me sert donc a rien on est déjà tranquille avec ca !

J'ai rajouté aussi sur mon screen LCD_int Screen 0
et sur mon screen LCD_ext Screen 1 (j'ai modifié mon serverlayout en conséquence)

j'ai aussi rajouté dans mes 2 sections screen l'option "ConnectedMonitor" "DFP,DFP" par contre je ne sais pas du tout comment ca se configure ce truc !

Résultat toujours black screen sur mon LCD_ext et sur mon LCD_int un bureau apparait mais qui n'est pas du tout le même que d'habitude!

voilà ... :(
_________________
MacBookPro 17, OSX 10.6

Mon site oueb : http://www.generationdomotique.com
Back to top
View user's profile Send private message
Ey
l33t
l33t


Joined: 07 Apr 2005
Posts: 863
Location: Paris

PostPosted: Thu May 26, 2005 1:58 pm    Post subject: Reply with quote

chrissou wrote:
J'ai donc suivi vos conseils !
j'ai bien mes 2 sections screen distinctes le xinerama ne me sert donc a rien on est déjà tranquille avec ca !

J'ai rajouté aussi sur mon screen LCD_int Screen 0
et sur mon screen LCD_ext Screen 1 (j'ai modifié mon serverlayout en conséquence)

j'ai aussi rajouté dans mes 2 sections screen l'option "ConnectedMonitor" "DFP,DFP" par contre je ne sais pas du tout comment ca se configure ce truc !

Résultat toujours black screen sur mon LCD_ext et sur mon LCD_int un bureau apparait mais qui n'est pas du tout le même que d'habitude!

voilà ... :(


En fait pour ConnectedMonitor il faut mettre "DFP" pour l'écran LCD d'un portable ou pour une prise DVI et "CRT" pour une prise VGA normale.
Donc en gros une section avec ConnectedMonitor "DFP" et une autre avec ConnectedMonitor "CRT". Par contre si tu as 2 sorites DVI ou une sortie DVI + un écran de portable je sais pas comment il gère ça, faut regarder la doc de xorg.
Back to top
View user's profile Send private message
terreur
Apprentice
Apprentice


Joined: 30 Nov 2004
Posts: 228
Location: Belgique

PostPosted: Thu May 26, 2005 7:43 pm    Post subject: Reply with quote

Est ce que ca fonctionne aussi avec les cartes graphique Intel ??

Car chez moi, mes deux ecrans celui du portable et l'externe ont la meme image ..
Back to top
View user's profile Send private message
chrissou
Guru
Guru


Joined: 22 Mar 2004
Posts: 473

PostPosted: Fri May 27, 2005 6:46 am    Post subject: Reply with quote

Ey wrote:
chrissou wrote:
J'ai donc suivi vos conseils !
j'ai bien mes 2 sections screen distinctes le xinerama ne me sert donc a rien on est déjà tranquille avec ca !

J'ai rajouté aussi sur mon screen LCD_int Screen 0
et sur mon screen LCD_ext Screen 1 (j'ai modifié mon serverlayout en conséquence)

j'ai aussi rajouté dans mes 2 sections screen l'option "ConnectedMonitor" "DFP,DFP" par contre je ne sais pas du tout comment ca se configure ce truc !

Résultat toujours black screen sur mon LCD_ext et sur mon LCD_int un bureau apparait mais qui n'est pas du tout le même que d'habitude!

voilà ... :(


En fait pour ConnectedMonitor il faut mettre "DFP" pour l'écran LCD d'un portable ou pour une prise DVI et "CRT" pour une prise VGA normale.
Donc en gros une section avec ConnectedMonitor "DFP" et une autre avec ConnectedMonitor "CRT". Par contre si tu as 2 sorites DVI ou une sortie DVI + un écran de portable je sais pas comment il gère ça, faut regarder la doc de xorg.


Sur mon portable j'ai donc l'écran de celui-ci ! et j'ai aussi a l'arrière 2 connecteurs un DVI un SVGA je souhaitais brancher sur mon écran ext via la prise DVI :/

je sens que c'est peine perdu tout ca :( sniff
_________________
MacBookPro 17, OSX 10.6

Mon site oueb : http://www.generationdomotique.com
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index French All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum