PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : X startet nicht mehr - Warum???



Tschonggy
09.11.03, 17:32
Hi

Vor ein paar Tagen lief mein Mandrake9.1 noch einwandfrei. Dann bekam ich von einem Freund eine Funk-Maus mit Rad geschenkt. Die Maus lief auch problemlos nur wollt ich halt das Rad zum Laufen bringen. Hab dann auch ein paar gute Tutorials gefunden und sogleich meine XF86Config-4 editiert. Das Ergebnis war dann das X nicht mehr startet.
Da ich aber die Warnungen der Tutorials befolgte und die alten Maus-Einstellungen mit Kommentaren versah, war's mir dann auch egal. Doch auch mit den alten Einstellungen kam ich nicht mehr rein. Seitdem bin ich verzweifelt auf der Suche nach einer Lösung, doch ich find nix.
XF86Config hab ich auch schon desöfteren ausprobiert, ohne Erfolg. Ich post jetzt hier noch meine XF86Config-4 und die XFree86.0.log - vielleicht wird ja einer daraus schlau.

-------------------------------------------------------------------------------------------------

# File generated by XFdrake.

# ************************************************** ********************
# Refer to the XF86Config man page for details about the format of
# this file.
# ************************************************** ********************

Section "Files"
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Mandrake 6.0 and later now use a font server independent of
# the X server to render fonts.
FontPath "unix/:-1"
EndSection

Section "ServerFlags"
#DontZap # disable <Crtl><Alt><BS> (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
#DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "glx" # 3D layer
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
Option "XkbCompat" ""
Option "XkbOptions" ""
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/psaux"
Option "Buttons" "7"
Option "Resolution" "400"
Option "ZAxisMapping" "6 7"
EndSection

Section "Monitor"
Identifier "monitor1"
VendorName "Samsung"
ModelName "Samsung SyncMaster 750(M)b"
HorizSync 30-70
VertRefresh 50-160

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine "1024x480" 65.00 1024 1032 1176 1344 480 488 494 563 -hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616
EndSection

Section "Device"
Identifier "device1"
VendorName "nVidia Corporation"
BoardName "NVIDIA GeForce2 DDR (generic)"
Driver "nvidia"
Option "NvAGP" "1"
Option "DigitalVibrance" "0"
EndSection

Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 16

Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubsection
EndSection

Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse0" "SendCoreEvents"
Screen "screen1"
EndSection

-------------------------------------------------------------------------------------------------


XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.21-0.13mdksmp i686 [ELF]
Build Date: 12 March 2003
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Sun Nov 9 18:18:29 2003
(==) Using config file: "/etc/X11/XF86Config-4"
Data incomplete in file /etc/X11/XF86Config-4
Undefined InputDevice "Mouse1" referenced by ServerLayout "layout1".
(EE) Problem parsing the config file
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file "/var/log/XFree86.0.log".
Please report problems to xfree86@xfree86.org.

BSM
09.11.03, 17:41
Lesen bildet ;)

Im ServerLayout steht eine Mouse1 drin, die aber nirgendwo definiert wird (warscheinlich deine neue maus?).

Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
#InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse0" "CorePointer"
Screen "screen1"
EndSection

Gruss Robert

zander
09.11.03, 17:45
In der ServerLayout Sektion gibst Du drei Eingabegeräte an: "Keyboard1", "Mouse0" und "Mouse1"; für letztere existiert aber keine InputDevice Sektion, daher der Mangel an Kooperationswillen von seiten des X Servers. Es ist wohl das einfachste, die Zeile mit "Mouse0" in der ServerLayout Sektion zu löschen und die "Mouse0" InputDevice Sektion in "Mouse1" umzubenennen.

Tschonggy
09.11.03, 18:48
Und wieder was dazu gelernt ...
Es funzt wieder - Dankeschön :)