Linux за българи: Форуми

Linux секция за начинаещи => Настройка на програми => Темата е започната от: ibajlo в Apr 01, 2006, 11:05



Титла: настройване на tvout с geforce4
Публикувано от: ibajlo в Apr 01, 2006, 11:05
Значи проблема е следният:
помъчих си се доста докато си искарам сигнал на тв-аута.Успях да го искарам и си тръгна. обаче се оказах като мишка в клетка. разхождам се по монитора но немога да се прехвърля на телевизора. дава ми го като десктоп1 и си нямам идея как да си изпратя програмите натам :(. ето и конфигурационният файл както съм го настроил.
ползвам следните параметри: Debian Sarge stable kernel 2.6.15
GeForce4 MMX440SE с последни drivers  и  XF86Config

#########################
Section "Module"
    Load           "bitmap"
    Load           "dbe"
    Load           "ddc"
    Load           "extmod"
    Load           "freetype"
    Load           "glx"
    Load           "int10"
    Load           "record"
    Load           "speedo"
    Load           "type1"
    Load           "vbe"
EndSection

Section "InputDevice"
    Identifier     "Generic Keyboard"
    Driver         "keyboard"
    Option         "CoreKeyboard"
    Option         "XkbRules" "xfree86"
    Option         "XkbModel" "pc104"
    Option         "XkbLayout" "us,bg"
    Option         "XkbVariant" "phonetic"
EndSection

Section "InputDevice"
    Identifier     "Configured Mouse"
    Driver         "mouse"
    Option         "CorePointer"
    Option         "Device" "/dev/input/mice"
    Option         "Protocol" "ImPS/2"
    Option         "Emulate3Buttons" "true"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier            "Monitor"
    HorizSync            30.0 - 68.0
    VertRefresh            50.0 - 85.0
    Option            "DPMS"
EndSection

Section "Monitor"
    Identifier            "Televizor"
    Option "TwinView"
    Option "MetaModes"         "1024x768; 800x600"
    Option "SecondMonitorHorizSync"   "30-50"
    Option "SecondMonitorVertRefresh"   "60"
    Option "TwinViewOrientation"   "Clone"
    Option "ConnectedMonitor"      "CRT, TV"
    Option "TVStandard"         "PAL-B"
    Option "TVOutFormat"      "SVIDEO"
#    Option "TVOverScan"      "1.0"

EndSection

Section "Device"
    Identifier     "nvidia0"
    Driver         "nvidia"
# Edit the BusID with the location of your graphics card
    BusID       "PCI:1:0:0"
    Screen      0
EndSection

Section "Device"
    Identifier     "nvidia1"
    Driver         "nvidia"
# Edit the BusID with the location of your graphics card
    BusID       "PCI:1:0:0"
    Screen      1

EndSection
   
Section "Screen"
    Identifier     "Screen0"
    Device         "nvidia0"
    Monitor        "Monitor"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "nvidia1"
    Monitor        "Televizor"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection


Титла: настройване на tvout с geforce4
Публикувано от: steady в Apr 01, 2006, 11:47
Ето една конфигурация за Clone режим.
Можеш да си промениш идентификаторите на картата, монитора, телевизора, мишката и клавиатурата по твой избор.

Примерен код

Section "Files"
    FontPath "unix/:-1"
EndSection

Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
EndSection

Section "Module"
    Load "dbe"
    Load "v4l"
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx"
EndSection

Section "InputDevice"
    Identifier "A4_keyboard"
    Driver "keyboard"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us,bg(phonetic)"
    Option "XkbOptions" "grp:ctrl_shift_toggle,grp_led:scroll,compose:rwin"
EndSection

Section "InputDevice"
    Identifier "SPEED_mouse"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/mouse"
    Option "ZAxisMapping" "6 7"
EndSection

Section "Monitor"
    Identifier "DELL"
    VendorName "DELL"
    ModelName "DELL P780"
    HorizSync 30.0 - 85.0
    VertRefresh 48.0 - 120.0
    
    # DisplaySize 310 230
    Option "DPMS"
EndSection

Section "Device"
    Identifier "GeForce_FX_5500_AGP"
    VendorName "GeForce FX 5500"
    BoardName "GeForce FX 5500"
    Driver "nvidia"
    Option "RandRRotation" "yes"
    Option "NoLogo" "True"
    Option "IgnoreDisplayDevices" "DFP"
    Option "ConnectedMonitor" "CRT, TV"
    Option "TwinView" "true"
    Option "SecondMonitorHorizSync" "30-50"
    Option "MetaModes" "1024x768,1024x768;1024x768,NULL;800x600,800x600;800x600,NULL;640x480,640x480;640x480,NU



LL"
    Option "TVStandard" "PAL-B"
    Option "SecondMonitorVertRefresh" "60"
    Option "Coolbits" "1"
    Option "UseEdidFreqs" "yes"
    Option "TwinViewOrientation" "Clone"
    Option "AllowDDCCI" "yes"
    Option "TVOutFormat" "SVideo"
    Option "HWCursor" "yes"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device "GeForce_FX_5500_AGP"
    Monitor "DELL"
    DefaultDepth 24
    
    Subsection "Display"
        Depth 8
    EndSubsection
    
    Subsection "Display"
        Depth 16
    EndSubsection
    
    Subsection "Display"
        Depth 24
    EndSubsection
EndSection

Section "ServerLayout"
    Identifier "Clone"
    InputDevice "SPEED_mouse" "CorePointer"
    InputDevice "A4_keyboard" "CoreKeyboard"
    InputDevice "SPEED_mouse" "CorePointer"
    Screen "Screen0"
    Option "Xinerama" "off"
EndSection


Титла: настройване на tvout с geforce4
Публикувано от: ibajlo в Apr 01, 2006, 18:45
mersi mnogo stana perfektno.


Титла: настройване на tvout с geforce4
Публикувано от: steady в Apr 01, 2006, 18:57
Радвам се, че ти е помогнало.