• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Configure VIA AC'97 onboard soundcard on Linux ?

larva

Member
Hi guys,

I m using Redhat Linux 7.2 and a Soltek SL-75DRV2 motherboard with a built in VIA AC'97 soundcard. I have partition my HDD into Window2000 and Redhat Linux 7.2. Pls guide me on this, Thanks !

regards,
Mark
 
You'll need to get the latest linux kernel from ftp.funet.fi. It's linux-2.4.18.tar.gz and is likely about 30 MB.

You have 2 options here. I suggest #1


Put it in your /usr/src directory
tar -zxvf linux-2.4.18.tar.gz
cd linux
make menuconfig

Option 1:
--

You'll need to configure everything for your system. In the Sound option, there will be something for your on board controller. Build it in to your kernel.

after you're done
make dep
make bzImage
make modules
make modules_install
cp arch/i386/boot/bzImage /boot/linux-2.4.18
cp System.map /boot

Then you'll need to update your bootloader
--

Option #2
--

Find your sound card.

Make it a module. There will be an <M> next to it.

When you're done
make modules
make modules_install
--

Then type insmod /lib/modules/2.4.18/drivers/sound/something.o

It should be somewhere in that area. Go with 1. It will make your computer sleeker.

 
Originally posted by: Chaotic42
You'll need to get the latest linux kernel from ftp.funet.fi. It's linux-2.4.18.tar.gz and is likely about 30 MB.

You have 2 options here. I suggest #1


Put it in your /usr/src directory
tar -zxvf linux-2.4.18.tar.gz
cd linux
make menuconfig

Option 1:
--

You'll need to configure everything for your system. In the Sound option, there will be something for your on board controller. Build it in to your kernel.

after you're done
make dep
make bzImage
make modules
make modules_install
cp arch/i386/boot/bzImage /boot/linux-2.4.18
cp System.map /boot

Then you'll need to update your bootloader
--

Option #2
--

Find your sound card.

Make it a module. There will be an <M> next to it.

When you're done
make modules
make modules_install
--

Then type insmod /lib/modules/2.4.18/drivers/sound/something.o

It should be somewhere in that area. Go with 1. It will make your computer sleeker.

The latest kernel is 2.4.19, and the following quote seems to be an important part of the documentation:

INSTALLING the kernel:

- If you install the full sources, put the kernel tarball in a
directory where you have permissions (eg. your home directory) and
unpack it:

gzip -cd linux-2.4.XX.tar.gz | tar xvf -

Replace "XX" with the version number of the latest kernel.

Do NOT use the /usr/src/linux area! This area has a (usually
incomplete) set of kernel headers that are used by the library header
files. They should match the library, and not get messed up by
whatever the kernel-du-jour happens to be.

EDIT: added bold.
 
Back
Top