cbagger01
Group: Members
Posts: 4264
Joined: Oct. 2003 |
|
Posted: Mar. 09 2006,06:18 |
|
He means to say:
At the bottom of my post is a list of commands that install the sound driver modules (with the appropriate settings) for your computer system.
HOWEVER, it is possible that your system already has these driver modules up and running, but with incorrect settings.
If this is true, you need to "unload" or "rmmod" the incorrectly configured modules before you will be allowed to reload them again with the correct settings.
the
lsmod
command will produce a listing of all of the driver modules that are currently in use on your computer system.
If you find any of these modules on this list (sound, ad1848, uart401, or cs4232), then you will need to manually unload them before you can load in the correct settings. For example:
sudo su rmmod ad1848 rmmod uart401 rmmod cs4232 rmmod sound
modprobe sound insmod ad1848 insmod uart401 insmod cs4232 io=0x530 irq=5 dma=1 dma2=0
|