Ubuntu VDR DVB-T mittels Xine und VDPAU - Grafikkarten Treiber

Aus VDR Wiki
Wechseln zu: Navigation, Suche

Inhaltsverzeichnis

Vorwort

Der Grafikkartentreiber muss direkt auf der Linux Konsole installiert werden. Ihr könnt von der grafischen Oberfläche auf eine der insgesamt sechs Konsolen mit folgender Tastenkombination wechseln:

STRG+ALT+F1
Username: vdr
Kennwort: Eurer Passwort

Prüfen der Grafikkarte

lspci -v

01:00.0 VGA compatible controller: nVidia Corporation GT200 [GeForce GT 220] (rev a2)
       Subsystem: CardExpert Technology Device 0801
       Flags: bus master, fast devsel, latency 0, IRQ 11
       Memory at fd000000 (32-bit, non-prefetchable) [size=16M]
       Memory at d0000000 (64-bit, prefetchable) [size=256M]
       Memory at ce000000 (64-bit, prefetchable) [size=32M]
       I/O ports at cc00 [size=128]
       Expansion ROM at fe900000 [disabled] [size=512K]
       Capabilities: <access denied>
       Kernel modules: nvidiafb

Installation NVDIA Grafikkarten Treiber

Downloadverzeichnis erstellen

mkdir -p /data/installfiles/nvidia

Treiber herunterladen

cd /data/installfiles/nvidia
wget ftp://download.nvidia.com/XFree86/Linux-x86_64/190.42/NVIDIA-Linux-x86_64-190.42-pkg1.run

Treiber installieren

sudo /etc/init.d/gdm stop
cd /data/installfiles/nvidia/
sudo sh NVIDIA-Linux-x86_64-190.42-pkg1.run
Accept -> Yes -> Ok
sudo init 6

Beispiel xorg.conf

Zu finden unter:

cd /etc/X11
cat xorg.conf
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder58)  Wed Sep  2 03:36:10 PDT 2009


Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
       Depth       24
    EndSubSection
EndSection

Section "Extensions"
    Option "Composite" "Disable"
EndSection

Links

  1. NVIDIA
  2. NVIDIA FTP-Server