You are not logged in.

#1 2006-02-11 18:01:29

bluePoet
Member
From: Düsseldorf, Germany
Registered: 2006-01-09
Posts: 38
Website

no /dev/dsp after udev upgrade

Hi there,

I did an upgrade to udev 0.84.3 and now I dont have /dev/dsp anymore. Xmms with alsa  and alsamixer works fine, but I still need /dev/dsp for Skype or X-lite and the GKrellm-Volume-Plugin.

ok, what I already did:

I removed the OSS compatibility modules from modprobe.conf,

I tried to use the new udev.rules that came with the package, after that no soundcards were found and my Trackball was disabled, also my 00.rules didnt work anymore,

I checked the sound section in udev.rules with my last config, no difference switched back to the old udev config, and there I'm stuck without /dev/dsp

It's a simple notebook onboard chip and Arch is up to date.

thanks in advance for any help,
Christian

Offline

#2 2006-02-12 08:21:18

tpowa
Developer
From: Lauingen , Germany
Registered: 2004-04-05
Posts: 2,324

Re: no /dev/dsp after udev upgrade

simple question:
have you added MOD_AUTOLOAD="yes" to rc.conf?

Offline

#3 2006-02-12 10:29:09

benoitc
Member
Registered: 2004-11-11
Posts: 62
Website

Re: no /dev/dsp after udev upgrade

I had two card in my computer ;intel8x0 chipstet that come in the motherboard and sb live emu10k1 chipset. After reboot I had no sound. I edited modprobe.conf to enable snd-emu10k1 at first card, maybe this is your problem too :

alias snd-card-0 snd-emu10k1
alias snd-card-1 snd-intel8x0

options snd-emu10k1 index=0
options snd-intel8x0 index=1

alias sound-slot-0 snd-card-0
alias sound-slot-1 snd-card-1

And thanks to iphitus to give me the trick smile

Offline

#4 2006-02-13 02:14:20

bluePoet
Member
From: Düsseldorf, Germany
Registered: 2006-01-09
Posts: 38
Website

Re: no /dev/dsp after udev upgrade

damn, stupid me
yes, I added the MOD_AUTOLOAD="yes" to rc.conf, but it seems that the snd_intel8x0 module didn't load so I added it to the Modules array and everything is ok now,
I should have checked this first, maybe next time  roll

thanks for your help
Christian

Offline

#5 2006-02-13 02:46:34

RobK
Member
Registered: 2005-12-07
Posts: 121

Re: no /dev/dsp after udev upgrade

I had a similar problem with printing.  For some odd reason, the "parport_pc" module is no longer being loaded even though MOD_AUTOLOAD="yes" is set in the rc.conf file.

Printing stopped working after the most recent upgrade of the kernel and udev.

The quick fix was to add "parport_pc" to the list of MODULES in rc.conf.

Rob

Offline

#6 2006-02-26 22:07:17

nggalai
Member
From: Switzerland
Registered: 2004-08-01
Posts: 215
Website

Re: no /dev/dsp after udev upgrade

I have a similar issue. MOD_AUTOLOAD is set to yes, my sound module (snd_cs46xx) appears with lsmod, sound plays in alsa applications, but no /dev/dsp and hence no sound in Doom3. sad

Any idea where I can start looking?

Offline

#7 2006-02-26 22:17:54

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: no /dev/dsp after udev upgrade

Have you removed OSS compatibility entries from /etc/modprobe.conf?

Offline

#8 2006-02-26 22:33:28

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: no /dev/dsp after udev upgrade

Is snd_pcm_oss loaded?

Offline

#9 2006-02-27 02:49:01

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: no /dev/dsp after udev upgrade

Having same problem.

Snowman wrote:

Is snd_pcm_oss loaded?

Yes.

# lsmod | grep pcm_oss
snd_pcm_oss            50848  0
snd_mixer_oss          17920  1 snd_pcm_oss
snd_pcm                84100  3 snd_pcm_oss,snd_emu10k1,snd_ac97_codec
snd                    49124  11 snd_seq_oss,snd_seq,snd_pcm_oss,snd_mixer_oss,snd_emu10k1,snd_rawmidi,snd_ac97_codec,snd_pcm,snd_seq_device,snd_timer,snd_hwdep
#

Good or bad?

I have this in /etc/modprobe.conf:

#

#
# /etc/modprobe.conf (for v2.6 kernels)
#

# OSS Compatibility
#install snd-pcm modprobe -i snd-pcm ; modprobe snd-pcm-oss ; true
#install snd-seq modprobe -i snd-seq ; modprobe snd-seq-oss ; true

# --- BEGIN: Generated by ALSACONF, do not edit. ---
# --- ALSACONF version 1.0.10 ---
alias snd-card-0 snd-emu10k1
alias sound-slot-0 snd-emu10k1
# --- END: Generated by ALSACONF, do not edit. ---

--HAPS

Offline

#10 2006-02-27 08:43:27

nggalai
Member
From: Switzerland
Registered: 2004-08-01
Posts: 215
Website

Re: no /dev/dsp after udev upgrade

Removing the compatibility entries from /etc/modprobe.conf didn't do anything. But:

Snowman wrote:

Is snd_pcm_oss loaded?

Nope, that wasn't loaded. Added it to the MODULES section in rc.conf, everything is working now. Thanks!

Offline

#11 2006-02-27 21:55:46

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: no /dev/dsp after udev upgrade

sullivanva: Yes it's good. snd_pcm_oss should be loaded. Try to comment out the entries in /etc/modprobe.conf

Offline

#12 2006-02-27 22:26:33

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: no /dev/dsp after udev upgrade

Snowman wrote:

sullivanva: Yes it's good. snd_pcm_oss should be loaded. Try to comment out the entries in /etc/modprobe.conf

I didn't know what to do about the intel sound driver.  It seemed to be a problem, so I did this:

# find /lib/modules/ -name *intel* -exec rm {} ;

You saw my /etc/modprobe.conf above.  I commented out snd-pcm and snd-seq.  After a reboot the sound won't come up unless I run alsaconf.  alsaconf puts the emu10k1 drivers in there and runs alsa.

I will try to comment out the emu10k1 lines, and reboot.

Edit:

It worked!  Thank you.  Sometimes less is more.


--HAPS

Offline

Board footer

Powered by FluxBB