Weblog entry #1 for unicornrose
Anyway I have been experimenting and learning lots of lessons. The biggest one was not to uninstall the kernel well because then the computer will not work. LOL
My biggest issue as of this moment is no freaking sound. I am at a complete loss as to what to do. I am runnig a normal Debian system NOT a Debian woody system. I am running the 2.4.27-2-686 kernel and even tried to compile the kernel to get my sound card to work.
I tried isapnptools among other suggested things that I found online to try to get my sound card working. Nothing has worked so far. EEEEPPP What shall I do? Anyone got any suggestions?
Comments on this Entry
[ Send Message | View Steve's Scratchpad | View Weblogs ]
The first thing you should do is find out what type of sound card you have, once you know that you can start doing more directed attempts to make it work.Assuming you're running x86 with on-board sound you'll probably succeed if you run, as root, this:
apt-get install lspci lspci -v -v
The first command installs the "lspci" package, which will allow you to see what is connected to your PCI bus.
The second command uses the newly installed tool to output whatever it can.
When I run this upon my host, for example, I see this output:
skx@itchy:~$ lspci -v -v | grep -i audio 0000:00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] Sound Controller (rev a0)
This tells me I'm using some kind of SiS audio card. For me running "modprobe i810_audio" gets it working - but you might need to use another module.
I would guess that you won't need to recompile your kernel yourself if you're using the Debian supplied one, since that has modules for almost all the common hardware already enabled.
[ Parent | Reply to this comment ]
[ Send Message | View unicornrose's Scratchpad | View Weblogs ]
Beth
Be very very quiet I am hunting penguins....
[ Parent | Reply to this comment ]
Check your volume levels with a mixer program, make sure they're all up.
[ Parent | Reply to this comment ]