Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] Różne rozdzielczości na Monitorze i na TV (nvidia)
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Polskie forum (Polish)
View previous topic :: View next topic  
Author Message
kacper
Guru
Guru


Joined: 07 Feb 2004
Posts: 300
Location: Poland, Słubice

PostPosted: Fri May 04, 2007 1:07 pm    Post subject: [SOLVED] Różne rozdzielczości na Monitorze i na TV (nvidi Reply with quote

Witam,

udało mi się nabyć telewizor HD Ready (Panasonic 32LE7P), pomyślałem sobie, że warto by było pooglądać jakiś materiał w wyższej rozdzielczości. Do tej pory TV miałem podłączony za pomocą S-Video (Nvidia 6600GT), teraz udało mi się nabyć kabel Component, niestety xy nie ruszyły pomimo zmiany w xorg.conf na COMPOSITIVE, ale wiem, pewnie potrzebna jest jakaś 'grubsza' konfiguracja :)
Szukałem w internecie, ale jakoś rozwiązania, które znalazłem, nie chciały za bardzo działać. Oto co mam teraz w xorg.conf (wejście S-Video) :

Code:

Section "Device"
    Identifier  "ASUS GEFORCE4"
    Driver      "nvidia"
    Option         "NoLogo" "True"
    Screen 0
    Option "TwinView" "true"
    Option "TwinViewOrientation" "clone"
    Option "MetaModes" "1024x768,1024x768; 800x600,800x600; 640x480,640x480"
    Option "SecondMonitorHorizSync" "30-50"
    Option "SecondMonitorVertRefresh" "60"
    Option "TVOutFormat" "COMPOSITE"
    Option "TVStandard" "PAL-D"
    Option "RenderAccel" "true"


A co bym chciał uzyskać? Oczywiście działające połączenie za pomocą kabla compozytowego i rozdzielczość 720p, a dokładniej chciałbym tak, aby na monitorze było 1024x768, a na TV 1280x720 - byłoby super :) oczywiście obraz klonowany. Jakby ktoś miał taka działającą konfigurację, będę bardzo wdzięczny :)
_________________
http://www.koniec-iti.eu


Last edited by kacper on Sun May 06, 2007 12:37 am; edited 1 time in total
Back to top
View user's profile Send private message
arturx
n00b
n00b


Joined: 06 Jul 2006
Posts: 57

PostPosted: Fri May 04, 2007 3:31 pm    Post subject: Reply with quote

na gentoo-wiki http://gentoo-wiki.com/HOWTO_nVidia_TwinView podali troszkę inną konfiguracje
Code:

Section "Device"
    Identifier    "Card0"
    VendorName    "eVGA"
    BoardName     "Geforce 6600GT"
    Driver        "nvidia"
    Option        "TwinView"
    Option        "UseDisplayDevice" "CRT-0,DFP-0"
    Option        "HorizSync" "CRT-0: 30-98; DFP-0: 30-81"
    Option        "VertRefresh" "CRT-0: 50-160; DFP-0: 56-75"
    Option        "MetaModes" "1600x1200,1600x1200; 1600x1200,NULL; NULL,1600x1200"
EndSection

zobacz czy zadziała :
Code:

Option        "MetaModes" "1024x768,1280x720 ...
Back to top
View user's profile Send private message
kacper
Guru
Guru


Joined: 07 Feb 2004
Posts: 300
Location: Poland, Słubice

PostPosted: Sun May 06, 2007 12:37 am    Post subject: Reply with quote

Podzielę się rozwiązaniem, które podał mi jeden użytkownik grup dyskusyjnych.
Konfiguracja dotyczy sprzętu jak wyżej, rozwiązanie to '2 ekrany', czyli na jednym sobie klikamy np. www, a na drugim oglądamy film. Oto co ma się znaleźć w xorg.conf :

Code:

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

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

Code:

Section "Screen"
    Identifier     "Screen0"
    Device         "Videocard1"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "metamodes" "CRT: 1024x768 +0+0"
    SubSection     "Display"
        Depth       24
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Videocard0"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "metamodes" "TV: 1280x720 +0+0"
    Option         "TVStandard" "HD720p"
    Option         "TVOutFormat" "COMPONENT"
    SubSection     "Display"
        Depth       24
        Modes      "1280x720"
    EndSubSection
EndSection

Code:

Section "Monitor"

    Identifier  "Monitor0"
    HorizSync   31.5 - 57.0
    VertRefresh 50-90

EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "TV-0"
    HorizSync       30.0 - 85.0
    VertRefresh     56.0 - 77.0
    Option         "DPMS"
EndSection


Code:

    Screen "Screen 0"
    Screen "Screen 1"


I to wszystko :)
_________________
http://www.koniec-iti.eu


Last edited by kacper on Sun May 06, 2007 10:55 pm; edited 1 time in total
Back to top
View user's profile Send private message
arturx
n00b
n00b


Joined: 06 Jul 2006
Posts: 57

PostPosted: Sun May 06, 2007 5:57 pm    Post subject: Reply with quote

mam podobną konfigurcje w/g http://gentoo-wiki.com/HOWTO_Dual_Monitors
tylko że mam 2 sekcje monitor, a sekcja ServerLayout wygląda tak :
Code:

Section "ServerLayout"
    Identifier     "layout1"
    Screen 0 "screen0" 0 0
    Screen 1 "screen1" leftOf "screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection
Back to top
View user's profile Send private message
kacper
Guru
Guru


Joined: 07 Feb 2004
Posts: 300
Location: Poland, Słubice

PostPosted: Sun May 06, 2007 10:55 pm    Post subject: Reply with quote

arturx wrote:

tylko że mam 2 sekcje monitor

O, zapomniałem o tym, już uzupełniłem :)
_________________
http://www.koniec-iti.eu
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Polskie forum (Polish) 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