DebianThis forum is for the discussion of Debian Linux.
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.
I have ditched Fedora Core 1 in favour of Debian Sarge just today and I'm totally new to Debian.
There seems to be no way to configure sound manually though. I have tried to find a way but there seems to be no GUI or command line sound configuration tool. Can somebody please help me find a way to detect sound hardware?
If I remember correctly, you're going to need to make sure you have the proper drivers installed from the nvidia website. Once they're installed, you should be able to use the modconf program to insert them. Also, make sure your users is part of the audio group so you have perms to use the sound card.
I use the nforce2 platform with integrated audio. You don't need to use the nvidia audio driver. You can use i810_audio. Just insert the module:
Code:
modprobe i810_audio
and add "i810_audio" to /etc/modules You should have working sound after that.
If you do decide to use the nvidia drivers, the module name is "nvaudio" I don't see any reason why to use it though. It doesn't work any better or offer other features (that I know of).
modprobe i810_audio works apparently. It doesn't give any errors. Now how to make sure that the module is auto-loaded on startup?
Also I'm running kernel 2.4.27 and I cannot find the sources for the kernel (to use make menuconfig) in the Synaptic package manager.
How do I install the kernel sources (to configure the kernel)? Thanks.
To make sure the module is loaded at start up, just add its name to /etc/modules. As root:
Code:
nano /etc/modules
Then add "i810_audio" to the list of modules. It will automatically be loaded upon rebooting.
To load kernel sources, do:
Code:
apt-get install kernel-source-2.4.27
It will install the source as a compressed file located in /usr/src. You will have to manually uncompress it and then configure it. I wrote what I did when I upgraded to the 2.6.x kernel here: http://www.linuxquestions.org/questi...hreadid=206992 It is for a 2.6 kernel, but much of the same stuff applies. There is also great documentation on configuring a kernel the "Debian way" here: http://newbiedoc.sourceforge.net/system/kernel-pkg.html
I am unable to install kernel sources using apt-get. Can somebody help. I get this error message:
Code:
Reading Package Lists... Done
Building Dependency Tree... Done
Package kernel-source-2.4.27 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package kernel-source-2.4.27 has no installation candidate
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.