|
|
发表于 2006-4-6 17:17:03
|
显示全部楼层
Setup KDE to Mount Devices
KDE gives you the power to mount devices such as CDROMs or USB sticks through a single click in a graphical interface. To accomplish this goal you need to have KDE compiled with hal in your USE variable and to have dbus and hal installed on your system. You should also add dbus and hal to the default runlevel and add yourself to the plugdev group.
Code Listing 3.4: Setup device mounting
# emerge --noreplace dbus hal
# rc-update add dbus default
# rc-update add hald default
Add <user> to the plugdev group
# gpasswd -a <user> plugdev
You can also have your devices automatically mounted without interaction, you just need to install ivman and add it to the default runlevel.
Code Listing 3.5: Setup auto-mounting
# emerge --noreplace ivman
# rc-update add ivman default
看看有没有哪步做漏了。 |
|