[mythtv-users] Needing Help with get Video working right

Alen Edwards allen.edwards at oldpaloalto.com
Sat Jun 28 15:40:24 UTC 2008


        Modes    "640x480 at 60"

That is what  you are going to get resolution wise.

Save the file:

"sudo cp /etc/X11/xorg.conf  /etc/X11/xorg.conf.save"
then delete it
"sudo rm /etc/X11/xorg.conf"

Then run your xorg.conf configuration program and click the save to 
xorg.conf button.

This xorg.conf file was created as a result of  your hitting configure 
when you got these three options

Alternatively, you can edit your xorg.conf file:
"sudo nano /etc/X11/xorg.conf"  (save it first).

Put something like this in:


# xorg.conf (wag file created by Allen Edwards 6/28/2008)

Section "ServerLayout"
    Identifier     "Default Layout"
    Screen      0  "Default Screen" 0 0
    InputDevice    "Synaptics Touchpad"
EndSection

Section "Files"
EndSection

Section "Module"
    Load  "glx"
    Load  "GLcore"
    Load  "v4l"
EndSection

Section "InputDevice"
    Identifier  "Generic Keyboard"
    Driver      "kbd"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "pc105"
    Option        "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier  "Configured Mouse"
    Driver      "mouse"
EndSection

Section "InputDevice"
    Identifier  "Synaptics Touchpad"
    Driver      "synaptics"
    Option        "SendCoreEvents" "true"
    Option        "Device" "/dev/psaux"
    Option        "Protocol" "auto-dev"
    Option        "HorizEdgeScroll" "0"
EndSection

Section "Monitor"
    Identifier   "monitor1"
    Gamma        1
    Option    "DPMS"
EndSection


Section "Device"
    Identifier  "device1"
    Driver      "ati"
    Option         "MetaModes"    "1920x1200 1600x1200 1400x1050 
1280x1024 1024x768 640x480"
    BusID       "PCI:1:0:0"
    Screen      1
EndSection


Section "Screen"
    Identifier "screen1"
    Device     "device1"
    Monitor    "monitor1"
    DefaultDepth     24
    SubSection "Display"
        Depth    24
        Modes    "1920x1200" "1600x1200" "1400x1050" "1280x1024" 
"1024x768" "640x480"
    EndSubSection
EndSection

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



Allen



More information about the mythtv-users mailing list