arch linux / xorg

juliano

New member
Registriert
27 Apr. 2008
Beiträge
70
hallo

möchte mir auf meinem thinkpad t61p 14 arch linux installieren.
da ich bis jetzt nur mit suse herumgespielt habe, möchte ich nun linux ordentlich verstehen und ein bisschen von grund auf konfigurieren.
dazu hätte ich nun paar konkrete fragen:
beim installieren des x: nachdem xorg installiert ist, muss es ja noch konfiguriert werden. dabei kann ich ja mit "Xorg -configure" eine xorg.conf generieren.
wie sieht dies nun genau aus? dabei wird ja probiert so viel wie möglich "herauszufinden", haben die thinkpads diesbezüglich probleme? vor allem bezüglich monitor?
möchte mir nämlich auf keinen fall den monitor zerschießen und auch ned stunden nach irgendwelchen Werten suchen (HorizSync,..)

lg juliano
 
Archlinux hat sein eigenes Konfigtool namens hwd dafür. Funktioniert im Normalfall problemlos, aber auch sonst solltest du mit dem Thinkpad keine Probleme haben. Wenns doch mal zickt empfehl ich ich dir #archlinux.de auf irc.freenode.net :)
 
sehr gut danke.

aber macht "Xorg -configure" nicht eigentlich das selbe, oder funktioniert es nicht so "gut"? hab nämlich eh auch von hwd gehört, aber dachte das brauch ich nicht "extra"

lg
 
Hi,

ich empfehle Dir die xorg.conf "manuell" zu befüllen. Arch-Linux kenne ich pers. nicht (hat zwar von gehört/gelesen, mich aber für gentoo entschieden)
Gentoo hat eigentlich eine gute "manuell"Doku's/howtos, die man oft auch für andere Distri's verwenden kann:
http://de.gentoo-wiki.com/Xorg_Konfiguration
http://www.gentoo.de/doc/de/xorg-config.xml
http://de.gentoo-wiki.com/Xorg_und_echte_Transparenz
http://www.gentoo.de/doc/de/dri-howto.xml


hänge Dir mal als beispiel meine an: (bin auch nicht er X spezialist - wenn jemand verbesserungen/optimierungen für mein TP43 (Ati X300) hat, gerne :)
Code:
Section "Module"
    Load        "dbe"   # Double buffer extension
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection
    Load        "freetype"
    #Load       "dri"
    #Load       "glx"

EndSection
Section "Files"
    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/75dpi/"
EndSection
Section "ServerFlags"
EndSection
Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules"   "xorg"
    Option "XkbModel"   "pc105"
    Option "XkbLayout"  "de"
EndSectionSection "Monitor"
    Identifier  "ThinkPadLCD"
    HorizSync   31.5 - 48.5
    VertRefresh 50-70
EndSection
Section "Device"
    Identifier  "fglrx"
    VendorName  "ATI "
    BoardName   "ATIx300"
    Driver     "fglrx"
    VideoRam    65536
EndSection
Section "Device"
    Identifier  "Radeon"
    Driver      "radeon"
    VideoRam    65536
    Option      "EnablePageFlip" "True"
    Option      "backingstore" "true"
EndSection
Section "Screen"
    Identifier  "Screen 1"
    Device      "fglrx"
    Monitor     "ThinkPadLCD"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection
Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "Extensions"
        Option "Composite" "Enable"
EndSection
#Section "dri"
#       Mode 0666
#EndSection

Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "Auto" # Auto detect
    Option "Device"      "/dev/input/mice"
    Option "EmulateWheel"
    Option "EmulateWheelButton" "2"
    Option "ZAxisMapping"   "4 5 6 7"
EndSection
 
danke für die antwort.
war sehr hilfreich. mir gings hauptsächlich um folgende werte:
HorizSync 31.5 - 48.5
VertRefresh 50-70
sind die in der thinkpad-manual zu finden? hoffe das is nicht eine allzu blöde frage :D

lg
 
  • ok1.de
  • ok2.de
  • thinkstore24.de
  • Preiswerte-IT - Gebrauchte Lenovo Notebooks kaufen

Werbung

Zurück
Oben