• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[gelöst] Monitor geht auf Standby

Ich habe mir heute Debian Sarge installiert und jetzt habe ich folgendes Problem:

Wenn Debian fertig gestartet ist müsste ja eigentlich gdm kommen, aber anstatt dessen geht mein Monitor einfach auf Standby ...

Mit STRG+ALT+F1 geht der Monitor wieder an und ich bin in der Konsole.
Habe schon verschiedene Sachen ausprobiert, aber es hat alles nichts gebracht.

Grafikkarte: NVIDIA Geforce4 MX 440

Gruß
piwke
 
d.h. also das der kdm/gdm/xdm erst garnicht auf deinem bildschirm auftaucht oder ? ich denke mal du solltest deine grafikkarte nochmal richtig einstellen.

als root anmelden und dann mal

:~> xf86cfg

man kanns auch in einem textmode starten

:~> xf86cfg -textmode

oder schau mal in

/etc/X11/XF86Config-4

was da eingestellt ist, und notfalls berichtigen...
 
der Binary-nvidia Treiber muss nicht sein, es reicht auch der FreeX-Treiber nv nur halt ohne Hardware-3D und den hat auch schon ein alter Woody-installer erkannt und entsprechend eingerichtet, daher glaube ich nicht unbedingt, dass das das Problem ist.
 
Also,

ich hab xf86cfg gemacht und erstmal gemerkt das er meine Maus noch nicht erkannt hat. :lol:
Wenigstens habe ich schonmal was gesehen.
Als ich dann unter xf86cfg die Maus konfigurieren wollte, kein weiterer Dialog kam und den Zeiger per Numtab nicht mehr bewegen konnte, habe ich xf86cfg -textmode gestartet.
Dort hab ich dann für die Grafikkarte den passenden Treiber ausgewählt.
Aber es kommt immer noch nichts "grafisches".

Hier einmal die XF86Config-4:

Code:
# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "ServerLayout"
	Identifier     "Default Layout"
	InputDevice    "Generic Keyboard"
EndSection

Section "Files"
			# local font server
	# if the local font server has problems, we can fall back on these
	FontPath     "unix/:7100"
	FontPath     "/usr/lib/X11/fonts/misc"
	FontPath     "/usr/lib/X11/fonts/cyrillic"
	FontPath     "/usr/lib/X11/fonts/100dpi/:unscaled"
	FontPath     "/usr/lib/X11/fonts/75dpi/:unscaled"
	FontPath     "/usr/lib/X11/fonts/Type1"
	FontPath     "/usr/lib/X11/fonts/CID"
	FontPath     "/usr/lib/X11/fonts/Speedo"
	FontPath     "/usr/lib/X11/fonts/100dpi"
	FontPath     "/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
	Load  "GLcore"
	Load  "bitmap"
	Load  "dbe"
	Load  "ddc"
	Load  "dri"
	Load  "extmod"
	Load  "freetype"
	Load  "glx"
	Load  "int10"
	Load  "record"
	Load  "speedo"
	Load  "type1"
	Load  "vbe"
EndSection

Section "InputDevice"
	Identifier  "Generic Keyboard"
	Driver      "keyboard"
	Option	    "CoreKeyboard"
	Option	    "XkbRules" "xfree86"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "de"
	Option	    "XkbVariant" "nodeadkeys"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "Auto"
	Option	    "Device" "/dev/mouse"
EndSection

Section "Monitor"
	Identifier   "CPD-E220E"
	HorizSync    31.5 - 82.0
	VertRefresh  50.0 - 90.0
	Option	    "DPMS"
EndSection

Section "Device"
	Identifier  "Card1"
	Driver      "nv"
	ChipSet     "GeForce4 MX 420 with AGP8X"
	Card        "nv GeForce4 MX 420 with AGP8X"
EndSection

Section "DRI"
	Mode         0666
EndSection

und die Fehlermeldung wenn ich X starte habe ich unter http://home.tiscali.de/piwke/XFree86.0.log
hochgeladen weil die etwas lang ist.
Kann es sein das es nur an der Maus liegt?

Danke schonmal für eure Antworten. :D

Gruß
piwke
 
Es liegt also an der Maus ...

Gnome startet jetzt ohne Probleme, nur kann ich leider die Maus nicht bewegen.

Wie bringe ich ihn jetzt dazu, dass er die Maus erkennt? (ist keine besondere)

Code:
Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "PS/2"
	Option	    "Device" "/dev/mouse"
EndSection

Da ist doch nichts falsch dran oder?

Gruß
piwke
 
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/mouse"

das sind ein paar einträge zu wenig habe ich das gefühl, ich dachte da sollte mehr sein.

BEISPIEL: So in der Art

identfiere "MAUS"
Driver "mouse"
Option "SendCoreevents true" oder CorePointer
Option "Device /dev/Input/mice" oder Device/dev/psaux
Option "Protocol ImPS/2"
Option "Emulate3Buttons true"
Option "ZAsxisMapping 4 5"

bin mir aber nicht genau sicher...

bei dir steht

Option "Device" "/dev/mouse"

wie ist die maus den angeschlossen ?

/dev/psaux = PS/2
/dev/Input/mice = USB
 
Oben