Linux - Laptop and NetbookHaving a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Okay, I'm a Newbie, both with linux and this forum, so please bare with me. The problem right now is the fact that the sound card is detected, but is disabled. I've tried everything I can think of (which isn't much) to fix this. If there is anyone who has any idea what I can do to enable my sound card I would appreciate any advise. I've been using my Sager notebook with linux for about 8 months now, and I'm still not very sure with linux, so I'll probably need a lot of clerification. Thanks!
How do you know it is detected and how do you know it is disabled? Or in other words, what do you mean by those words? (something says somewhere that soundcard exists, but no sound is coming out of it?) What sound card do you have?
The "lspci" command shows the card? There seems to be a driver loaded acording to "lsmod" command? good. Does the program complain something when you try use your soundcard (like starting xmms and playing an mp3)? no? Have you checked your mixer settings? (the "aumix" or "alsamixer" should do it)
Have you checked what problems others have had with your laptop model?
System Specs- Sager NP6120K2-X1, Soundcard is SIS7012 PCI Audio Accelerator
The sound card is detected, I found it under System Settings, Soundcard Detection, it tells me the correct soundcard, but it says in the same window that 'Module: disabled'. When I try to use the soundcard (just by popping in a cd and playing it with xmms) it acts like it's playing, meaning the time on the xmms display is going and it changes songs and such, but no sound comes up. With the mixers I used aumix and it came back giving me an error opening mixer, and I couldn't find alsamixer. With checking problems with other people with my laptop, I didn't find anyone with my laptop on the suppled page, but I'll continue to look with google and other sources.
Thank you for your help, and please forgive my follies as a newbie, I have a hard learning curve ahead, and I'm just trying to keep up.
Hi Tags,
I sympathise with you as I had lots of trouble setting up sound with my onboard sis sound chip. Below I have pasted a small text that I wrote on how I finally got sound to work for me. It should give you some pointer, eg in the use of isapnp, conflicts and error messages. As I said this is specific to my system so you will have to substitute your drivers as required.
BashTin.
To Set Up The Cmi8330 Sound Chip In Mandrake 3.0
Note: Mandrake 3.0 uses devfs which complicates the matter somewhat.
Install Sound Support In The Kernel.
During installation you will get to a section called system summary. You need to click on 'sound' and answer yes to having an isa sound card. This will compile in the low level sound support and load the sound modules aswell. At the end you get asked if you wish to start the sound and isa systems automatically, this seems a waste of time as it doesn't do anything!
Configure The On Board Sound Chip.
As root do the following -
pnpdump > /etc/isapnp.conf
This produces information on your plug and play devices and any possible resources they could use and writes it to the file /etc/isapnp.conf. You need to pick resources for each logical device by uncommenting the appropriate lines. IRQs seem to be the most troublesome in my experince, so make sure you pick IRQs that are not used by anyother devices - look in /etc/isapnp.gone. Below is my configuration as a guide.
# Id: pnpdump_main.c,v 1.27 2001/04/30 21:54:53 fox Exp
# Release isapnptools-1.26
# This is free software, see the sources for details.
# This software has NO WARRANTY, use at your OWN RISK
# For details of the output file format, see isapnp.conf(5)
#
When this is done you are ready to try the configuration, do -
isapnp isapnp.conf
This instructs isapnp to install the card, reading the settings for the resources from the file isapnp.conf. If there are any conflicts this will be reported and will give you some clues as to what is wrong, re-edit the .conf file and try again. If everything went well you should have confirmation messages instead.
Install Sound Modules.
Now we install the sound modules. If you haven't got any of these you will have to get and install them. Do -
insmod soundcore
insmod sound
insmod uart401
insmod ad1848 io=0x530 irq=11 dma=0 soundpro=1
Use your own values for the resources for the ad1848 line as taken from the isapnp.conf file. Again messages should appear as the modules load, any conflicts will be reported. Now if you look in /dev you should find that directories have been created for sound/audio and sound/dsp. Also look in /var/log/syslog it should confirm the card has been found and installed with the resources requested.
Testing.
With Mandrake and devfs the simple old tests such as 'cat audiofile.au > /dev/sound/audio' or 'cat audiofile > dev/sound/dsp' are no longer allowed. So instead do - 'play audiofile.au' as a quick test. Hopefully all is still well.
Automate.
To install all this automatically at start up for all run levels just insert the commands asthey are above in the file /etc/modules and save.
XMMS
This is the default media player for Mandrake and requires a few options setting to work. Right click on the player and choose options->preferences. Make sure that the OSS Driver 1.2.7 is selected as the output plugin, then pick the CD Audio Player and click on configure, for 'device' enter the path to the relevant dev in the /dev directory. If you need some clues look in 'dmesg' or /var/log/syslog. Mine for example is
/dev/scd0 - for the liteonit cdrw or
/dev/hdc - for the cdrom drive
Then for the 'directory' enter '/mnt/cdrom' for the first drive or '/mnt/cdrom2' if you want to use the second drive instead. Click ok, then apply and ok on the next dialogue box. Now all should work as required.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.