It should work very well after "apt-get install x-window-system-core gdm gnome" then "gdm". If not, most of the time it's the misconfiguration of the /etc/X11/XF86Config-4 file, at least it was for me. Try and see if the mouse is configured correctly, I had /dev/input/mice working for a USB mouse, but for a PS/2 mouse I had to put /dev/psaux and as protocol ImPS/2. Also check the monitor resolutions and refresh rates in section "Monitor". I'll post this two sections here as they are in my file:
- Code: Select all
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
So, if its not a USB this should work, otherwise put /dev/input/mice instead of /dev/psaux. And the monitor section for my 17" Philips:
- Code: Select all
Section "Monitor"
Identifier "Generic Monitor"
HorizSync 30-85
VertRefresh 50-160
Option "DPMS"
EndSection
Hope this helps. I'm a beginner though I'm sure it must be the configuration file.