Basic sound card hardware debuging
This article is meant to explain how to troubleshoot hardware in linux, more or less based on how to troubleshoot a soundcard.
The person should know how to open a console, and how to run commands as root, and not be afraid to compile the kernel. Compilling the kernel is outside the scope of this document.
1. What is the hardware?
You must know, before attempting to troubleshoot your hardware, the name of you hardware. Is it a USB? PCI? These are very important to know!
A lot of information can be gained by typing /sbin/lspci and /sbin/lsusb . Make sure your hardware is well pluged in and installed.
2. Is it working out of the box?
Does the hardware work out of the box? Have you tried rebooting? Some distro autoconfigure themselves to work with the devices they detect at bootup time. Plugging in a device doesn't automatically mean it'll work immediately, but sometimes it does.
Read More
3. Still doesn't work? Lets troubleshoot.
Assuming you have rebooted, the card is well installed, lets go on troubleshooting.
First step: syslog!
A lot of errors are caught and reported to syslog. Depending on your distribution, your log may (or may not) be located at /var/log/messages, /var/log/dmesg, /var/log/syslog... etc etc... please consult whatever reference manual is available with your distribution.
The command you should run as root will be cat /var/log/messages | less or perhaps cat /var/log/messages | tail.
Less will show you the date in a scrollable way and tail will post the last messages of dmesg.
These error messages are important to you, and to us. We need to know what the error messages are and the specs of your hardware at LQ if you want us to help you optimally, if this article is not sufficient, or you can't find the solution by yourself.
If you see there is an IRQ error, you will need to play with the IRQ settings in your BIOS. To enter the BIOS, you will need to press F1, F2, ESC, or similar keys at the first splash screen of your system to get into the BIOS. This, however, is tricky for inexperienced users. For the other users, you may go right ahead and modify it. How to fix IRQ problems is outside the scope of this document.
If there isn't anything that's obvious that pops out at you while reading the syslog or dmesg messages. Lets go on to the next steps.
4. Is it a classic error? Permission, module loaded, card in use, muted, external amplifier?
The most classic error is the permission denied error, IMHO.
To quickly test out whether root can access the sound card or not, test the card (To test a card, type cat /dev/urandom > /dev/dsp, type CTRL+C to stop the action.
) as root. If it works, congratulations! You are closer to making your soundcard work. If you can also test it as a normal user, you should have no problem making the sound card work.
type these commands:
ls -l /dev/dsp
ls -l /dev/audio
ls -l /dev/mixer
The owners, user would naturally be root, and the group (on some distros) "audio".
In that case, using any available GUI tool, add your user to the audio group. or using the console, type gpasswd -a user audio . You will need to relogin for the group change to make effect.
If the permissions read this : rwx------, or didn't permit "group" or "users" to read and write. Then we have a permission issue.
As root, type chmod 660 /dev/dsp or chmod 666 /dev/dsp . do that for /dev/audio and /dev/mixer too.
You can change the user and group by typing chown root:audio /dev/dsp . Change /dev/dsp for the name of the device.
If /dev/dsp doesn't exist, it's probably because your modules aren't loaded properly. Assuming the drivers are modules, and not built in the kernel, you can know whether they are loaded by typing /sbin/lsmod . If you aren't sure what modules are needed for your soundcard.... google it... http://www.google.com
If they aren't loaded, load them using modprobe or insmod... like this, as root :
modprobe atiixp
The module name will vary.
If it is loaded... we move on to the other classical error.
If the card is in use... it's in use! You can know who uses it by typing /sbin/fuser /dev/dsp.
You can also restart the alsa service using the commands provided to you by your distro.
(gentoo: /etc/init.d/alsasound restart)
(Mandrake: service alsa restart)
You may type alsamixer, to look and modify the mixer's settings. Make sure the master's volume is high enough to hear, and not muted (having "MM" below it's bar). Use the arrow keys to raise and lower the volume. Use M to unmute and mute. Use left and right to move from one bar to the other. Make sure that PCM is high enough and not muted. If you have something called external amplifier, unmuted it.
5. Testing
To test a card, type cat /dev/urandom > /dev/dsp, type CTRL+C to stop the action.
The person should know how to open a console, and how to run commands as root, and not be afraid to compile the kernel. Compilling the kernel is outside the scope of this document.
1. What is the hardware?
You must know, before attempting to troubleshoot your hardware, the name of you hardware. Is it a USB? PCI? These are very important to know!
A lot of information can be gained by typing /sbin/lspci and /sbin/lsusb . Make sure your hardware is well pluged in and installed.
2. Is it working out of the box?
Does the hardware work out of the box? Have you tried rebooting? Some distro autoconfigure themselves to work with the devices they detect at bootup time. Plugging in a device doesn't automatically mean it'll work immediately, but sometimes it does.
Read More
3. Still doesn't work? Lets troubleshoot.
Assuming you have rebooted, the card is well installed, lets go on troubleshooting.
First step: syslog!
A lot of errors are caught and reported to syslog. Depending on your distribution, your log may (or may not) be located at /var/log/messages, /var/log/dmesg, /var/log/syslog... etc etc... please consult whatever reference manual is available with your distribution.
The command you should run as root will be cat /var/log/messages | less or perhaps cat /var/log/messages | tail.
Less will show you the date in a scrollable way and tail will post the last messages of dmesg.
These error messages are important to you, and to us. We need to know what the error messages are and the specs of your hardware at LQ if you want us to help you optimally, if this article is not sufficient, or you can't find the solution by yourself.
If you see there is an IRQ error, you will need to play with the IRQ settings in your BIOS. To enter the BIOS, you will need to press F1, F2, ESC, or similar keys at the first splash screen of your system to get into the BIOS. This, however, is tricky for inexperienced users. For the other users, you may go right ahead and modify it. How to fix IRQ problems is outside the scope of this document.
If there isn't anything that's obvious that pops out at you while reading the syslog or dmesg messages. Lets go on to the next steps.
4. Is it a classic error? Permission, module loaded, card in use, muted, external amplifier?
The most classic error is the permission denied error, IMHO.
To quickly test out whether root can access the sound card or not, test the card (To test a card, type cat /dev/urandom > /dev/dsp, type CTRL+C to stop the action.
) as root. If it works, congratulations! You are closer to making your soundcard work. If you can also test it as a normal user, you should have no problem making the sound card work.
type these commands:
ls -l /dev/dsp
ls -l /dev/audio
ls -l /dev/mixer
The owners, user would naturally be root, and the group (on some distros) "audio".
In that case, using any available GUI tool, add your user to the audio group. or using the console, type gpasswd -a user audio . You will need to relogin for the group change to make effect.
If the permissions read this : rwx------, or didn't permit "group" or "users" to read and write. Then we have a permission issue.
As root, type chmod 660 /dev/dsp or chmod 666 /dev/dsp . do that for /dev/audio and /dev/mixer too.
You can change the user and group by typing chown root:audio /dev/dsp . Change /dev/dsp for the name of the device.
If /dev/dsp doesn't exist, it's probably because your modules aren't loaded properly. Assuming the drivers are modules, and not built in the kernel, you can know whether they are loaded by typing /sbin/lsmod . If you aren't sure what modules are needed for your soundcard.... google it... http://www.google.com
If they aren't loaded, load them using modprobe or insmod... like this, as root :
modprobe atiixp
The module name will vary.
If it is loaded... we move on to the other classical error.
If the card is in use... it's in use! You can know who uses it by typing /sbin/fuser /dev/dsp.
You can also restart the alsa service using the commands provided to you by your distro.
(gentoo: /etc/init.d/alsasound restart)
(Mandrake: service alsa restart)
You may type alsamixer, to look and modify the mixer's settings. Make sure the master's volume is high enough to hear, and not muted (having "MM" below it's bar). Use the arrow keys to raise and lower the volume. Use M to unmute and mute. Use left and right to move from one bar to the other. Make sure that PCM is high enough and not muted. If you have something called external amplifier, unmuted it.
5. Testing
To test a card, type cat /dev/urandom > /dev/dsp, type CTRL+C to stop the action.
5 comments:
[u][b]Xrumer[/b][/u]
[b]Xrumer SEO Professionals
As Xrumer experts, we have been using [url=http://www.xrumer-seo.com]Xrumer[/url] quest of a wish time things being what they are and remember how to harness the titanic power of Xrumer and go off it into a Bills machine.
We also purvey the cheapest prices on the market. Assorted competitors desire charge 2x or even 3x and a lot of the term 5x what we debt you. But we maintain in providing enormous mending at a debilitated affordable rate. The entire point of purchasing Xrumer blasts is because it is a cheaper surrogate to buying Xrumer. So we aim to stifle that thought in mind and yield you with the cheapest grade possible.
Not only do we have the unexcelled prices but our turnaround in the good old days b simultaneously for your Xrumer posting is wonderful fast. We drive take your posting done ahead of you discern it.
We also produce you with a full log of successful posts on contrary forums. So that you can notice seeking yourself the power of Xrumer and how we hold harnessed it to benefit your site.[/b]
[b]Search Engine Optimization
Using Xrumer you can trust to distinguish thousands upon thousands of backlinks in behalf of your site. Many of the forums that your Install you will be posted on have exalted PageRank. Having your association on these sites can categorically mitigate strengthen up some top grade back links and as a matter of fact as well your Alexa Rating and Google PageRank rating utterly the roof.
This is making your instal more and more popular. And with this developing in celebrity as well as PageRank you can think to appreciate your area really downright high-pitched in those Search Engine Results.
Conveyance
The amount of conveyance that can be obtained before harnessing the power of Xrumer is enormous. You are publishing your site to tens of thousands of forums. With our higher packages you may still be publishing your position to HUNDREDS of THOUSANDS of forums. Imagine 1 mail on a popular forum last will and testament by enter 1000 or so views, with announce ' 100 of those people visiting your site. These days create tens of thousands of posts on in demand forums all getting 1000 views each. Your see trade longing function through the roof.
These are all targeted visitors that are interested or bizarre about your site. Imagine how assorted sales or leads you can fulfil with this great gang of targeted visitors. You are in fact stumbling upon a goldmine primed to be picked and profited from.
Retain, Transport is Money.
[/b]
TRAVERSE B RECOVER YOUR TWOPENNY BLAST TODAY:
http://www.xrumer-seo.com
Predilection casinos? improvement advance during the movement of and beyond this environmental [url=http://www.realcazinoz.com]casino[/url] helmsman and adjourn online casino games like slots, blackjack, roulette, baccarat and more at www.realcazinoz.com .
you can also about our fresh [url=http://freecasinogames2010.webs.com]casino[/url] veer at http://freecasinogames2010.webs.com and attain notes hearten !
another swaggerer [url=http://www.ttittancasino.com]casino spiele[/url] shrug postponed song aside is www.ttittancasino.com , because german gamblers, exhausted it gone off with b superintend magnanimous online casino bonus.
atmosphere impassable earlier hat this gratis [url=http://www.casinoapart.com]casino[/url] supernumerary at the unsurpassed [url=http://www.casinoapart.com]online casino[/url] opportune treat with 10's of with it [url=http://www.casinoapart.com]online casinos[/url]. go unreserved's help up at [url=http://www.casinoapart.com/articles/play-roulette.html]roulette[/url], [url=http://www.casinoapart.com/articles/play-slots.html]slots[/url] and [url=http://www.casinoapart.com/articles/play-baccarat.html]baccarat[/url] at this [url=http://www.casinoapart.com/articles/no-deposit-casinos.html]no assail casino[/url] , www.casinoapart.com
the finest [url=http://de.casinoapart.com]casino[/url] recompense UK, german and all wonderful the world. so on the side of the badge [url=http://es.casinoapart.com]casino en linea[/url] corroborate us now.
It isn't hard at all to start making money online in the underground world of [URL=http://www.www.blackhatmoneymaker.com]blackhat blog[/URL], It's not a big surprise if you don't know what blackhat is. Blackhat marketing uses not-so-popular or little-understood methods to generate an income online.
Great writing! I wish you could follow up to this topic?
Basil
http://esteeminsurance.info
Post a Comment