Making Echo Mia (Midi) sound cards work under Arch [FIXED]

This guide will install and setup the Echo Mia (Midi) under Arch using ALSA.
Make sure ALSA is installed properly. If not,
# pacman -S alsa-utils
will do the trick.
We will then need to install Echo Mia ALSA drivers, firmware and the Echomixer.
First, check what versions of alsa-lib and alsa-utils are installed by running:
$ pacman -Q alsa-utils
Then download the sources for ALSA:
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.x.tar.bz2
wget ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.x.tar.bz2
wget ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.0.x.tar.bz2
tar xjvf alsa-driver-1.0.x.tar.bz2
tar xjvf alsa-firmware-1.0.x
tar xjvf alsa-tools-1.0.x
where x is replaced as needed with the correct version.
Then we compile the driver with support for mia.
cd alsa-driver-1.0.x
./configure --with-cards=mia
make
sudo make install
Then we install the firmware for the card.
cd ../alsa-firmware-1.0.x
./configure
make
sudo make install
Then we install the echomixer.
cd ../alsa-tools-1.0.x/echomixer/
./configure
make
sudo make install
Now we need to add the snd-mia module to the modules line in /etc/rc.conf. If there are other sound modules active, that conflict with the snd-mia module, disable them. In my case, I had to disable my snd-hda-intel, prefixing it with a '!'.
Now, we have to edit some configuration files.
This should be the only content of ~/.asoundrc:
pcm.mia {
type hw
card 0
ctl.mia {
type hw
card 0
Then, add this to /etc/modprobe.conf:
# ALSA portion
alias char-major-116 snd
alias snd-card-0 snd-mia
# module options should go here
# OSS/Free portion
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0
# card #1
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
Now would be the time to reboot.
After rebooting, make sure that the snd-mia module was loaded.
Run echomixer and activate the VU meter. If the sound module was loaded properly, the VU meters should be active and floating in the -80 to -100 dB region (background noise). If this is the case, we should have a functional mia soundcard.  Most audio programs will still not work despite the module being active, however, we can test the sound output with the aplay command. Next step would be to raise the mixer values to good levels using the echomixer. This could also be done via the alsamixer in terminal.
After the sound output is confirmed, achieving normal sound output using standard ALSA can get rather messy, and sound mixing is not working out of the box. The sound driver often crashed also while trying to play more sounds at the same time.
The solution to this problem is using PulseAudio, which allows mixing, and enables applications to use Mia without further tinkering.
Installation is straight forward, following the guide as shown on the PulseAudio wiki page. After installation of PulseAudio, the ~/.asoundrc should look like this:
pcm.mia {
type hw
card 0
ctl.mia {
type hw
card 0
pcm.pulse {
type pulse
ctl.pulse {
type pulse
pcm.!default {
type pulse
ctl.!default {
type pulse
As for the /etc/pulse/default.pa, it shouldn't be needed to be changed. If problems arise when loading PulseAudio, make sure that pulseaudio is loaded after hal, as it is needed for detection by PulseAudio.
Now, go back to /etc/rc.conf, and the DAEMON line should look something like this:
DAEMONS=(@syslog-ng @network @netfs @crond fam hal alsa pulseaudio mpd @slim)
The important part are that hal, alsa and pulseaudio are loaded sequential after eachother. After a reboot, it should work.
Last edited by Themaister (2008-10-07 15:31:33)

This guide will install and setup the Echo Mia (Midi) under Arch using ALSA.
Make sure ALSA is installed properly. If not,
# pacman -S alsa-utils
will do the trick.
We will then need to install Echo Mia ALSA drivers, firmware and the Echomixer.
First, check what versions of alsa-lib and alsa-utils are installed by running:
$ pacman -Q alsa-utils
Then download the sources for ALSA:
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.x.tar.bz2
wget ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.x.tar.bz2
wget ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.0.x.tar.bz2
tar xjvf alsa-driver-1.0.x.tar.bz2
tar xjvf alsa-firmware-1.0.x
tar xjvf alsa-tools-1.0.x
where x is replaced as needed with the correct version.
Then we compile the driver with support for mia.
cd alsa-driver-1.0.x
./configure --with-cards=mia
make
sudo make install
Then we install the firmware for the card.
cd ../alsa-firmware-1.0.x
./configure
make
sudo make install
Then we install the echomixer.
cd ../alsa-tools-1.0.x/echomixer/
./configure
make
sudo make install
Now we need to add the snd-mia module to the modules line in /etc/rc.conf. If there are other sound modules active, that conflict with the snd-mia module, disable them. In my case, I had to disable my snd-hda-intel, prefixing it with a '!'.
Now, we have to edit some configuration files.
This should be the only content of ~/.asoundrc:
pcm.mia {
type hw
card 0
ctl.mia {
type hw
card 0
Then, add this to /etc/modprobe.conf:
# ALSA portion
alias char-major-116 snd
alias snd-card-0 snd-mia
# module options should go here
# OSS/Free portion
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0
# card #1
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
Now would be the time to reboot.
After rebooting, make sure that the snd-mia module was loaded.
Run echomixer and activate the VU meter. If the sound module was loaded properly, the VU meters should be active and floating in the -80 to -100 dB region (background noise). If this is the case, we should have a functional mia soundcard.  Most audio programs will still not work despite the module being active, however, we can test the sound output with the aplay command. Next step would be to raise the mixer values to good levels using the echomixer. This could also be done via the alsamixer in terminal.
After the sound output is confirmed, achieving normal sound output using standard ALSA can get rather messy, and sound mixing is not working out of the box. The sound driver often crashed also while trying to play more sounds at the same time.
The solution to this problem is using PulseAudio, which allows mixing, and enables applications to use Mia without further tinkering.
Installation is straight forward, following the guide as shown on the PulseAudio wiki page. After installation of PulseAudio, the ~/.asoundrc should look like this:
pcm.mia {
type hw
card 0
ctl.mia {
type hw
card 0
pcm.pulse {
type pulse
ctl.pulse {
type pulse
pcm.!default {
type pulse
ctl.!default {
type pulse
As for the /etc/pulse/default.pa, it shouldn't be needed to be changed. If problems arise when loading PulseAudio, make sure that pulseaudio is loaded after hal, as it is needed for detection by PulseAudio.
Now, go back to /etc/rc.conf, and the DAEMON line should look something like this:
DAEMONS=(@syslog-ng @network @netfs @crond fam hal alsa pulseaudio mpd @slim)
The important part are that hal, alsa and pulseaudio are loaded sequential after eachother. After a reboot, it should work.
Last edited by Themaister (2008-10-07 15:31:33)

Similar Messages

  • Sound not working under Lion. No output device. Need fix!

    Hi there,
    after installing Lion 10.7 I never managed to get my sound working. Under System Preferences -> Sound I got no sound devices installed. Same happens when I open Audio-Midi-Setup. Everything is greyed out, can't even add something. Audio-Midi-Setup also will CRASH when trying to configure anything.
    I tried already everything as suggested in forums:
    - Repaired Disk Permissions
    - Rebootet several times
    - Reset PRAM
    - Reinstalled OSX Lion again again and again
    - Updated to 10.7.2 (all the same crap)
    - Deleted some plists and stuff as suggested by users
    - Ran Apple Hardware Test from my second SL Applications Disk
    I've spent hours and nothing seems to work with this crappy OS. Apple, we really need a fix for this!
    Lion = Windows Vista!

    Hi,
    not sure if this helps, but you can try. I installed Lion today and found myself in a Czech localization of Mac OS. (I had Czech set as my preferred language, but Czech localization was not available before Lion, so this was new for me.) Since I found the localized folder names extremely confusing, I decided to switch to English. However, after a reboot the sound stopped working and I experienced exactly the same problems as you're describing. Out of desperation I tried switching the localization back to Czech and voila, the sound is working again. Let's hope this gets fixed soon.

  • What sound cards work?

    I have been trying to get multimedia working on my arch machine; I finally gave up on the on-board sound and bought a SoundBlaster, which I read worked in other machines.  Unfortunately, I got the SoundBlaster Live 24 bit, which, while supported under ALSA (theoretically), sounds like garbage.
    I've done a fair amount of Googling, but people seem reluctant to say that any particular card works well.  Since there's a lot of "it depends on what you are using it for", I'm wondering if any sound cards actually work well under Linux.
    If you play DVDs or other movies on your Arch machine;
    1.  What sound card are you using;
    2.  What applications do you use it with;
    3.  Are you generally satisfied with the sound;
    4.  What aren't you satisfied with?
    I'm hoping for better info before I part with more $$$.  Thanks in advance.

    Good morning tmadhavan,
    tmadhavan wrote:
    nggalai I'm sure we've had this problem and discussion before, but how on earth do you get surround sound with that module?
    I'm using cs46xx as well, can't get surround. I even went out and bought a SB, only to find it was the 24bit version which is effectively useless.
    Are you using any special scripts or .asoundrc files or anything?
    Well, I only get surround sound with Xine--all other applications (including totem, which should use the xine-libs) stick with two-channel sound. In Xine, it's as easy as selecting 4.1 from the speakers dropdown; don't forget to un-mute PCM1 and the surround channels in alsamixer, and that's that. I didn't change anything in the alsa scripts or alsa module for the kernel.
    Mind, this only works for Dolby Digital 5.1 DVD. Dolby Surround will stick to two channels as Xine doesn't come with a Dolby Surround decoder for copyright reasons (at least it seems so).
    93,
    -Sascha.rb

  • Sound card works but not when rebooting

    i followed all the steps...
    alsaconf
    alsamixer
    /etc...noise.wav
    alsactl store
    edited the rc.conf
    sound works but when i reboot, before the root i get the error... sound card not found?

    check in rc.conf and see if your sound module isn't listed. Odd that it doesn't find your sound card on boot.
    U may also need to run alsactl store as root. Permission problem, possibly?
    sounds like alsaconfig is finding and loading the module each time u reboot, but its not being loaded because I think u need to run alsactl store as root, since it needs to be loaded by the kernel. That would require root privileges I would think. That's my best guess.
    Last edited by jacko (2008-01-10 22:38:10)

  • Will this usb/firewire card work under OSX jaguar?

    here is the link to it. I know it says windows but could it possibly work on mac?
    http://www.jr.com/JRProductPage.process?Product=3995178

    Vstream,
    When you hear the startup chime, two things can happen that might give the appearance the 'book has shut off.
    1. After the chime, the Wallstreet goes through a memory test and nothing appears to be happening. This test can take up to 45 seconds with a lot of RAM. After the self-test, the display lights up and the OS begins to load. This test does NOT run through a restart, only a cold start. If you hear the startup chime, let the 'book sit for a few minutes and see if anything happens. Also listen for the spinning of the HD below the 'delete' key; if it is still running, the 'book is still ON.
    2. When running OSX, the Wallstreet has a peculiarity where if the power manager has lost all power, the 'book will start up to a dark display and/or wake to a dark display. The only fix for this condition is to boot to a pre-OSX CD (any will do); this will correct a problem with the power manager. The power manager can lose power if you have no working main battery plus the power adapter is unplugged...then the internal rechargeable PRAM battery runs down.
    I would try this: Make sure the 'book is OFF by unplugging the power adapter and removing the main battery. Open the CD tray by pushing an opened paperclip into the little hole next to the button and load your pre-OSX Classic CD. Connect the power adapter, then press the power button and hold down the 'c' key; if no startup chime, reset the power manager, then press the power button again while pressing the 'c' key.
    If it starts to the CD, open the Startup Disk in Control Panels under the Apple menu, select OSX, save it by closing the control panel, then click restart in the Special menu and see if it will boot to OSX.
    Edit: Make sure all peripherals and PC cards are removed.
    Message was edited by: jpl

  • Will my new sound card work with windows 7 64 bit??

    I had creative sound blaster xtreme music, it use the old pci port. It has been giving problems ever since i got a new computer with windows 7 and a gigabyte mother board. The computer will sometimes not detect the car, when it does i will work for a while then a beeping sound plays, or sometimes i wont have sound at all when it is detected. Anyway, I am upgrading to the PCI-express xfi champion card. Is this card going to work with windows? 7 and not give me though problems?
    Computer detais:
    i7 930
    Gigabyte - UD7
    Radeon HD-5870

    It will work,as I have one on Win 7 x64. Without problems is another story.
    There are plenty of posts about this card.Have a look around.

  • I have an hp envy 14 on windows 7 64-bit, after making two updates my sound stopped working

    I got the update message on my screen from HP Support Assistant, made the two updates they recommeded and when my computer restarted there was no sound and it started to move slower. Any help?

    Go to the link below.Enter your Product Number as listed on Service Tag attached to bottom of notebook (may be under battery). You can also get the Product Number by pressing Fn + Esc key. After entering PN, click Next ,then choose Software & Drivers.On the next page use the dropdown to select your OS (probably Windows 7 64bit). A list will populate with drivers. Download & Save the latest Audio driver.
    http://h10025.www1.hp.com/ewfrf/wc/siteHome?cc=us&lc=en
    Go into Control Panel,Programs & Features-uninstall IDT software.Restart the laptop and install using the downloaded file.
    ```````````````````````````````````````
    If the laptop continues to be slow, go back to the page above and manually update BIOS by downloading & saving the BIOS update file. Next execute it to update.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • How does power management work under Arch?

    So, my Arch install doesn't have Suspend to RAM working. While trying to fix it, I was trying to understand the application chain that deals with power events such as lid close. I have read
    https://wiki.archlinux.org/index.php/Acpid
    https://wiki.archlinux.org/index.php/Laptop_Mode_Tools
    https://wiki.archlinux.org/index.php/Po … CPI_events
    Now, I have XFCE4 with its default power manager installed. I'm quite confused as to what it is that I need along with that to get things to work.
    In short, which of the following configurations is *correct*, in the sense that it will work without manual configuration out of the box, or with minimal configuration, and has a graphical front-end controllable from XFCE?
    - xfce4-power-manager
    - systemd -> xfce4-power-manager
    - systemd -> acpid
    - systemd -> acpid -> xfce4-power-manager
    Also, if I want to use laptop-tools, then does this change?
    Lastly, how do I diagnose the suspend to RAM issue? How do I check whether suspend or resume from suspend is failing?

    ashrj wrote:So, my Arch install doesn't have Suspend to RAM working. While trying to fix it, I was trying to understand the application chain that deals with power events such as lid close. I have read
    Lastly, how do I diagnose the suspend to RAM issue? How do I check whether suspend or resume from suspend is failing?
    If you are using Xfce you don't need acpid and instead of laptop-tools try TLP which enabled successful suspend to ram on an older laptop I had, with Xfce on it.

  • Anyone have a Nokia phone that works under Arch [Linux!] ?

    Hi,
    Just got myself a Nokia N95 would like to get it hooked up via usb
    Bus 002 Device 002: ID 0421:0070 Nokia Mobile Phones
    shows up in lsusb but gnome does not mount it
    It is possible even if I can get transfer to phone memory?
    Thanks
    MrG

    It turns out that N95 is not supported by gammu or gnokii atm.... I can use bluetooth although Its a little hit and miss but I have manged to get usb connection working which means I can transfer files to and from phone...
    Well its a start :-)
    Last edited by Mr Green (2008-04-23 15:21:38)

  • FW800 and FW sound card no longer working. Mmmmm

    My iMac has just stopped working with my firewire Edirol FA66 sound card. It has worked for years but now the iMac refuses to see it. I spoke to Apple Care this morning who ran me through a few things but didn't help. Having said that, my FW800 Sandisk card reader DOES work OK.
    To through a spanner in the works, the sound card works fine with my MBP with the same lead and the same 10.8.4 OS.
    A second call to AC this afternoon, after checking my MBP worked OK, was a wasted call. Sadly he didn't have a clue and kept pointing me in the direction of divers... for WINDOWS!!!
    Anyway, I'm confused.com. Please can anyone help me?

    JonHob wrote:
    My iMac has just stopped working with my firewire Edirol FA66 sound card. It has worked for years but now the iMac refuses to see it. I spoke to Apple Care this morning who ran me through a few things but didn't help. Having said that, my FW800 Sandisk card reader DOES work OK.
    To through a spanner in the works, the sound card works fine with my MBP with the same lead and the same 10.8.4 OS.
    A second call to AC this afternoon, after checking my MBP worked OK, was a wasted call. Sadly he didn't have a clue and kept pointing me in the direction of divers... for WINDOWS!!!
    Anyway, I'm confused.com. Please can anyone help me?
    Care to share?
    Please detail ALL you have done so far in the way of troubleshooting?   Need this info to avoid the been there done that scenarios.

  • Skype can't detect sound card

    Skype was working just fine previously when making a video call (could hear the other person well - no problems.) Then I stopped using the monitor stereo speakers and installed desktop speakers.
    Wasn't happy with them and uninstalled them about a day or two later. When I tried to make a video call again (after choosing monitor speakers again under the pc control panel - sounds and audio devices, also tried to choose monitor stereo speakers in Skype but didn't see this option) - there was no sound - even on the Skype test.
    So I tried "check settings" and saw under speaker - "can't detect your sound card". Under adjust speaker settings there's no speaker suggestions at all - it just says none.
    I also cancelled the speaker setting on SoundMAX digital integrated audio under the control panel.
    I have rebooted the system but still the same problem!

    I'v sorted out the problem. Sorry for the inconvenience!

  • Solution: 2 sound cards; setting one as default

    I've got 2 sound cards in my system: one onboard and one an add-in PCI card. I want to make the better card, the PCI card, the default. But the system seems to detect the onboard sound card first and wants to make it the default card.
    I'm coming from Debian/Ubuntu where I had found a solution for this problem. I can't recall exactly what I did to get the PCI card selected as default, but it was probably by specifying modprobe order in /etc/modules. And I couldn't recall the URL of the page where I found that solution. To top it all off, what works under Ubuntu/Debian ain't necessarily gonna work under Arch.
    So, I began searching the web for solutions for this problem, favoring results that dealt with Arch. I found a few things that seemed to be relevant but, on careful reading, I found them confusing. I couldn't find any very specific directions to do what I was trying to do under Arch. Instead, I found various bits and pieces of information that seemed relevant but that needed to be put in some comprehensible form. So, I resorted to some fiddling around, hoping I would stumble on a solution. I think I have stumbled onto the solution to the problem of making one of two sound cards be the system's default sound card--at least it appears to be working now on my system. This post will therefore be an attempt to put the necessary information into order, providing a routine that others who may be faced with this task may follow.
    The steps are as follows: 1) install alsa-utils; 2) as root, run alsaconf; 3) appropriately edit the file /etc/modprobe.d/sound that alsaconf created in step 3; 4) reboot to find the card you wanted to be the default sound card actually selected as the system's default. An important note: I didn't use alsaconf to do any sound card configuration, though that is its job. The only real role alsaconf played in the routine I used was to create the /etc/modprobe.d/sound file (it seems to create that file after you successully run the command alsaconf). Perhaps the file could be simply created de novo (sudo touch /etc/modprobe.d/sound , set permissions appropriately) and there would be no need to even run alsaconf. I didn't try that, but anyone following these instructions might want to consider doing it this way. Please post your results in this thread if you manually create that file rather than using alsaconf for creating the file.
    After I ran alsaconf, the /etc/modprobe.d/sound file contained only two lines, and those lines were specific to the onboard sound chip that I did NOT want to be the default sound card on my system. The lines looked like this:
    alias snd-card-0 snd-intel8x0
    alias sound-slot-0 snd-intel8x0
    From documentation I had read, I understood that the zero (0) in these entries was an indication that this onboard Intel sound card would be the default card. If the /etc/modprobe.d/sound file had contained entries for both my cards (not sure why it didn't), then one set of entries (referring the system's default sound card) would have a zero associated with them, while the other set of two entries (referring to the non-default, second sound card) would have had a one (1) associated with them.
    With this information in mind, I then managed to get information from my system (by using lsmod, I believe) on what was the module name for my second, PCI card--the one I wanted to be the system's default sound card. The module name is snd_ymfpci. Once I had that information, I manually added a second set of two lines to /etc/modprobe.d/sound so that the file looked as follows:
    alias snd-card-0 snd_ymfpci
    alias sound-slot-0 snd_ymfpci
    alias snd-card-1 snd-intel8x0
    alias sound-slot-1 snd-intel8x0
    As you can see, the entries for the snd_ymfpci have a zero associated with them, while the built-in intel sound card entries have a one (1) associated with them. I wasn't at all sure that this would bring the desired results but I found that, once I rebooted the system, that the add-in PCI card was actually now the default card for the system, while the intel onboard card was non-default. Thus, I believe I've stumbled on a solution for making the system use one of two sound cards on the system as the default sound card.
    Please feel free to add to or correct my instructions. I can't claim infallible expertise in this matter, so there could well be mistakes in either my understanding or in the steps I've spelled out here. Or perhaps there's just a simpler way to do this under Arch.
    James
    Btw: I'm using the gnome environment. There seems to be a conflict, or at least some friction, between alsa's sound controls and those of the gnome desktop environment. It's a separate problem, but is there some way I can make gnome's sound controls (e.g., gnome's volume control) override alsa's? So far I've found myself using alsamixer to make any real adjustments to the sound.
    Last edited by jamtat (2008-07-09 16:13:09)

    I've written some post about it somewhere, but there's other ways of setting a default card. What I use at the moment (in XFCE):
    The output of  cat /proc/asound/cards:
    user ~  $   cat /proc/asound/cards
    0 [CMI8738        ]: CMI8738-MC6 - C-Media CMI8738
                          C-Media CMI8738 (model 55) at 0x9c00, irq 17
    1 [NVidia         ]: HDA-Intel - HDA NVidia
                          HDA NVidia at 0xfe020000 irq 20
    2 [U0x46d0x8d7    ]: USB-Audio - USB Device 0x46d:0x8d7
                          USB Device 0x46d:0x8d7 at usb-0000:00:02.0-8, full speed
    3 [default        ]: USB-Audio - USB Audio DAC   
                          Burr-Brown from TI               USB Audio DAC    at usb-0000:00:02.0-5, full s
    I want to switch between sound-device "CMI8738" and "default" ("default" is a system label not set by me; it's a bit confusing but as you see the system has given the other USB-Audio device another unique label). You could also use the ID numbers, but the drawback of that is that it might change if you plug and unplug USB-Audio devices, hence the unique label is a better choice.
    I choose to make a directory like this: /usr/sound. In sound I've to files, could be more if I wanted to switch between other cards as well. First file, named by me "asound_usb":
    pcm.!default {
      type hw
      card default
      ctl.!default {
      type hw
      card default
    Another named "asound_pci":
    pcm.!default {
      type hw
      card CMI8738
      ctl.!default {
      type hw
      card CMI8738
    The idea is to copy the preferred file to /etc/asound.conf. Hence I made two simple scripts in /bin. "alsa_usb":
    #!/bin/sh
    cp /usr/sound/asound_usb /etc/asound.conf && /etc/rc.d/alsa restart
    And another "alsa_pci":
    #!/bin/sh
    cp /usr/sound/asound_pci /etc/asound.conf && /etc/rc.d/alsa restart
    Writing in terminal from root "alsa_usb" or "alsa_pci" will switch default sound-device. Nothing fancy but pretty handy in my view. If someone prefer to have a desktop entry in /usr/share/applications you could use gksu for example. One I named "alsa_switch_usb.desktop":
    [Desktop Entry]
    Type=Application
    Name=Alsa switch - USB
    Comment=Eget skript
    Icon=sonata-stock_volume-max.png
    Exec=gksu -u root alsa_usb
    Terminal=false
    StartupNotify=false
    Categories=Application;AudioVideo;
    Another "alsa_switch_pci.desktop":
    [Desktop Entry]
    Type=Application
    Name=Alsa switch - PCI
    Comment=Eget skript
    Icon=sonata-stock_volume-max.png
    Exec=gksu -u root alsa_pci
    Terminal=false
    StartupNotify=false
    Categories=Application;AudioVideo;
    I don't know whether this is an ugly solution or not. Whatever the case is it works very well... for me. The asound.conf works of course as a permanent setting, I just prefer the switch option.
    Last edited by KimTjik (2008-07-10 10:50:31)

  • Recommended sound card for Oracle Redhat Linux 64 bit?

    Dear Experts,
    I'm trying to install the latest Oracle Redhat 5.
    64 bit. On a certified Asus motherboard.
    It will be a dual boot windows/Linux machine.
    And I'm having an awful time with the sound card for my new server.
    (It will be used for learning, at home. It's important to
    have sound for some instructional videos that I will also watch.)
    Other installs, sound has installed and worked fine.
    I believe it's partially because the sound came directly off
    the motherboard in those cases.
    But with this new server, it came with a sound card, no onboard.
    The sound card works with windows. But not with Linux.
    I've been swapping three sound cards in and out, trying to get
    one to work. Each has some partial success, but none meet all
    of the requirements (below).
    What is really frustrating is that I want the sound to go
    to the green headphone jack on the front of the computer case.
    To do this, there is a cable that connects the sound card, to
    the front of the chassis.
    The existing sound card that I have, has a connector for this.
    It is an "HD audio", or an AC 97 connector. There two rows of
    five pins, with one pin blocked up, so that the connector is
    inserted in the correct manner. The cord is hard wired to the case.
    You can see some images of the pins and the cords here:
    http://support.creative.com/kb/showarticle.aspx?sid=14133
    http://www.techpowerup.com/forums/showthread.php?t=94769
    http://support.gateway.com/s/MOTHERBD/Intel2/4001152/4001152mvr20.shtml
    http://www.e4allupgraders.info/dir1/ecase/support/front_panel_support.shtml
    http://www.gamespot.com/pages/forums/show_msgs.php?topic_id=27289176
    You would figure that whether the connector existed or not would be a standard
    feature that would be listed for sound cards. But it's rare to find it listed anywhere.
    When I went to the computer store, I had to open all the boxes to see if it
    was there or not!!!! Manufacturers, this is not that difficult!!
    At this point, after a couple of days of struggle, I just want to buy a
    simple sound card that works right out of the box.
    Here are the requirements:
    - gets instantly recognized by Linux (Oracle Redhat 5) 64 bit, and plays sound
    with the standard Linux drivers. I believe I have all of the drivers installed,
    because a few cards do play with them automatically. During installation, I
    installed Every package available.
    - no installation of special Linux drivers required.
    - the other big requirment is that the card have output to an HD Audio,
    or AC 97 connector, and will play music through the headphone jack.
    (Believe it or not, I have one card that works fine out the back,
    but won't work through the HD Audio. But it works fine in Windows)
    - will also work with Windows 64 bit.
    Does anyone have any good sound card recommendations that will meet all these requirements?
    Thanks a lot!

    Almost a year later... what have you been listening too? :-)
    I have to admit that I'm not an expert for "sound" under Linux. I think you may find http://www.alsa-project.org/main/index.php/Main_Page interesting. It also shows which sound cards are compatible.
    ALSA is pretty much standard under Linux and stands for Advanced Linux Sound Architecture. Together with pulse-audio it provides audio and MIDI functionality to the Linux operating system and is, by default, also included in RHEL and other descendants. You can install pulseaudio support using the EPEL repository following the instructions at http://fedoraproject.org/wiki/EPEL
    wget rpm -Uvh http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
    sudo rpm -Uvh epel-release-5-4.noarch.rpm
    yum list alsa* pulseaudio*
    Loaded plugins: downloadonly, rhnplugin, security
    This system is not registered with ULN.
    ULN support will be disabled.
    Installed Packages
    alsa-lib.i386                            1.0.17-1.el5           installed 
    alsa-lib.x86_64                          1.0.17-1.el5           installed 
    alsa-utils.x86_64                        1.0.17-1.el5           installed 
    Available Packages
    alsa-lib-devel.i386                      1.0.17-1.el5           ol5_u7_base
    alsa-lib-devel.x86_64                    1.0.17-1.el5           ol5_u7_base
    alsamixergui.x86_64                      0.9.0-0.3.rc1.el5      epel      
    pulseaudio.x86_64                        0.9.10-1.el5.3         epel      
    pulseaudio-core-libs.i386                0.9.10-1.el5.3         epel      
    pulseaudio-core-libs.x86_64              0.9.10-1.el5.3         epel      
    pulseaudio-esound-compat.x86_64          0.9.10-1.el5.3         epel      
    pulseaudio-libs.i386                     0.9.10-1.el5.3         epel      
    pulseaudio-libs.x86_64                   0.9.10-1.el5.3         epel   
    etc.Edited by: Dude on Dec 8, 2011 7:02 PM

  • Creative Labs SoundBlaster PCI128 sound-card software prob

    Blast it all! Where can I find the necessary software to make my Creative Labs PCI28 sound card work? (I hope that "Blast it all!" doesn't offend... )
    The background
    I bought a used PC from a PC-idiot (a PC-idiot being a PC user who chucks out floppy-disk and CD-ROM software integral to the PC ? I will hazard a guess that there are a lot of these types out there!), and what's worse, the idiot had "ripped out" much of the installed software rather than uninstalling it properly, with the result that the PC ran very unstably, requiring a lengthy start-up procedure in order to compensate for the ripped-out files (start-up often crashed and had to be restarted). In the end I had to run fdisk and rebuild the software system. I took the trouble to save the installed Creative program under Program Files, not that this could be inserted into C:\Program Files of course, but in order to know what I should see when I eventually found the proper software and got it installed. But finding the proper software has proven to be a hard nut to crack, which is why I bring the problem up here...
    My PC has two Creative Labs cards, a SoundBlaster PCI28 card (CT4700) and a PC-DVD Encore Dxr-3 card (CT7240). I found software for both (the latter only with the help of Creative Labs' technical staff) on Creative Labs' download site, but the driver application that eventually got my PCI28 card to work (some wouldn't even do that much) has snags to it, with the result that my sound card doesn't work properly. The problem is that the CL software download was only an <I>update</I>, and was also devoid of waveset files. The MIDI wavesets cannot load, so this parameter is missing from the installed sound mixer (this problem is well-known and is in fact listed in CL's Knowledgebase under the title "Error ? Can not load MIDI Wavesets, MIDI Playback has been disabled").
    Unfortunately the "fix" suggested there subsumes that the user has access to the original sofware medium (floppy or CD-ROM) so that the complete program can be reinstalled. Which software I don't have, thanks to the PC-idiot from whom I bought this used PC (actually I bought it from his son). The driver-file download that works with the CT4700 (this is the only one that I found that could even come close to working), a certain <B>e28up9x.exe</B>, is only an update, as I said above, and although it is touted as a "stand-alone" application that works with the CT4700, <I>as an update, it is no substitute for the original program itself (it won't stand on its own).</I> What I need ? and cannot find ? is the original program itself.
    To the matter at hand, then
    In the hope that somebody out there (CL staff are more than welcome to participate!) might recognize the animal in question and can therefore point me to a relevant download, I list here the Creative folder that was installed under C:\Program Files on my harddisk before I formattted it (I will try to list the contents of this folder so that it reflects the actual hierarchy ? for example, all folders listed under a plus sign are subfolders to the main folder (or subfolder) in question):
    CREATIVE
    + CTsnd
    Bitmap (contains a .bmp and a .txt file)
    DOSdri've (contains a lot of exe files, most beginning with "ap": apconfig, apinit, -legacy,
    -load, -mixer, -test)
    Help (full of ? what else? - help files)
    Media (full of MS Media Player files ending in ".mid")
    + Program (the meat and potatoes full of exe files, a handful of which begin with "ct"
    and end with "32" (before the ".exe" suffix): ctcd32.exe, ctmidi32.exe,
    ctwav32.exe, ctwave32.exe, remote32.exe, sndole32.exe, as well as some
    dll files, all ending in "32.dll"
    Plugins (three dll files)
    + Product Registration (contains only the subfolder English)
    English (empty)
    Share DLL (contains only one file: ctres32.dll)
    Yours,
    Blastit

    Too <i>much</i> bass? I always end up turning mine up.
    But anyway, to do this you'll want to do a little equalisation. Make sure you've got the full application suite for Vista (ie: not just the audio console on Creative's site):
    http://forums.creative.com/creativelabs/board/message?board.id=soundblaster&message.id=0493
    And then go to the equaliser in the main Creative control console. You'll eventually find something like this:
    [img"]http://img243.imageshack.us/img243/2720/equalizer2gk.png">
    What this does is allow you to adjust the volume of specific frequencies in the music: the slider on the left adjusts the deepest frequency, and the slider on the right adjusts the highest.
    The best way to do general equalisation is to do it gradually. Since you want to take out the bass a little, what you'll want to do is drag the left-most slider down to something like -5dB. Then, drag the one to the right of that down to about -4dB, then the next one to -3dB, etc. Once you hit 0dB you should be at roughly the middle of the equalizer (mid-tone frequencies).
    If this sounds confusing, just drag some of the sliders up and down a bunch while music is playing and you'll immediately see what's happening.
    Although there is also a bass and treble thing in Windows and such, all these do is adjust about fi've sliders at once. They can be pretty useful, but they're basically just watered-down versions of a proper equaliser. I believe the Creative software's bass/treble options also are unavailable in game mode.
    Note that you can also bring out the higher frequencies by doing the same thing over on the other side; this will make your sound a lot crisper, and might even negate the need to lower the bass since you'll be able to hear that higher detail without turning the volume up so much.
    Although there're endless possibilities with equalisation (EQ), the best rule of thumb for general use is to make sure the centre is at 0dB, and then adjust gradually outwards from there.

  • [Solved] no sound cards detected

    after just doing a clean install on my windows pc (to finaly remove it for good yay) my sound does not work. i look under settings and it only shows "dummy output" no other sound devices witch there sould be.
    i have tried removing fluidsynth and checked to see if there are any programs using pulseaudio using # fuser -v /dev/snd/*
    after reading the pulseaudio wiki on the issue it suggested editing .asoundconf but it was not present on my system, well not in the home folder at least.
    i know the sound card works as it worked in windows 7 and arch only 1 hour ago. the only change to my set up is that i am using catalyst as my graphics driver.
    other system details
    i am using gnome via cdm as catalyst does not work with gdm
    64-bit version of arch
    thanks in advanced for any help
    Last edited by witherdon (2013-11-14 15:40:07)

    yes i did mean gnome control panel
    out put of lspci -nn
    bash: lspci-nn: command not found
    [robert@localhost ~]$ lspci -nn
    00:00.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (external gfx0 port B) [1002:5a14] (rev 02)
    00:02.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (PCI express gpp port B) [1002:5a16]
    00:04.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (PCI express gpp port D) [1002:5a18]
    00:05.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (PCI express gpp port E) [1002:5a19]
    00:06.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (PCI express gpp port F) [1002:5a1a]
    00:07.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (PCI express gpp port G) [1002:5a1b]
    00:09.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (PCI express gpp port H) [1002:5a1c]
    00:0b.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] RD890 PCI to PCI bridge (NB-SB link) [1002:5a1f]
    00:11.0 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode] [1002:4391] (rev 40)
    00:12.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller [1002:4397]
    00:12.2 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller [1002:4396]
    00:13.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller [1002:4397]
    00:13.2 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller [1002:4396]
    00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 SMBus Controller [1002:4385] (rev 42)
    00:14.2 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA) [1002:4383] (rev 40)
    00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 LPC host controller [1002:439d] (rev 40)
    00:14.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 PCI to PCI Bridge [1002:4384] (rev 40)
    00:14.5 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI2 Controller [1002:4399]
    00:16.0 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller [1002:4397]
    00:16.2 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller [1002:4396]
    00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Family 15h Processor Function 0 [1022:1600]
    00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Family 15h Processor Function 1 [1022:1601]
    00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Family 15h Processor Function 2 [1022:1602]
    00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Family 15h Processor Function 3 [1022:1603]
    00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Family 15h Processor Function 4 [1022:1604]
    00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Family 15h Processor Function 5 [1022:1605]
    01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti XT [Radeon HD 7970] [1002:6798]
    01:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti XT HDMI Audio [Radeon HD 7970 Series] [1002:aaa0]
    02:00.0 SATA controller [0106]: ASMedia Technology Inc. ASM1062 Serial ATA Controller [1b21:0612] (rev 01)
    03:00.0 Ethernet controller [0200]: Intel Corporation 82583V Gigabit Network Connection [8086:150c]
    04:00.0 USB controller [0c03]: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller [1b21:1042]
    05:00.0 USB controller [0c03]: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller [1b21:1042]
    06:00.0 USB controller [0c03]: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller [1b21:1042]
    07:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti XT [Radeon HD 7970] [1002:6798]
    07:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti XT HDMI Audio [Radeon HD 7970 Series] [1002:aaa0]
    output of aplay -lL
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    aplay: device_list:268: no soundcards found...

Maybe you are looking for

  • Ipod is not recognized by iTunes and will not sync

    When trying to sync my ipod up with iTunes, it is not recognized as a device by iTunes and cannot be synced up. Any ideas? Thanks.

  • PS4 CD reader problem

    My PS4 keeps ejecting the disc without me doing anything. when i play, it suddenly just ejects the disc by itself. i´ve tried unplugging the power cable for 3 mins and plugging it back. it works for an hour or two but after that it starts ejecting th

  • Running Solaris 8 and Solaris 10 on a SPARC box at the same time

    I know that this is not possible, but still... need to clear it out from the experts... Have a upgrade request of Solaris 8 to Solaris 10. However, Solaris 8 environment should not be disturbed. How can this be done without going for another SPARC bo

  • Migration of Database from Oracle to SQL Server in Business Objects XI 3.1

    Hi, Currently, We are working on Business Objects XI 3.1 and Database is  Oracle 11g. And now we have the requirement to migrate from Oracle 11g to SQL Server 2008 R2. I would like to know what are the key points to be considered in business objects

  • Calling unix file program stored in server directory

    Hi , I need to run a unix batch program stored on the server directory from an ABAP program. The unix batch program is a script program that will perform encryption on the file. I'm using SAP 4.6c running on Windows NT. I need to maintain External OS