From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from shawmail.shawcable.com ([64.59.128.220] helo=bpd2mo1no.prod.shawcable.com) by speech.braille.uwo.ca with esmtp (Exim 3.35 #1 (Debian)) id 19PeAc-0000oI-00 for ; Tue, 10 Jun 2003 04:07:54 -0400 Received: from bpd2mi2no.prod.shawcable.com (bpd2mi2no-qfe3.prod.shawcable.com [10.0.184.121]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003)) with ESMTP id <0HG900H1CAKCGK@l-daemon> for speakup@braille.uwo.ca; Tue, 10 Jun 2003 02:07:24 -0600 (MDT) Received: from nomad.shawcable.com ([24.70.172.254]) by l-daemon (iPlanet Messaging Server 5.2 (built Feb 21 2002)) with ESMTP id <0HG9003TGAKB2W@l-daemon> for speakup@braille.uwo.ca; Tue, 10 Jun 2003 02:07:24 -0600 (MDT) Date: Tue, 10 Jun 2003 03:06:00 +0200 From: Doug Subject: Re: alsa problems In-reply-to: <00b601c32f23$16082820$6401a8c0@attbi.com> X-Sender: wearable@mail.shawcable.com To: speakup@braille.uwo.ca Message-id: <5.1.0.14.2.20030610023921.02272ac0@mail.shawcable.com> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Content-type: text/plain; charset=us-ascii; format=flowed References: <5.1.0.14.2.20030609235340.02287700@mail.shawcable.com> Sender: speakup-admin@braille.uwo.ca Errors-To: speakup-admin@braille.uwo.ca X-BeenThere: speakup@braille.uwo.ca X-Mailman-Version: 2.0.11 Precedence: bulk Reply-To: speakup@braille.uwo.ca List-Help: List-Post: List-Subscribe: , List-Id: Speakup is a screen review system for Linux. List-Unsubscribe: , List-Archive: If you don't want to use alsa then skip the loading of snd-pcm-oss and snd-mixer-oss. Those are alsa drivers (for oss emulation), and the standard linux sb driver already implements OSS for soundblaster. Those drivers cannot work together, the pcm-oss and mixer-oss only work with the alsa soundblaster driver. Without alsa ... you should be able to just modprobe sb and get audio working, but you may have to configure the DMA and IO ports like this: modprobe sb io=0x220 irq=5 dma=1 dma16=5 mpu_io=0x330 (change those values for your card or bios settings) > Hi there... I will do that, however, I cannot seem > to find a version for slackware, can ya give me a > link to it please? I have never used a slackware version because it's easy to build from source on slackware. Grab the alsa-driver, alsa-lib, and alsa-util distributions: ftp://ftp.alsa-project.org/pub/driver/ ftp://ftp.alsa-project.org/pub/lib/ ftp://ftp.alsa-project.org/pub/utils/ Drop those in/usr/src/ and extract them. Then build them in the order listed (driver, lib, utils): cd alsa-driver* ./configure --with-sequencer=yes --with-oss=yes If it's an isapnp card to this instead ./configure --with-isapnp=yes --with-sequencer=yes --with-oss=yes make make install (Do the same for alsa-lib and alsa-util) Run ./snddevices to create the device files (unless you use devfs, if so see the alsa docs) Then load the alsa modules: modprobe snd-card <-- pick the right driver for your card modprobe snd-pcm-oss modprobe snd-mixer-oss You are trying to load those last two now but they don't exist yet because alsa is not installed. Those don't work with the standard linux oss drivers, they only work with alsa. -- Doug