Sound card
In order to get sound out of your FreeBSD box, you'll need to either load your sound driver module or compile sound support in your kernel -- it's not installed by default. For this you need to use kldload to load your sound driver. If you don't know which sound card you have -- and therefore don't know which driver to use -- you can load the generic snd_driver module (in 5.x systems -- in 4.x you need to load the snd module), which works for most cards, like so:
samizdata# kldload snd_driver
If that works, you'll probably want it to load automatically at boot time. To do so, you'll want to append a line about snd_driver to your loader.conf:
samizdata# echo snd_driver_load="YES" >> /boot/loader.conf
And presto, when booting, your system will always try to load snd_driver.
FreeBSD5.4 and above Sound
Since 27/07/04 the sound system has changed a lot and now to install sound under FreeBSD you have to do the following:
freebsd# kldload sound
Then find out your sound card. I'm using an ASUS A7N8X motherboard with Nvidia onboard sound so I typed
freebsd# kldload snd_ich
To find out what driver will work with your sound board/chip have a look at the NOTES file in /usr/src/sys/conf/NOTES - search for 'snd' and you will find descriptions of all the different sound drivers. (The impatient may want to try running this shell script instead, which will automatically check each sound driver installed on the system to see if it works, and let you know what it found out.)
Then when I had tested this and it worked I entered the following into my kernel:
# Base sound driver - required for all cards device sound # Device-specific driver - may be different on other systems besides mine! device snd_ich
and recompiled. However, recompiling the kernel is absolutely NOT necessary for sound support, as you can just dynamically load the modules for sound support at boot time, by adding lines to /boot/loader.conf:
sound_load="YES" snd_ich_load="YES"
Of course remember to replace snd_ich_load with whatever your individual device is.