Creative SB X-Fi Extreme Audio Sound Card in Ubuntu

Last month my onboard sound card start being crazy, it work random after each shutdown. When I want to watch movies, I have to switch off my computer and turn on by hoping the onboard sound card work again. At first, I’m think this should be the drivers issues and my onboard sound card symptom do appear on this site. So I download the latest ALSA driver and I compile, but this can’t help.

Finally I can’t stand it anymore and bought Creative SB X-Fi Extreme Audio sound card to replace it. The old ALSA driver come with Ubuntu wouldn’t work with this card. I have to use the latest ALSA driver, you can download the driver from here. These are summary of this guide to compile and install the ALSA driver:

> tar jxf alsa-driver-xxx
> tar -xf alsa-driver-xxx
> cd alsa-driver-xxx
> ./configure --with-cards=ca0106 --with-sequencer=yes; make;
> sudo make install

Now restart your computer and the sound card should be working. If you need get the 5.1 surround work, you can edit your .asoundrc using editor you prefer(for original guide go here) :

	> vim .asoundrc

and add this in:

	pcm.!default {
	   type plug
	   slave.pcm "surround51"
	   slave.channels 6
	   route_policy duplicate
	}

Reference:

  1. Ubuntu HDA Intel HOWTO
  2. ALSA Module - CA0106
  3. Surround Sound in Linux
  4. The Simple Way to Get 5.1 Surround Sound Audio Working in Ubuntu

2 Responses to “Creative SB X-Fi Extreme Audio Sound Card in Ubuntu”

  1. Reid Says:

    I’ve got a Creative X-Fi Extreme Audio as well. I’m just curious what the lspci output for your card is? Mine is:

    03:00.0 PCI bridge: Creative Labs Unknown device 7006
    04:00.0 Audio device: Creative Labs [SB X-Fi Xtreme Audio] CA0110-IBG

    So far I haven’t got mine working…kind of curious if there might have been a chipset change somewhere along the line.

    Cheers and thanks,
    Reid

  2. liewsheng Says:

    This is my output:

    05:01.0 Multimedia audio controller: Creative Labs SB Audigy LS

    Mine X-Fi Extreme Audio version is using CA0106 chipeset which is different than yours CA0110 (which is a PCIe version), you can check this on this site:

    http://www.creative.com/oem/products/chips/CA0110.asp
    http://en.wikipedia.org/wiki/Sound_Blaster_X-Fi

    Unfortunately the ALSA sound card matrix don’t show any information about CA110:

    http://www.alsa-project.org/main/index.php/Matrix:Vendor-Creative_Labs

Leave a Reply