LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-29-2003, 02:39 PM   #61
swiftnet
Member
 
Registered: Aug 2003
Location: Florida, USA
Distribution: Mandrake, Knoppix, Yoper
Posts: 97

Rep: Reputation: 19

If you are running out of time here is a simple way out, but it'll cost you. $19.00 for a usb card, $10.00 for a sound card. If you do have time, then this is an excellent learning experience...
 
Old 08-29-2003, 02:48 PM   #62
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
It's alright, I can live with it until it's fixed...
 
Old 08-29-2003, 03:43 PM   #63
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
Alright, now I just installed the Java plug-in for Firebird and /dev/dsp has stopped working.



And, Java still won't work...
 
Old 08-29-2003, 04:12 PM   #64
exodist
Senior Member
 
Registered: Aug 2003
Location: Portland, Oregon
Distribution: Arch
Posts: 1,374

Rep: Reputation: 47
well, you have varied from my instructions, at this point I don't think I can help you, sorry, uhm try chmod 777 /dev/ds* /dev/mix* /dev/sn*

that will make sure permissions are correct, except that with devfs improperly configured i will not save that info, but it is probably correct. do an lsmod and see if your sound is loaded by modules, if it is you can install alsa, it is not very hard go to alsa.sourceforge.net and play around with it :-P

let me know if you have any questions.
 
Old 08-29-2003, 04:31 PM   #65
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
OK, i810_audio is loaded, as is ac97_codec, but soundcore is missing...
 
Old 08-29-2003, 04:52 PM   #66
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
Right, alsa drivers downloaded, compiled and installed.

alsa utils and tools downloaded, compiled and installed too.

devfs downloaded and ready to be set up, all I need to know now is how to disable devpts...

Last edited by flapjackboy; 08-29-2003 at 05:21 PM.
 
Old 08-29-2003, 05:39 PM   #67
exodist
Senior Member
 
Registered: Aug 2003
Location: Portland, Oregon
Distribution: Arch
Posts: 1,374

Rep: Reputation: 47
oh, not quite enoguh done:
first install driver like this:
./configure
make
make install
./snddevices (not if you have devfs)
then install alsa-lib
./configure
make
make install
then install alsa-oss (without this you get no sound in 70% of apps, and it needs alsa-lib)
./configure
etc
etc.
then the utils are obviously important.
set it to load the ai810 driver module on boot (snd-i810?) there is just 810* that is basic (don't use) and snd-810* that is alsa driver, use that one
then also snd-mixer-oss (snd-oss-mixer?)
then also snd-pcm-oss (snd-pcm-mixer?)
then also at the end of rc.local add this:
alsactl restore
chmod 777 /dev/ds*
chmod 777 /dev/sn*
chmod 777 /dev/mix*
that was first to restore volume settings on reboots
the others are to ensure permissions encase devfs forgets them
then in a terminal type:
alsamixer
adjust everything to the way you want it
when done type alsactl store (this saves volume settings for a reboot)
then it should work fine. if alsactl does nto work look for it in /sbin and /usr/sbin
 
Old 08-29-2003, 05:48 PM   #68
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
OK, following your instructions as I speak. My connection's going down in a bit, so I'll let you know how I get on tomorrow...
 
Old 08-29-2003, 05:55 PM   #69
exodist
Senior Member
 
Registered: Aug 2003
Location: Portland, Oregon
Distribution: Arch
Posts: 1,374

Rep: Reputation: 47
why does your connection go up and down at specific times?
 
Old 08-30-2003, 07:17 AM   #70
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
Well, I'm sharing a broadband connection and the owner has set time limits on my access to the router.
 
Old 08-30-2003, 07:22 AM   #71
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
OK, I've figured that you use alsactl to configure the drivers, but I need to know what commands to pass to it in order to set the correct drivers.
 
Old 08-30-2003, 04:35 PM   #72
exodist
Senior Member
 
Registered: Aug 2003
Location: Portland, Oregon
Distribution: Arch
Posts: 1,374

Rep: Reputation: 47
modrpbe driver-name
you need:
snd-yourcard
snd-oss-mixer (might be snd-mixer-oss)
snd-oss-pcm (might be snd-pcm-oss)
load those 3 and modprobe will load the others on its own
use the snd-drivers ntot he driver with out the snd-
alsamixer sets the cards volume, bass, surround, etc.
alsactl is a way to store and restore those settings for reboots
 
Old 08-30-2003, 04:43 PM   #73
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
OK, modeprobe snd-intel8x0 returned:

/lib/modules/2.4.21-0.13mdkcustom/kernel/sound/acore/snd.o: unresolved symbol snd_verbose_printk
modprobe: insmod /lib/modules/2.4.21-0.13mdkcustom/kernel/sound/acore/snd.o failed
modprobe: insmod snd-intel8x0 failed
 
Old 08-30-2003, 05:26 PM   #74
flapjackboy
Member
 
Registered: Jul 2003
Location: Norwich, UK
Distribution: Mandrake 9.1
Posts: 310

Original Poster
Rep: Reputation: 30
modprobe, even...
 
Old 08-30-2003, 06:10 PM   #75
exodist
Senior Member
 
Registered: Aug 2003
Location: Portland, Oregon
Distribution: Arch
Posts: 1,374

Rep: Reputation: 47
have you:
A) run depmod
B) restarted?

lloks like it is missing a component of alsa... try reinstalling alsa-driver
use default ./configure options, that might do it
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
apt-get install bind9? all sorted? f0rmula Linux - Software 2 09-07-2005 11:23 AM
Filenames are sorted in wrong order Simoncifer Linux - Newbie 4 01-07-2005 12:52 AM
Speedtouch 330 Mandrake 9.1 SORTED : ) trevalex Linux - Newbie 5 11-16-2003 04:04 AM
Qt issues SORTED adriaanbw Linux - Software 0 05-18-2003 04:35 AM
I've got it sorted. lithium Linux - Software 1 01-06-2002 12:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 05:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration