View previous topic :: View next topic |
Author |
Message |
FrancisA Tux's lil' helper

Joined: 17 Dec 2010 Posts: 111
|
Posted: Mon Jan 03, 2011 12:41 pm Post subject: kein xorg.conf |
|
|
Hallo, etwas was mir nciht ganz eingeht. Seit längerem habe ich kein xorg.conf mehr (sowohl hier als auch in Ubuntu. Derweil geben so viele Anleitungen Empfehlungen für xorg.conf. 1) ist die irgendwie "abgeschafft" worden oder 2) muss man die bei Bedarf erst erstellen? mit Xorg -cofigure 3) wo weiß X sonst, welche Einstellungen es nehmen muss? |
|
Back to top |
|
 |
py-ro Veteran


Joined: 24 Sep 2002 Posts: 1734 Location: Velbert
|
Posted: Mon Jan 03, 2011 1:15 pm Post subject: |
|
|
Das Zauberwort heißt Autodetection.
Heute kann man eine xorg.conf haben, muss es aber nicht. Ganz neu ist auch xorg.conf.d/
Wenn solche Dateien/Ordner bestehen überschreiben diese die Einstellungen der Autodetection.
Bye
Py |
|
Back to top |
|
 |
FrancisA Tux's lil' helper

Joined: 17 Dec 2010 Posts: 111
|
Posted: Mon Jan 03, 2011 1:42 pm Post subject: |
|
|
py-ro wrote: | Das Zauberwort heißt Autodetection.
Heute kann man eine xorg.conf haben, muss es aber nicht. Ganz neu ist auch xorg.conf.d/
Wenn solche Dateien/Ordner bestehen überschreiben diese die Einstellungen der Autodetection.
Bye
Py |
Asso, ja das xorg.conf.d habe ich schon gesehen. D.h. mit xorg.conf kann man default Einstellungen noch korrigieren (oder dieses neue xorg.conf.d)? |
|
Back to top |
|
 |
Josef.95 Advocate

Joined: 03 Sep 2007 Posts: 3952 Location: Germany
|
Posted: Mon Jan 03, 2011 1:57 pm Post subject: |
|
|
FrancisA wrote: | Asso, ja das xorg.conf.d habe ich schon gesehen. D.h. mit xorg.conf kann man default Einstellungen noch korrigieren (oder dieses neue xorg.conf.d)? | Mit beidem.
Für genaueres schaue auch mal in der |
|
Back to top |
|
 |
mrsteven Veteran


Joined: 04 Jul 2003 Posts: 1938
|
Posted: Mon Jan 03, 2011 10:20 pm Post subject: |
|
|
Das hier ist z.B. für die deutsche Tastaturbelegung:
/etc/X11/xorg.conf.d/70-keyboard.conf: |
Section "InputClass"
Identifier "keyboard-all"
MatchIsKeyboard "true"
Driver "evdev"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection
|
Wenn einige (alte) Programme ihre Schriften nicht finden, dann kann etwas in dieser Art hier helfen (je nach installierten Schrifen halt anpassen):
/etc/X11/xorg.conf.d/80-fonts.conf: |
Section "Files"
FontPath "/usr/share/fonts/dejavu/"
FontPath "/usr/share/fonts/ttf-bitstream-vera/"
FontPath "/usr/share/fonts/unifont/"
FontPath "/usr/share/fonts/freefonts/"
FontPath "/usr/share/fonts/corefonts/"
FontPath "/usr/share/fonts/terminus/"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/75dpi/:unscaled"
EndSection
|
Mehr sollte aber auf einem üblichen modernen Desktop-System nicht nötig sein. Wenn doch - siehe Manpage zur xorg.conf _________________ Unix philosophy: "Do one thing and do it well."
systemd: "Do everything and do it wrong." |
|
Back to top |
|
 |
|