DutchDaemon said:Is the CD-ROM first in the boot order in BIOS? If it is, push it down the list.
Beastie said:Tell HAL to stop polling the CD drive:# hal-disable-polling --device /dev/your_cd_device
.
And if you don't really *need* HAL, disable it once and for all.
It's near EOL so it won't bother us too much longer. Be patient.
alie said:Btw i need HAL to make my mouse and keyboard functioning. Is there any way to make mouse and keyboard work properly without HAL ?
mickey said:Add proper InputDevice sections for your mouse and keyboard to your xorg.conf, then you wont need HAL to detect them.
alie said:Is there any simple way means automatic configuration for this ? I am not familiar with xorg.conf. Is there any util that i can use to configure my setting automatically ?
# Xorg -configure
, which will probe all available hardware, and write out an initial config file, which you may then further customize, or copy/paste the mouse/keyboard section from it.# /usr/local/etc/rc.d/hald forcestop
# /usr/local/etc/rc.d/dbus forcestop
Section "ServerFlags"
[...]
Option "AutoAddDevices" "FALSE"
[...]
EndSection
# Xorg -configure
will create them. The generated mouse section should look like this:Section "InputDevice"
[...]
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/sysmouse"
[...]
EndSection
moused_enable="YES"
# /etc/rc.d/moused forcestart
. Move the mouse. You should now see a cursor.alie said:@Beastie: My Keyboard and mouse are working fine now, but i am getting new problem after i removed HAL and DBUS from rc.conf my KDM wont allow me to login to my desktop