Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Fernseher an Laptop anschliessen, wie? [solved]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
danvari
Tux's lil' helper
Tux's lil' helper


Joined: 04 Apr 2008
Posts: 131

PostPosted: Thu Aug 13, 2009 1:53 pm    Post subject: Fernseher an Laptop anschliessen, wie? [solved] Reply with quote

Hallo!

Ich möchte gerne meinen Fernseher zum Filme-gucken an dem VGA Port meines Laptops anschliessen. Unter Arch habe ich einfach immer nvidia-settings aufgerufen und jedes Mal Twinview mit einer ganz bestimmten Auflösung aufgerufen. Das funktioniert leider so nicht unter Gentoo (zeigt Bild an, je nach Auflösung größer als der Fernseher oder zu klein mit Rändern), kann aber an den Treibern liegen (Gentoo: 180, Arch: 185). Jetzt kenne ich mich nun mal gar nicht in diesem Bereich aus, und weiss daher nicht, welche Methode die gängigere hierbei ist:

- Twinview
- Xorg.conf (duale Monitore)
- Xinerama

Letzteres habe ich schon oft gehört und weiss es nur hier in den Bereich einzuordnen, mehr nicht. Kriterien sind:

- Temporär / Plug & Play: Der Fernseher wird _nur_ zum Filme-gucken benutzt und soll auch nur dann im System "aktiviert" sein.
- Optimale Ausnutzung des Bildes: Das Bild sollte scharf (hohe Auflösung) und das Bild größentechnisch voll ausnutzen, keine Ränder links und rechts.

Aber wie gesagt, weiss halt nicht, welche Methode man da am Besten für nutzt bzw. _wie_ ^^. Die Auflösung am Laptop-Monitor zur Zeit des Filme-guckens ist mir relativ egal.

Anmerkung am Rande: Ich nutze Gnome, dort wird der Monitor unter den Anzeigeoptionen aber gar nicht aufgeführt. Hier meine aktuelle Xorg.conf:

Code:
Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
EndSection

Section "ServerFlags"
    Option         "Xinerama" "0"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LPL"
    HorizSync       30.0 - 75.0
    VertRefresh     60.0
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "LG TV"
    HorizSync       28.0 - 67.0
    VertRefresh     50.0 - 75.0
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce Go 7300"
    Option         "NoLogo" "True"
    BusID          "PCI:1:0:0"
    Screen          0
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce Go 7300"
    BusID          "PCI:1:0:0"
    Screen          1
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection


Hoffe ihr könnt mir helfen :)!


Last edited by danvari on Fri Aug 14, 2009 4:55 pm; edited 1 time in total
Back to top
View user's profile Send private message
SvenFischer
Veteran
Veteran


Joined: 05 Feb 2003
Posts: 1033
Location: Berlin

PostPosted: Thu Aug 13, 2009 2:01 pm    Post subject: Reply with quote

Ich kenne mich mit dem Zweischirmbetrieb nicht aus.

Wie wäre es denn die Auflösung manuell festzulegen?

z.B. bei mir:
Code:

Section "Screen"
        Identifier      "Screen 1"
        Device          "gcard"
        Monitor         "Sony"
        DefaultDepth     24

        SubSection "Display"
                Viewport 0 0
                Depth     24
                Modes    "1280x1024"
        EndSubSection
EndSection

_________________
Core2Duo, 4GB RAM, AMD/ATI 4850 and nice person in front!
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3922
Location: Hamburg

PostPosted: Thu Aug 13, 2009 7:29 pm    Post subject: Reply with quote

Und wenn Du einfach xrandr mit der entsprechenden option aufrufst ? z.B.
Code:
xrandr--output VGA --auto
?
Back to top
View user's profile Send private message
danvari
Tux's lil' helper
Tux's lil' helper


Joined: 04 Apr 2008
Posts: 131

PostPosted: Fri Aug 14, 2009 4:54 pm    Post subject: Reply with quote

also ich habe es nun in der xorg.conf so gelöst wie SvenFischer es meinte:

Code:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LPL"
    HorizSync       30.0 - 75.0
    VertRefresh     60.0
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "LG TV"
    HorizSync       28.0 - 67.0
    VertRefresh     50.0 - 75.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce Go 7300"
    Option         "NoLogo" "True"
    BusID          "PCI:1:0:0"
    Screen          0
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce Go 7300"
    BusID          "PCI:1:0:0"
    Screen          1
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "metamodes" "CRT: 1920x1080 +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection


mit der auflösung 1920x1080 :).
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) 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