Meine aktuelle xorg.conf (Nvidia + 2 Monitore)

April 30, 2009 - Lesezeit: 4 Minuten
# nvidia-settings: X configuration file generated by nvidia-settings# nvidia-settings:  version 1.0  (buildd@palmer)  Mon Nov  3 08:46:46 UTC 2008

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder57)  Sat Nov  8 12:48:43 PST 2008

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
# commented out by update-manager, HAL is now used
#    InputDevice    "Keyboard0" "CoreKeyboard"
# commented out by update-manager, HAL is now used
#    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

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

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

# commented out by update-manager, HAL is now used
#Section "InputDevice"
#
#    # generated from default
#    Identifier     "Mouse0"
#    Driver         "mouse"
#    Option         "Protocol" "auto"
#    Option         "Device" "/dev/psaux"
#    Option         "Emulate3Buttons" "no"
#    Option         "ZAxisMapping" "4 5"
#EndSection

# commented out by update-manager, HAL is now used
#Section "InputDevice"
#
#    # generated from default
#    Identifier     "Keyboard0"
#    Driver         "kbd"
#EndSection

Section "Monitor"

    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Lite-On GC150AT/ATA"
    HorizSync       31.0 - 60.0
    VertRefresh     55.0 - 75.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 8500 GT"
EndSection

Section "Screen"

# Removed Option "metamodes" "CRT: 1024x768_60 +1280+256, DFP: 1280x1024 +0+0; DFP: 1024x768 +0+0; DFP: 832x624 +0+0; DFP: 800x600 +0+0; DFP: 640x480 +0+0"
# Removed Option "metamodes" "CRT: 1024x768_60 +1280+0, DFP: 1280x1024 +0+0; CRT: NULL, DFP: 1024x768 +0+0; CRT: NULL, DFP: 832x624 +0+0; CRT: NULL, DFP: 800x600 +0+0; CRT: NULL, DFP: 640x480 +0+0"
# Removed Option "metamodes" "CRT: 1024x768_60 +1280+0, DFP: 1680x1050 +0+0; CRT: NULL, DFP: 1024x768 +0+0; CRT: NULL, DFP: 832x624 +0+0; CRT: NULL, DFP: 800x600 +0+0; CRT: NULL, DFP: 640x480 +0+0"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "1"
    Option         "TwinViewXineramaInfoOrder" "DFP-0"
    Option         "metamodes" "CRT: 1024x768_60 +1680+0, DFP: 1680x1050 +0+0; CRT: NULL, DFP: 1024x768 +0+0; CRT: NULL, DFP: 832x624 +0+0; CRT: NULL, DFP: 800x600 +0+0; CRT: NULL, DFP: 640x480 +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
Tags: Hardware Kubuntu

Kubuntu 9.04 und ATI X1300

April 27, 2009 - Lesezeit: ~1 Minute

Für (K)Ubuntu 9.04 und meiner Grafikkarte gibt es leider keinen Grafiktreiber von AMD mehr. Der freie Grafiktreiber Radeon funktioniert auch ganz gut. An meinem Laptop ist aber ein Monitor (1280*1014) angeschlossen, den ich ausschließlich nutze. Über KRandRTray kann ich auch alles richtig einstellen. Um diese Einstellungen automatisch einzustellen, habe ich ein kleines Skript geschrieben:


#!/bin/bash
xrandr --output VGA --mode 1280x1024  # Auflösung Monitor
xrandr --output VGA --auto
xrandr --output LVDS --off          # Notebookbildschirm aus

 
Tags: Hardware Kubuntu KDE4

NVidia GeForce 8500 und Kubuntu 8.10 (KDE 4.1)

November 23, 2008 - Lesezeit: ~1 Minute

Die Standardtreiber für diese Karte haben einen Fehler. Dadurch arbeitet der Rechner spürbar langsamer, seit Kubuntu die KDE 4 nutzt.

Der aktuelle BETA-Treiber behebt diesen Fehler. Ich habe ihn nach dieser Anleitung installiert.

 

Tags: Hardware Kubuntu KDE4

wnfStarteVMWare.sh (3)

Juni 6, 2008 - Lesezeit: ~1 Minute

Version 0.3 - VMWare startet Wochentags die Delphimaschine.
Version 0.1 - Beim Start von VMWare wird das ausloggen verboten

#!/bin/bash
#Beim Start von VMWare das ausloggen aus KDE 3.5.x verbieten
#Logout = false setzen
kwriteconfig --file kdeglobals --group 'KDE Action Restrictions' --key logout --type bool false
#kicker reconfigurieren, dann wir Logout nicht mehr angezeigt
dcop kicker kicker configure
wochentag=$(date +"%u")
if [ $wochentag -lt 6 ]
then
echo "Heute ist Arbeitstag" $wochentag
/usr/bin/vmware -x /wnfdaten/vmware/Delphi7/win2000Pro.vmx
else
echo "Heute ist Wochenende " $wochentag
/usr/bin/vmware
fi
#Logout = true setzen
kwriteconfig --file kdeglobals --group 'KDE Action Restrictions' --key logout --type bool true
#kicker reconfigurieren, dann wir Logout wieder angezeigt
dcop kicker kicker configure
Die Benutzung von kstart funktioniert hier leider nicht, da kstart sofort beendet wird und dadurch ausloggen sofort wieder erlaubt wird.
#vmware mit kstart auf 2. Desktop  (Arbeitsfläche) starten
kstart --windowclass vmware --desktop 2 /usr/bin/vmware
Tags: VMWare Kubuntu KDE3

Gimp in Deutsch ? (Kubuntu 7.10)

Februar 17, 2008 - Lesezeit: ~1 Minute

Nach der Standardinstallation von Kubuntu ist Gimp nur in Englisch. Es gibt auch kein deutsches Sprachpaket für Gimp. Dafür muss das Paket

language-pack-gnome-de 

installiert werden.

Tags: Ubuntu Kubuntu Gimp