From: Andreas <an...@po...> - 2002-12-28 11:24:30
|
Hello Limer Am 28-Dez-02 schrieb Limer: > >> No idea. Normally, it should use the resolution you provide on the >> bootstrap line as a kernel parameter. Does it use this one or does it use >> something else? Maybe your monitor has some troubles synchronising. > > no resolution is given when I launch bootstrap, only video=pm2fb: So maybe you try to provide one. [ snip ext3 stuff ] >> Forget tasksel, it's like catching a mouse with an elephant. Download >> x-window-system by >> >> apt-get install x-window-system > > I just configured my connection and after running this command, I get a > message saying I already have the latest version installed. The better. >> or using aptitude. Afterwards, download some gnome stuff (if you like). >> Aptitude will be of great help here! >> > >> I think you have to provide the BusID here using >> >> BusID "PCI:0:1:0" >> >> Just put it at the end of the "Device" section above (of course before >> EndSection). >> > > Ok I did that and still I get fatal error as you can see below, but it is > something to do with "core devices" (no idea whats this now) The problems is about your mouse. Your XF86Config seems to be pretty fscked up, how did you do that? [ snip first part of XF86Config ] > (**) Option "Protocol" "ImPS/2" > (**) Configured Mouse: Protocol: "ImPS/2" You are using the wrong protocol. > (**) Option "CorePointer" > (**) Configured Mouse: Core Pointer > (**) Option "Device" "/dev/input/mice" You are using the wrong device. > (EE) xf86OpenSerial: Cannot open device /dev/input/mice > No such device. > (EE) Configured Mouse: cannot open input device > (EE) PreInit failed for input device "Configured Mouse" > (II) UnloadModule: "mouse" > (WW) No core pointer registered > No core pointer > > Fatal server error: > failed to initialize core devices No wonder it doesn't work.. ;) Please replace your "InputDevice" Section in your XF86Config with the following snipplet: Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/amigamouse" Option "Protocol" "BusMouse" EndSection PS: add Option "NoInt10" to your "Device" section (that's where you put the glint and BusID stuff in), you don't need it (it may only cause problems). -- Best wishes, Andi |