Re: Debian Stretch Am Confused about /dev/dsp

2018-08-31 Thread Ric Moore

On 08/31/2018 03:51 AM, didier gaumet wrote:

Hello,

from what I understand, using alsa-oss would be better than using the
OSS emulation module, partircularly if one is to use sound plug-ins?
  https://packages.debian.org/stretch/alsa-oss


If you use pulse you can execute your program using the prefix "padsp" 
Kino still requires /dev/dsp so you would launch it using padsp kino

Works a charm. Ric

--
My father, Victor Moore (Vic) used to say:
"There are two Great Sins in the world...
..the Sin of Ignorance, and the Sin of Stupidity.
Only the former may be overcome." R.I.P. Dad.
http://linuxcounter.net/user/44256.html



Re: Debian Stretch Am Confused about /dev/dsp

2018-08-31 Thread didier gaumet
Hello,

from what I understand, using alsa-oss would be better than using the
OSS emulation module, partircularly if one is to use sound plug-ins?
 https://packages.debian.org/stretch/alsa-oss



Re: Debian Stretch Am Confused about /dev/dsp

2018-08-30 Thread Dan Ritter
On Thu, Aug 30, 2018 at 03:10:24PM -0500, Martin McCormick wrote:
>   The software I wrote doesn't predate oss but some
> documentation I red years ago that probably does predate oss was
> what I used to wrige some C routines that send and receive sound
> plus use ioctl to set, say, /dev/dsp or /dev/dsp1 for stereo at
> 32000 samples per second.
> 
>   I used that to make a stereo sound card record 2
> independent 8-K 8-bit audio channels from two radio scanners
> 
>   Music stinks when recorded that way but scanner audio has
> such a limited pass band that it sounds pretty decent.
> 
>   Many thanks.
> 
> > It also pointed me to <http://wiki.debian.org/ReleaseGoals/NoLinuxDevDsp>,
> > if that's of any help.
> 
>   I will save this message and also learn the correct way
> to send and receive audio these days.

I think that 'sox' which can also be called as 'play' or 'rec'
is what you want.

Use rec to record from sound-input, and sox to split it by
channel into two files.

-dsr-



Re: Debian Stretch Am Confused about /dev/dsp

2018-08-30 Thread Martin McCormick
Greg Wooledge  writes:
> /dev/dsp is part of the legacy OSS (Open Sound System) interface.  If
> you play audio using only ALSA, or ALSA + Pulse, you do not need this
> older interface.
> 
> If your software requires the /dev/dsp interface (because it predates
> ALSA), you can try loading the snd-pcm-oss module.  At least, that's
> what the IRC bot says to do.

Thank you.  I am happy to report that adding snd-pcm-oss to
/etc/modules brought the /dev/dsp interfaces back.

I never did a lsmod on the system a week or so ago to see
what was there when I first saw /dev/dsp and /dev/dsp1 and it
could be that the snd-pcm-oss module was loaded as a result of
installing mplayer although mplayer does not need /dev/dsp and
works fine without it.

When I shut down the system and restarted it today, i did
do lsmod looking for snd-pcm-oss and it was not there.  After
placingthe name of the module in /etc/modules, I rebooted so as
to start from scratch and it was there along with /dev/dsp and
/dev/dsp1 for the usb device which now works like a charm.

I must read up on how to code for not needing /dev/dspx
to fix the real issue here.

The software I wrote doesn't predate oss but some
documentation I red years ago that probably does predate oss was
what I used to wrige some C routines that send and receive sound
plus use ioctl to set, say, /dev/dsp or /dev/dsp1 for stereo at
32000 samples per second.

I used that to make a stereo sound card record 2
independent 8-K 8-bit audio channels from two radio scanners

Music stinks when recorded that way but scanner audio has
such a limited pass band that it sounds pretty decent.

Many thanks.

> It also pointed me to <http://wiki.debian.org/ReleaseGoals/NoLinuxDevDsp>,
> if that's of any help.

I will save this message and also learn the correct way
to send and receive audio these days.

Martin



Re: Debian Stretch Am Confused about /dev/dsp

2018-08-30 Thread Greg Wooledge
On Thu, Aug 30, 2018 at 12:14:57PM -0500, Martin McCormick wrote:
>   After successfully installing stretch on a system, there
> was no /dev/dsp.  I needed to play some mp3 files and so
> installed mplayer.  [...]

/dev/dsp is part of the legacy OSS (Open Sound System) interface.  If
you play audio using only ALSA, or ALSA + Pulse, you do not need this
older interface.

If your software requires the /dev/dsp interface (because it predates
ALSA), you can try loading the snd-pcm-oss module.  At least, that's
what the IRC bot says to do.

It also pointed me to <http://wiki.debian.org/ReleaseGoals/NoLinuxDevDsp>,
if that's of any help.



Debian Stretch Am Confused about /dev/dsp

2018-08-30 Thread Martin McCormick
After successfully installing stretch on a system, there
was no /dev/dsp.  I needed to play some mp3 files and so
installed mplayer.  The mp3's played and I also discovered
/dev/dsp for the on-board sound chip and /dev/dsp1 for a USB card
which began to work when used with an application I wrote that is
a few years old and makes use of /dev/dsp.

I was thankful that the install of mplayer and several
dependent libraries seemed to have restored the dsp devices so I
powered down the system and have brought it up today to find that
once again, no /dev/dsp.  Something got turned on during the
installation process that doesn't default to on.  Where should I
look as I can do that quicker than I can rewrite the application
to do whatever you must do these days to speak to a sound device.

The system has alsa-utils but I was under the impression
that these days, one should not install alsa-base.  As I
reported, this system is capable of /dev/dsp but it seems to have
lost it again.  That is why I am confused.

Thanks for any constructive suggestions.
Martin McCormick



sending data to /dev/dsp Solved.

2017-09-02 Thread Martin McCormick
I was using audio samples from a radio and a named pipe
open for reading to get them in to the ring buffer. The ring
buffer code was old code which works but I snatched defeat from
the jaws of victory by using the read command instead of fread.
The read command gets text strings while fread is meant for
binary data which this happens to be as in 16-bit audio samples.
Using the read command against that pipe pretended to work but
seems to actually get nothing at all. It looked like whatever I
initialized the sample variable to stayed there and wasn't
ever changed at all.

So, that was one killer.

Another odd thing appears to be that uninitialized memory
such as that ring buffer is now cleaner than it used to be so
even without initializing it, no noise blasted out of the speaker
as if it is all zeroed out.  Just to be safe, it is probably
better to set the buffer values to silence when starting up.

It all works now.

Martin McCormick



sending data to /dev/dsp

2017-09-02 Thread martin McCormick
I haven't fixed it yet but I discovered that on the
Debian 7 system, a recompile of the working version of the code
now produces a non-working version with the same problem as that
of Debian 8. Everything seems to compile as before but the new
target produces no output on /dev/dsp.

Basically, my question to the list is meaningless so I
will work until I figure it out and post what I found.

I presently have a usb-based sound card on the Debian 7
system which uses the same code and was working perfectly
yesterday so I don't know what is wrong well enough now to
describe it.

Martin McCormick



sending data to /dev/dsp

2017-09-02 Thread Martin McCormick
The system with the problem is running Debian GNU/Linux 8
and I am trying to run a program I wrote that works as it should
in Debian GNU/Linux 7.

The program sends audio to /dev/dsp or /dev/dsp# if the
card is other than card 0 and it works correctly.

On the Debian 8 system literally everything but the
program works. I got /dev/dsp by placing the snd-pcm-oss line in
/etc/modules and I can cat appropriate 8-bit binary data to
/dev/dsp and hear correct sound.

The program which sends sound to the audio output
compiles and appears to run on the Debian 8 system but data sent
to /dev/dsp produce total silence.

I've even got an un-witting form of testing for the
output channel which works as follows:

The program I wrote is a ring buffer to produce an audio
delay between audio received in to the sound card and the output
back to the sound card. It is necessary to seed all the memory in
the ring buffer with the value that represents silence or one
gets blasted with let's say, 10 seconds of utter noise as the
buffer memory is full of binary garbage when the ring runs for
the first time. In other words, you don't even have to have any
signal at the input to test your output. Just set a 5 or
ten-second delay and turn the volume down on your speakers or
especially headphones, and then fire up the delay. When it's
working, you'll hear what sounds like the end of the Earth
starting up for the duration of the delay and then the ring fills
up and you should hear your delayed audio.

On the newer Debian system, there is no sound output from
the program even when it is munching uninitialized RAM so I know
I've got trouble somewhere.

The program uses ioctl calls to initialize /dev/dsp to
look for 16-bit words and do this at 44100 samples per second and
all the ioctl commands run without error.

/dev/dsp opens without error before the ioctl commands so
it all looks ready to speak but it is mute. Anything else I send
it that should make noise does so with no problem.  Tracing
operation with gdb shows it going round and round like it should.

Here is how I setup the output channel which does work in Debian
7

  FILE *fd;   /* sound device file descriptor */
  fd = open("/dev/dsp", O_RDWR);
  if (fd < 0) {
perror("open of /dev/dsp failed");
exit(1);
  }

Here's a write that should make noise.


write(fd, , sizeof(delaysample)); /* play  */

That's what just doesn't happen in Debian 8 but there is no error
or stoppage of the program.

Thanks for any ideas.

Martin WB5AGZ



Re: /dev/dsp Obsolete or Not?

2015-07-16 Thread Nicolas George
L'octidi 28 messidor, an CCXXIII, Martin G. McCormick a écrit :
   What replaces the standard sound device?

In short: ALSA.

In long: the kernel devices for ALSA are present in /dev/snd/, but
applications are not supposed to access them directly, they are supposed to
solely rely on the API exposed by the ALSA library, libasound. This library
uses that to offer features that we would not like to be implemented in
kernel space, including virtual sound devices that do not map to any kernel
device. The most useful features of libasound are the plug and dmix plugins:
plug converts any format provided by the application to a format supported
by the underlying device; dmix allows sharing the same hardware device
between several applications without a server; plus, of course, user
configuration.

If you are using Linux, unless you are using the third-party (IIRC,
partially proprietary) OSS drivers (and you would know it), then you are
using ALSA and /dev/dsp is almost completely useless.

Other Libre operating systems still use the OSS API.

 I have written
 some experimental programs that play and record sound using
 /dev/dsp and they work. Obviously, there is a lot of bad design
 in the world that works and I hear the discussion that says that
 /dev/dsp is out-dated so what is considered the best way to send
 and receive audio in a program?

As I said: libasound. Or, of course, any higher-level library that wraps
libasound others in a common API.

   If there is no /dev/dsp, programs such as mplayer and
 the experimental applications I have written will be dead in the
 water which is why I am asking these questions now.

MPlayer, like all reasonably large current Libre projects, has support or
libasound along with other sound API (OSS, of course, SDL, Jack, Sun, win32,
etc.).

Some program do not. These are mostly crappy old proprietary software, like
skype, but as you explain, personal programs without enough manpower are in
that case too. For them, various emulation layers exist.

The oldest one belongs in the kernel, it exposes /dev/dsp devices, backed by
the ALSA drivers. Using it loses most benefits from ALSA: no user
configuration, no plugins.

The second one is aoss (package alsa-oss): it uses shared library magic to
capture access to /dev/dsp and emulates them with libasound. Therefore it
has all the features of ALSA, but a few drawbacks, most notably not working
with statically-linked binaries. There may also be another similar solution
using ptrace().

 The
 experimental applications I have written are sound-activated
 recording and sound delays. In gcc, ioctl is what one uses to
 open /dev/dsp with specific characteristics such as sample rate
 and size. I hope what replaces it isn't too indirected. There
 are times when it is nice to explain what is happening in one
 breath. I know that isn't always possible but it is nice when
 you can.

The libasound API is more verbose than OSS, but not much more complex. You
can have a look at the ALSA device implementation in FFmpeg (libavdevice)
for a reasonably simple and self-contained example.

Regards,

-- 
  Nicolas George


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150716124325.ga2416...@phare.normalesup.org



Re: /dev/dsp Obsolete or Not?

2015-07-16 Thread Martin G. McCormick
Good answers. Thanks.

Martin McCormick

Nicolas George writes:
 In short: ALSA.
 
 In long: the kernel devices for ALSA are present in /dev/snd/, but
 applications are not supposed to access them directly, they are supposed 
 to
 solely rely on the API exposed by the ALSA library, libasound. This 
 library
 uses that to offer features that we would not like to be implemented in
 kernel space, including virtual sound devices that do not map to any 
 kernel
 device. The most useful features of libasound are the plug and dmix 
 plugins:
 plug converts any format provided by the application to a format supported
 by the underlying device; dmix allows sharing the same hardware device
 between several applications without a server; plus, of course, user
 configuration.
 
 If you are using Linux, unless you are using the third-party (IIRC,
 partially proprietary) OSS drivers (and you would know it), then you are
 using ALSA and /dev/dsp is almost completely useless.
 
 Other Libre operating systems still use the OSS API.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150716155511.46cdd22...@server1.shellworld.net



Re: /dev/dsp missing in Wheezy

2013-06-20 Thread Chris Bannister
On Tue, Jun 18, 2013 at 10:49:03AM -0700, Alan Ianson wrote:
 On Mon, 17 Jun 2013 11:16:15 -0400
 amber gilchrist wrote:
 
  I want to throw out another problem I am having in this Wheezy
  upgrade: sound! I used to use ALSA with Squeeze, no problems.
  After the upgrade, I am able to get sound in my browser, I can play
  MP3 files, but I can't record and can't play wav: $ mpg321
  radio.mp3(works fine) $ bplay radio.wavbplay: /dev/dsp: No such file
  or directory$ I am not sure how to debug this one. I tried loading
  the oss-compat package, and that hasn't changed things either. What
  could have happened in the Squeeze-Wheezy upgrade to get rid
  of /dev/dsp? 

Is oss-compat installed?

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130620103644.GB15403@tal



Re: /dev/dsp missing in Wheezy

2013-06-18 Thread Alan Ianson
On Mon, 17 Jun 2013 11:16:15 -0400
amber gilchrist wrote:

 I want to throw out another problem I am having in this Wheezy
 upgrade: sound! I used to use ALSA with Squeeze, no problems.
 After the upgrade, I am able to get sound in my browser, I can play
 MP3 files, but I can't record and can't play wav: $ mpg321
 radio.mp3(works fine) $ bplay radio.wavbplay: /dev/dsp: No such file
 or directory$ I am not sure how to debug this one. I tried loading
 the oss-compat package, and that hasn't changed things either. What
 could have happened in the Squeeze-Wheezy upgrade to get rid
 of /dev/dsp? 

I'm not sure if this will help you, but I have to load the snd_pcm_oss
and snd_mixer_oss modules with modprobe to use mp3blaster. I'm not
familiar with bplay but maybe it needs those modules too.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130618104903.4e86e...@debian.ok.shawcable.net



Re: /dev/dsp missing in Wheezy

2013-06-18 Thread Kailash

On Tuesday 18 June 2013 11:19 PM, Alan Ianson wrote:

On Mon, 17 Jun 2013 11:16:15 -0400
amber gilchrist wrote:


I want to throw out another problem I am having in this Wheezy
upgrade: sound! I used to use ALSA with Squeeze, no problems.
After the upgrade, I am able to get sound in my browser, I can play
MP3 files, but I can't record and can't play wav: $ mpg321
radio.mp3(works fine) $ bplay radio.wavbplay: /dev/dsp: No such file
or directory$ I am not sure how to debug this one. I tried loading
the oss-compat package, and that hasn't changed things either. What
could have happened in the Squeeze-Wheezy upgrade to get rid
of /dev/dsp?


I'm not sure if this will help you, but I have to load the snd_pcm_oss
and snd_mixer_oss modules with modprobe to use mp3blaster. I'm not
familiar with bplay but maybe it needs those modules too.




Funnily enough, I was just reading up on sound in Linux. /dev/dsp is the 
OSS emulation provided by ALSA

http://alsa.opensrc.org/OSS_emulation

bplay's code appears to have been written in '98 so probably OSS.
Options would be to review the url above to see what else you've missed 
or switch to a newer player.


Best wishes,
Kailash


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/51c0a464.2060...@gmail.com



Re: /dev/dsp missing in Wheezy

2013-06-17 Thread Pol Hallen
 I want to throw out another problem I am having in this Wheezy upgrade: sound!
 I used to use ALSA with Squeeze, no problems.
 After the upgrade, I am able to get sound in my browser, I can play MP3 
 files, but I can't record and can't play wav:
 $ mpg321 radio.mp3(works fine)
 $ bplay radio.wavbplay: /dev/dsp: No such file or directory$
 I am not sure how to debug this one. I tried loading the oss-compat package, 
 and that hasn't changed things either. What could have happened in the 
 Squeeze-Wheezy upgrade to get rid of /dev/dsp?

/dev/snd/?


Pol


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51bf3eb4.7000...@fuckaround.org



Re: /dev/dsp diparait souvent et...

2013-05-10 Thread philippe monroux
De (from) (von) raphael.poite...@gmail.com :

 C'est normal si tu tournes avec alsa.
 
 À mon avis, il doit y avoir un conflit entre alsa et OSS chez la
 personne qui a le problème. Il faudrait virer OSS, refaire la
 configuration skype et la configuration du son à partir du
 bureau. Difficile d'être plus précis pour moi.

voilà j'ai viré tous les paquets oss et les modules oss. Tout marche
sans configuration  skype etc...

Merci

-- 
Philippe

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130510113437.GA9369@locahost@localdomain



Re: /dev/dsp diparait souvent et...

2013-05-09 Thread Raphaël POITEVIN
Bonjour,
philippe monroux effemer...@gmail.com writes:

 Bonjour,

 ...et est remplacé par /dev/dsp1.

 et donc je peux pas me servir de skype (ou j'ai pas
 le son sur youtube etc...)

/dev/dsp, ça sent le OSS ça.

 Un alsa force-reload résout le pb (ça rétablit /dev/dsp) mais bon pas
 franchement pratique.

Ou là ! Du alsa avec du OSS

 J'ai lu ici où là qu'il faut faire une règle udev mais est-ce que ça
 va réellement résoudre ce pb car elle doit déjà exister quelque part
 cette règle non ? ce qui n'empêche pas dsp de disparaître...

Tu parles de skype, de son sur youtube, à mon avis, tu peux commencer
par virer OSS et n'utiliser que alsa. À moins que tu aies des applis qui
ne parlent pas alsa, auquel cas il te faut le paquet oss-compat si je ne
dis pas de bêtises.
-- 
Raphaël
« Tout chercheur plongé dans la science subit une poussée de bas en haut 
susceptible de lui remonter le moral. »
Monsieur Cyclopède

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87bo8ksetm.fsf@mozart.musiciens



Re : /dev/dsp diparait souvent et...

2013-05-09 Thread nicolas . patrois
Le 09/05/2013 11:05:57, Raphaël POITEVIN a écrit :

 Tu parles de skype, de son sur youtube, à mon avis, tu peux commencer
 par virer OSS et n'utiliser que alsa. À moins que tu aies des applis
 qui ne parlent pas alsa, auquel cas il te faut le paquet oss-compat 
 si je ne dis pas de bêtises.

Il y a aussi alsa-oss.

nicolas patrois : pts noir asocial
-- 
RÉALISME

M : Qu'est-ce qu'il nous faudrait pour qu'on nous considère comme des 
humains ? Un cerveau plus gros ?
P : Non... Une carte bleue suffirait...

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/1368091861.18188...@new-host-2.home



Re: /dev/dsp diparait souvent et...

2013-05-09 Thread philippe monroux
De (from) (von) raphael.poite...@gmail.com :

 Tu parles de skype, de son sur youtube, à mon avis, tu peux commencer
 par virer OSS et n'utiliser que alsa. À moins que tu aies des applis qui
 ne parlent pas alsa, auquel cas il te faut le paquet oss-compat si je ne
 dis pas de bêtises.

sais pas. Tout ce que je sais est que lorsque je n'ai pas /dev/dsp
j'ai pas de son voilà

-- 
Philippe

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130509093521.GA16578@locahost@localdomain



Re: /dev/dsp diparait souvent et...

2013-05-09 Thread Gaëtan PERRIER
Le Thu, 9 May 2013 13:35:21 +0400
philippe monroux effemer...@gmail.com a écrit:

 De (from) (von) raphael.poite...@gmail.com :
 
  Tu parles de skype, de son sur youtube, à mon avis, tu peux
  commencer par virer OSS et n'utiliser que alsa. À moins que tu aies
  des applis qui ne parlent pas alsa, auquel cas il te faut le paquet
  oss-compat si je ne dis pas de bêtises.
 
 sais pas. Tout ce que je sais est que lorsque je n'ai pas /dev/dsp
 j'ai pas de son voilà
 

Bizarre je n'ai pas de /dev/dsp et j'ai du son ...
Tu as quelle version de Debian ?
Installation récente ou héritée au fur et à mesure des mises à jours ?

Gaëtan

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20130509152330.5967df9e2a3556c24b922...@neuf.fr



Re: /dev/dsp diparait souvent et...

2013-05-09 Thread Raphaël POITEVIN
Gaëtan PERRIER gaetan.perr...@neuf.fr writes:

 Bizarre je n'ai pas de /dev/dsp et j'ai du son ...

C'est normal si tu tournes avec alsa.

À mon avis, il doit y avoir un conflit entre alsa et OSS chez la
personne qui a le problème. Il faudrait virer OSS, refaire la
configuration skype et la configuration du son à partir du
bureau. Difficile d'être plus précis pour moi.
-- 
Raphaël
« Tout chercheur plongé dans la science subit une poussée de bas en haut 
susceptible de lui remonter le moral. »
Monsieur Cyclopède

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/877gj8s13t.fsf@mozart.musiciens



Re: /dev/dsp diparait souvent et...

2013-04-29 Thread Morel Bérenger

Here is a rough translation of his message:

/dev/dsp often disappear and is replaced (or accompanied) by /dev/dsp1 (or
2) but when there is no /dev/dsp he can not use skype (or have sound on
youtube).

The command alsa force-reload solves the problem (it fixes /dev/dsp) ,
but is not really handy, so some informations about how to solve the
problem would be useful.


Le Dim 28 avril 2013 11:49, effemer...@gmail.com a écrit :
 Bonjour,


 ...et est remplacé (ou est accompagné par) par /dev/dsp1...ou 2.


 Bref qd j'ai pas  /dev/dsp je peux pas me servir de skype (ou j'ai pas
 le son sur youtube etc...)

 Un alsa force-reload résout le pb (ça rétablit /dev/dsp) mais bon pas
 franchement pratique.

 Une recette miracle (mais pérenne) ou un mini tuto qui explique bien ?



 Persil beaucoup
 Arrosoir

Tu ne risques pas d'avoir beaucoup de réponses en écrivant en français sur
une liste internationale... et ce même en postant 2 fois avec 2 adresses
différentes.



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/c31b74868394b64cbc6373eb95f78fc6.squir...@www.sud-ouest.org



Re: /dev/dsp diparait souvent et...

2013-04-28 Thread Steven Post
On Sun, 2013-04-28 at 13:49 +0400, effemer...@gmail.com wrote:
 Bonjour,

Bonjour,

 
 ...et est remplacé (ou est accompagné par) par /dev/dsp1...ou 2.
 
 Bref qd j'ai pas  /dev/dsp je peux pas me servir de skype (ou j'ai pas
 le son sur youtube etc...)
 
 Un alsa force-reload résout le pb (ça rétablit /dev/dsp) mais bon pas
 franchement pratique.
 
 Une recette miracle (mais pérenne) ou un mini tuto qui explique bien ?
 
 
 Persil beaucoup
 Arrosoir
 
 --
 Philippe
 
 

Excusez-moi pour mon Français mauvais, c'etait longtemps, plus de dix
ans.
On parle Anglais dans le liste ici, vous pouvez ecrir en Français à
debian-user-fre...@lists.debian.org


English translation:
Excuse my bad French, it has been over 10 years since I had to use it.
This is an English speaking list, you can write in French to
debian-user-fre...@lists.debian.org

Regards,
Steven



signature.asc
Description: This is a digitally signed message part


creating /dev/dsp in a standard way

2012-05-17 Thread Dan Hitt
I'm trying out different sound editors on debian 6.0.4 (squeeze).

Some of them work fine right out of the box (mhwaveedit
and kwave) and some won't play sound (gnusound and snd).

(So no matter what, i know that hardware shouldn't be an
issue since i can play sound from some software without
any issues.)

All of these come from
sudo apt-get install PACKAGE_NAME

I believe that gnusound and snd fail because they are
trying to use /dev/dsp, which does not exist on my system.

Now . . . it seems like /dev/dsp would or should be created
for any package which needs it --- so i think i should file
a bug about this (but not sure exactly where).

But maybe not, maybe there is some standard step
i should be taking to guarantee that /dev/dsp gets created.

If so, what would that step be?

Thanks in advance for any help (and obviously i'm quite
a neophyte here, so i appreciate any suggestions).

dan


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOphiz+LCsbaw-DBAkAyFwCNCXJvmgnyMc6=f43fq6wwhen...@mail.gmail.com



Re: creating /dev/dsp in a standard way

2012-05-17 Thread Dan Hitt
ok, so i was much too quick on the draw in posting this problem.

There's a sound faq for debian
   http://wiki.debian.org/SoundFAQ
which advises installing the package oss_compat.

I did
   sudo apt-get install oss_compat
and it created /dev/dsp, and snd and gnusound now
make a sound.

Sorry for the false alarm.

(Although --- when i did the installation, i got this error
message: FATAL: Module snd_seq_oss not found.
Nevertheless, the return status of the apt-get command
was 0, the /dev/dsp device was created, and i can
now hear sound from those two programs i couldn't
hear from before.  All this just for reference in case
somebody stumbles across this post.)

dan


On Thu, May 17, 2012 at 9:12 PM, Dan Hitt dan.h...@gmail.com wrote:
 I'm trying out different sound editors on debian 6.0.4 (squeeze).

 Some of them work fine right out of the box (mhwaveedit
 and kwave) and some won't play sound (gnusound and snd).

 (So no matter what, i know that hardware shouldn't be an
 issue since i can play sound from some software without
 any issues.)

 All of these come from
    sudo apt-get install PACKAGE_NAME

 I believe that gnusound and snd fail because they are
 trying to use /dev/dsp, which does not exist on my system.

 Now . . . it seems like /dev/dsp would or should be created
 for any package which needs it --- so i think i should file
 a bug about this (but not sure exactly where).

 But maybe not, maybe there is some standard step
 i should be taking to guarantee that /dev/dsp gets created.

 If so, what would that step be?

 Thanks in advance for any help (and obviously i'm quite
 a neophyte here, so i appreciate any suggestions).

 dan


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOphizK5e2FL0GT6UiP-5oDxeuXL=-aurUqk+9iUe=enma_...@mail.gmail.com



Re: creating /dev/dsp in a standard way

2012-05-17 Thread Dan Hitt
On Thu, May 17, 2012 at 10:20 PM, Dan Hitt dan.h...@gmail.com wrote:
 ok, so i was much too quick on the draw in posting this problem.

 There's a sound faq for debian
   http://wiki.debian.org/SoundFAQ
 which advises installing the package oss_compat.

 I did
   sudo apt-get install oss_compat

Ack!!! that should be
   sudo apt-get install oss-compat

 and it created /dev/dsp, and snd and gnusound now
 make a sound.

 Sorry for the false alarm.

Still of course sorry for the false alarm, and the false followup :(,
but this time i did a copy/paste so the command should at
least be correct.

dan


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOphizKBcQ7BVe0y+er=rjlxmnuiqk4jksb6mqfgfo01-...@mail.gmail.com



pas de /dev/dsp

2011-10-30 Thread moi-meme

Sous crunchbang à jour (~squeezze) j'essaie d'enregistrer un vinyle avec 
gramofile.

Ça marchait bien autrefois.

Maintenant plus de /dev/dsp : envolé.

(J'ai fait plusieurs updates depuis.)

Mon alsamixer fonctionne bien, toute l'audio aussi : 
mocp,mplayer,totem,audacity,gnome-sound-recorder, etc.

En root c'est pareil gramofile pleure : normal pas de /dev/dsp ...

lspci trouve la carte (normal sinon comment marcheraient les autres trucs 
audio).

Je pense que /dev/dsp a migré, mais où ?
rien vu de conciliant sur /dev.

http://wiki.debian.org/SoundFAQ ne m'a pas appris grand chose.

J'ai l'impression que c'est lié à OSS, mais je n'ai rien de tout cela 
d'installé.

Une petite piste ?

Merci d'avance
C Hiebel

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4ead69fe$0$25887$426a7...@news.free.fr



Re: pas de /dev/dsp

2011-10-30 Thread giggzounet
Le dimanche 30 octobre 2011 à 15:15 +, moi-meme a écrit :
 Sous crunchbang à jour (~squeezze) j'essaie d'enregistrer un vinyle avec 
 gramofile.
 
 Ça marchait bien autrefois.
 
 Maintenant plus de /dev/dsp : envolé.
 
 (J'ai fait plusieurs updates depuis.)
 
 Mon alsamixer fonctionne bien, toute l'audio aussi : 
 mocp,mplayer,totem,audacity,gnome-sound-recorder, etc.
 
 En root c'est pareil gramofile pleure : normal pas de /dev/dsp ...
 
 lspci trouve la carte (normal sinon comment marcheraient les autres trucs 
 audio).
 
 Je pense que /dev/dsp a migré, mais où ?
 rien vu de conciliant sur /dev.
 
 http://wiki.debian.org/SoundFAQ ne m'a pas appris grand chose.
 
 J'ai l'impression que c'est lié à OSS, mais je n'ai rien de tout cela 
 d'installé.
 
 Une petite piste ?
 
 Merci d'avance
 C Hiebel
 

Salut,

as tu essayé aoss gramofile ?

Bon je ne connais pas du tout cette appli...mais en général qd une
vieille appli cherche /dev/dsp, aoss peut aider...

Si je me souviens bien, /dev/dsp date de l'ère des drivers oss.
Maintenant le noyau utilise alsa, donc plus de /dev/dsp. D'où
l'utilisation de aoss qui fait de le pont entre les 2.

bon c'est sans garantie ;)

bye
Guillaume


--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/1319992760.2785.2.camel@njal



Re: pas de /dev/dsp

2011-10-30 Thread Raphaël POITEVIN
Le 30/10/11, giggzounetgiggzou...@gmail.com a écrit :
 as tu essayé aoss gramofile ?

 Bon je ne connais pas du tout cette appli...mais en général qd une
 vieille appli cherche /dev/dsp, aoss peut aider...

 Si je me souviens bien, /dev/dsp date de l'ère des drivers oss.

Oui, je crois que tu as raison pour /dev/dsp.

 Maintenant le noyau utilise alsa, donc plus de /dev/dsp. D'où
 l'utilisation de aoss qui fait de le pont entre les 2.

Sinon, je crois, pour une bone compatibilité, on peut utiliser le
paquet oss-compat.

Raphaël POITEVIN

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAMmtCiXUAkAPoS-Jg=np-by2sumek1vjjxizv-y1n7utror...@mail.gmail.com



Re: pas de /dev/dsp

2011-10-30 Thread moi-meme
Le Sun, 30 Oct 2011 17:40:01 +0100, giggzounet a écrit :

 Si je me souviens bien, /dev/dsp date de l'ère des drivers oss.
 Maintenant le noyau utilise alsa, donc plus de /dev/dsp. D'où
 l'utilisation de aoss qui fait de le pont entre les 2.
 
 bon c'est sans garantie

pas de OSS installé.

aoss est dans le package alsa-oss.

gramofile trouve maintenant /dev/dsp.

Ça a pas l'air complètement gagné. 
Je vais faire un essai en  vraie grandeur mais dans quelques jours parce 
qu'il faut que j'installe la platine, etc. et problèmes de visite de 
famille.

Je donnerai le résultat à ce moment là.

Merci à toi et à Nicolas.
C Hiebel
C Hiebel

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4ead95f9$0$26173$426a7...@news.free.fr



Re: pas de /dev/dsp

2011-10-30 Thread Sylvain L. Sauvage
Le dimanche 30 octobre 2011 à 19:16:05, Raphaël POITEVIN a écrit 
:
[…]
  Si je me souviens bien, /dev/dsp date de l'ère des drivers
  oss.
 
 Oui, je crois que tu as raison pour /dev/dsp.
 
  Maintenant le noyau utilise alsa, donc plus de /dev/dsp.
  D'où l'utilisation de aoss qui fait de le pont entre les
  2.
 
 Sinon, je crois, pour une bone compatibilité, on peut
 utiliser le paquet oss-compat.

Ou il suffit simplement de charger le module snd-pcm-oss 
(modprobe snd-pcm-oss, et pérénisation en l’ajoutant dans 
/etc/modules).

-- 
 Sylvain Sauvage

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/201110301953.07199.sylvain.l.sauv...@free.fr



Re: pas de /dev/dsp

2011-10-30 Thread moi-meme
Le Sun, 30 Oct 2011 20:00:01 +0100, Sylvain L. Sauvage a écrit :

 Sinon, je crois, pour une bone compatibilité, on peut utiliser le
 paquet oss-compat.
 
 Ou il suffit simplement de charger le module snd-pcm-oss (modprobe
 snd-pcm-oss, et pérénisation en l’ajoutant dans /etc/modules).

On m'a proposé par ailleurs alsa-oss.
Avec ça gramofile retrouve son /dev/dsp.

Mais pas essayé en vraie grandeur.

Je note pour essais futurs. (un peu overbooké maintenant)

Merci
C Hiebel

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4eadae46$0$31684$426a7...@news.free.fr



Re: pas de /dev/dsp

2011-10-30 Thread moi-meme
Le Sun, 30 Oct 2011 19:50:01 +0100, moi-meme a écrit :

 aoss est dans le package alsa-oss.
 
 gramofile trouve maintenant /dev/dsp.
 
 Ça a pas l'air complètement gagné. Je vais faire un essai en  vraie
 grandeur mais dans quelques jours parce qu'il faut que j'installe la
 platine, etc. et problèmes de visite de famille.

Vite fait sur un coin de table pour avoir l'esprit tranquille ...

mauvaise manip alsa-oss ne marche pas. Moi y en a merdé.

Par contre oss-compat marche même si à l'installation j'ai un 
FATAL: Module snd_seq_oss not found

J'ai bien vu un snd-seq-oss mais c'est dans :
linux-image-2.6.36-2.dmz.5-liquorix-686
Je ne vais pas changer d'image comme ça.

Je reste avec mon Linux crunchbang 2.6.32-5-686  :-))

Donc pour moi c'est suffisamment réglé. Ça marche et je n'en demande 
pas plus.

Merci à tous.
C Hiebel

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4eadb476$0$10035$426a7...@news.free.fr



Alsa alternative for /dev/dsp

2010-01-20 Thread T o n g
Hi,

I'm wondering if there is some easy alternative Alsa devices for 
/dev/dsp. 

The reason I'm asking is that the flash-player in my web browser always 
blocks others to access /dev/dsp. One simple example,

 $ cat /dev/urandom  /dev/dsp
 bash: /dev/dsp: Device or resource busy

I'm wondering if there is an alternative Alsa devices that I can use.

Thanks

-- 
Tong (remove underscore(s) to reply)
  http://xpt.sourceforge.net/techdocs/
  http://xpt.sourceforge.net/tools/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: A software function generator for /dev/dsp?

2010-01-14 Thread T o n g
On Tue, 12 Jan 2010 10:53:37 +0100, Michael Renner wrote:

 I'm looking for a function generator for the soundcard. It should
 generate sine, square and triangle.

Take a look at sox. Eg, the following from 'man sox',

,-
| synth [-j KEY] [-n] [len [off [ph [p1 [p2 [p3]] {[type] [combine]
| [[%]freq[k][:|+|/|-[%]freq2[k]]] [off [ph [p1 [p2 [p3]}
|This  effect  can  be  used to generate fixed or swept frequency
|audio tones with various wave shapes, or to  generate  wide-band
|noise  of  various  `colours'. . . 
| 
|For  example,  the  following  produces a 3 second, 48kHz, audio
|file containing a sine-wave swept from 300 to 3300 Hz:
|   sox -n output.wav synth 3 sine 300-3300
|and this produces an 8 kHz version:
|   sox -r 8000 -n output.wav synth 3 sine 300-3300
`-


-- 
Tong (remove underscore(s) to reply)
  http://xpt.sourceforge.net/techdocs/
  http://xpt.sourceforge.net/tools/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



A software function generator for /dev/dsp?

2010-01-12 Thread Michael Renner
Moin,

I'm looking for a function generator for the soundcard. It should generate
sine, square and triangle.
Maybe modulate and sweep.
I'm also looking for a oscilloscope software for the souncard.

Any hint?
Thanks
-- 
|Michael Renner  E-mail: michael.ren...@gmx.de  |
|D-81541 Munich  GermanyICQ: #112280325 |
|Germany Don't drink as root!  ESC:wq


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: /dev/audio et /dev/dsp

2009-10-16 Thread giggzounet
suchod a écrit :
 Le 10/16/2009 12:19 AM, giggz a écrit :

 tu dois utiliser alsa. et /dev/dsp c'est la vieille méthode OSS. tu peux
 installer le paquet alsa-oss et tenter un aoss tonprogramme.

 bye


 Bonsoir giggz
 je viens de faire aoss monprog tout démarre bien, je n'ai plus d'erreur
 lorsque je lance l'enregistrement, maisje n'ai rien du tout !! ??
 
 cordialement
 jerome
 
 
 

vérifie les niveaux des canaux avec alsamixer par exemple...sinon je
n'ai pas d'autres idées.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



Re: /dev/audio et /dev/dsp

2009-10-16 Thread suchod

Le 10/15/2009 10:59 PM, Silvère Maugain a écrit :

On Thu, Oct 15, 2009 at 10:04:59PM +0200, suchod wrote:
   

Bonjour a toutes et a tous
 

Bonjour,

   

quand je lance l'enregistrement j'obtiens l'erreur suivante :

could not gain access to /dev/dsp meme chose pour /dev/audio.
 

Peut-être ajouter l'utilisateur au groupe audio
$ sudo adduser toto audio

Sans oublier de se reconnecter pour prendre en compte les modifications.

   

Bonjour Silvère

j ai fait   :cat /etc/group | grep audio

la réponse  :   audio:x:29:suchod,pulse

l'utilisateur c'est bien suchod.   Est ce que cela correspond bien à
ce que tu m'a indiqué ??

salut cordial
jerome



--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



Re: /dev/audio et /dev/dsp

2009-10-16 Thread giggzounet
suchod a écrit :
 Le 10/15/2009 10:59 PM, Silvère Maugain a écrit :
 On Thu, Oct 15, 2009 at 10:04:59PM +0200, suchod wrote:
   
 Bonjour a toutes et a tous
  
 Bonjour,

   
 quand je lance l'enregistrement j'obtiens l'erreur suivante :

 could not gain access to /dev/dsp meme chose pour /dev/audio.
  
 Peut-être ajouter l'utilisateur au groupe audio
 $ sudo adduser toto audio

 Sans oublier de se reconnecter pour prendre en compte les modifications.


 Bonjour Silvère
 
 j ai fait   :cat /etc/group | grep audio
 
 la réponse  :   audio:x:29:suchod,pulse
 
 l'utilisateur c'est bien suchod.   Est ce que cela correspond bien à
 ce que tu m'a indiqué ??
 

oui.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



/dev/audio et /dev/dsp

2009-10-15 Thread suchod


Bonjour a toutes et a tous

j utilise lenny.  J'ai installé le binaire linux
d'un enregistreur de stream radios.

Dans les préferences on peut dans l'onglet I/O préciser
soit /dev/dsp soit /dev/audio

quand je lance l'enregistrement j'obtiens l'erreur suivante :

could not gain access to /dev/dsp meme chose pour /dev/audio.

merci de m'indiquer par quel bout il faut prendre ce probleme

cordialement
jerome



--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



Re: /dev/audio et /dev/dsp

2009-10-15 Thread giggz
suchod a écrit :
 
 Bonjour a toutes et a tous
 
 j utilise lenny.  J'ai installé le binaire linux
 d'un enregistreur de stream radios.
 
 Dans les préferences on peut dans l'onglet I/O préciser
 soit /dev/dsp soit /dev/audio
 
 quand je lance l'enregistrement j'obtiens l'erreur suivante :
 
 could not gain access to /dev/dsp meme chose pour /dev/audio.
 
 merci de m'indiquer par quel bout il faut prendre ce probleme
 
 cordialement
 jerome
 
 
 

tu dois utiliser alsa. et /dev/dsp c'est la vieille méthode OSS. tu peux
installer le paquet alsa-oss et tenter un aoss tonprogramme.

bye

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



Re: /dev/audio et /dev/dsp

2009-10-15 Thread suchod

Le 10/16/2009 12:19 AM, giggz a écrit :


tu dois utiliser alsa. et /dev/dsp c'est la vieille méthode OSS. tu peux
installer le paquet alsa-oss et tenter un aoss tonprogramme.

bye

   

Bonsoir giggz
je viens de faire aoss monprog tout démarre bien, je n'ai plus d'erreur
lorsque je lance l'enregistrement, maisje n'ai rien du tout !! ??

cordialement
jerome



--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



Re: /dev/audio et /dev/dsp

2009-10-15 Thread Silvère Maugain
On Thu, Oct 15, 2009 at 10:04:59PM +0200, suchod wrote:
 
 Bonjour a toutes et a tous
Bonjour,
 
 quand je lance l'enregistrement j'obtiens l'erreur suivante :
 
 could not gain access to /dev/dsp meme chose pour /dev/audio.

Peut-être ajouter l'utilisateur au groupe audio
$ sudo adduser toto audio

Sans oublier de se reconnecter pour prendre en compte les modifications. 

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists Vous pouvez aussi ajouter le mot
``spam'' dans vos champs From et Reply-To:

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org



No /dev/dsp in Lenny

2009-05-09 Thread Martin McCormick
I installed Lenny from the latest CD image and things are mostly
fantastic. I have never had so much stuff just work right from
the start. The CS3246 on-board sound chip came right up. amixer
and aplay as well as mplayer and mpg123 all work but there is no
/dev/dsp device.

I need it for some voice-grade applications I wrote and
for general experimentation.

A google search turned up more folks whose applications
such as skype wouldn't run for lack of /dev/dsp but I never
found any good answers.

Is there a way to get /dev/dsp back without killing what
is working?

Thank you.

Martin McCormick WB5AGZ  Stillwater, OK 
Systems Engineer
OSU Information Technology Department Telecommunications Services Group


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: No /dev/dsp in Lenny

2009-05-09 Thread Sven Joachim
On 2009-05-09 18:19 +0200, Martin McCormick wrote:

 I installed Lenny from the latest CD image and things are mostly
 fantastic. I have never had so much stuff just work right from
 the start. The CS3246 on-board sound chip came right up. amixer
 and aplay as well as mplayer and mpg123 all work but there is no
 /dev/dsp device.

   I need it for some voice-grade applications I wrote and
 for general experimentation.

   A google search turned up more folks whose applications
 such as skype wouldn't run for lack of /dev/dsp but I never
 found any good answers.

   Is there a way to get /dev/dsp back without killing what
 is working?

Load the snd_pcm_oss kernel module.  The easiest way to do this
automatically is to install the oss-compat package.

Sven


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: No /dev/dsp in Lenny

2009-05-09 Thread Martin McCormick
Sven Joachim writes:
 Load the snd_pcm_oss kernel module.  The easiest way to do this
 automatically is to install the oss-compat package.

It works like a charm. Thank you!

Martin McCormick


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: /dev/dsp, /dev/mixer devices missing

2009-03-19 Thread Eduardo M KALINOWSKI
T o n g wrote:
 Hi,

 Having removed some useless packages, my /dev/dsp, /dev/mixer devices 
 do not exist any more. Alsa and my mp3 player is working fine though. 

 How can I get the /dev/dsp, /dev/mixer, /dev/audio, etc devices back?
   

I'd guess you need oss-compat.

-- 
Needs are a function of what other people have.

Eduardo M KALINOWSKI
edua...@kalinowski.com.br


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: /dev/dsp, /dev/mixer devices missing

2009-03-19 Thread T o n g
On Thu, 19 Mar 2009 12:01:30 -0300, Eduardo M KALINOWSKI wrote:

 How can I get the /dev/dsp, /dev/mixer, /dev/audio, etc devices back?

 I'd guess you need oss-compat.

Bingo!!! Thanks a lot!

-- 
Tong (remove underscore(s) to reply)
  http://xpt.sourceforge.net/techdocs/
  http://xpt.sourceforge.net/tools/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Failed to open sound device /dev/dsp.

2009-03-18 Thread Alexandre DAUMAS
Bonjour, 

Voici une rreur que me met vmware player au démarrage d'un machine virtuelle 
windows XP: 
Failed to open sound device /dev/dsp: No such file or directory 
Failed to connect virtual device sound. 

Voilà le son marche très bien sur mon PC debian squeeze. 
Avez vous une solution? 

Merci. 



Alexandre DAUMAS. 



Re: [OT] problemas /dev/dsp en festival

2008-12-07 Thread Felix Perez
2008/12/7 Fernando A. Lagos B. [EMAIL PROTECTED]:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Felix Perez wrote:
 Hola estimados, he tratado de utilizar festival pero no he podido, he
 seguido un par de post y googleado buscando el error, pero siempre
 dice que debes instalar la compatibilidad alsa oss, mediante los
 paquetes alsa-oss y oss-compat, el post de la lista de hace un timepo
 no me funcionó.  El sonido funciona muy bien de echo instale espeak y
 va muy bien pero la voz es muy metálica y quiero probar festival.
 el error de marras es:

 $ festival
 Festival Speech Synthesis System 1.96:beta July 2004
 Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.
 For details type `(festival_warranty)'
 festival (SayText hola mundo)
 Linux: can't open /dev/dsp
 #Utterance 0xb6afe718
 festival

 Verifica cual es el dispositivo de audio que estan usando las otras
 aplicaciones que no tienen problemas con el audio. Luego dile a festival
 el dispositivo de audio que quieres usar.


El problema fue solucionado y publicado como solucionado.
Pego aqui lo publicado y detallo mejor:

Instalar los paquetes paquetes alsa-oss y oss-compat y luego cargar el
modulo snd-pcm-oss
como root hacer
# modprobe snd-pcm-oss
y ahora por fin funciona el festival, es un poco mejor que espeak
aunque aun lejos de loquendo.

Suerte y espero sirva.

-- 
usuario linux  #274354
normas de la lista: http://wiki.debian.org/NormasLista


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [OT] problemas /dev/dsp en festival

2008-12-06 Thread Fernando A. Lagos B.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Felix Perez wrote:
 Hola estimados, he tratado de utilizar festival pero no he podido, he
 seguido un par de post y googleado buscando el error, pero siempre
 dice que debes instalar la compatibilidad alsa oss, mediante los
 paquetes alsa-oss y oss-compat, el post de la lista de hace un timepo
 no me funcionó.  El sonido funciona muy bien de echo instale espeak y
 va muy bien pero la voz es muy metálica y quiero probar festival.
 el error de marras es:
 
 $ festival
 Festival Speech Synthesis System 1.96:beta July 2004
 Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.
 For details type `(festival_warranty)'
 festival (SayText hola mundo)
 Linux: can't open /dev/dsp
 #Utterance 0xb6afe718
 festival

Verifica cual es el dispositivo de audio que estan usando las otras
aplicaciones que no tienen problemas con el audio. Luego dile a festival
el dispositivo de audio que quieres usar.

 
 uso testing actualizado al dia de joy, en un compaq nc6400, intel
 centrino duo, 1gb ram.
 
 Cualquier ayuda sera bienvenida.
 De antemano gracias.

Suerte.

 

Saludos,
- --
Fernando A. Lagos Berardi - Zerial
Desarrollador y Programador Web
Linux User #382319
Blog: http://blog.zerial.org
Skype: erzerial

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkk7eK8ACgkQIP17Kywx9JSy+gCglBF5ThPXqS4QLp01IdboeTb8
vM8Ani8j87aIzzPsFgDYU7mR+GbBlaJu
=E8pJ
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [OT] problemas /dev/dsp en festival [SOLUCIONADO]

2008-12-05 Thread Felix Perez
2008/12/4 Felix Perez [EMAIL PROTECTED]:
 2008/12/4 David Francos (XayOn) [EMAIL PROTECTED]:
 On Thu, Dec 04, 2008 at 11:20:02AM -0300, Felix Perez wrote:
 Hola estimados, he tratado de utilizar festival pero no he podido, he
 seguido un par de post y googleado buscando el error, pero siempre
 dice que debes instalar la compatibilidad alsa oss, mediante los
 paquetes alsa-oss y oss-compat, el post de la lista de hace un timepo
 no me funcionó.  El sonido funciona muy bien de echo instale espeak y
 va muy bien pero la voz es muy metálica y quiero probar festival.
 el error de marras es:

 $ festival
 Festival Speech Synthesis System 1.96:beta July 2004
 Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.
 For details type `(festival_warranty)'
 festival (SayText hola mundo)
 Linux: can't open /dev/dsp
 #Utterance 0xb6afe718
 festival
 Eso significa que tienes /dev/dsp abierto por alguna otra aplicacion,
 gnome, kde, un reproductor de audio/video, flash...
 Si ejecutas lsof /dev/dsp sabras cúal, matalo y ya esta.
 Supongo que habrá alguna forma de hacerlo funcionar con un mezclador.

 Lo he probado con el sistema recien iniciado, con nada abierto y
 Al ejecutar lsof /dev/dsp me muestra
 lsof: status error on /dev/dsp: No such file or directory

 y el
 ls /dev/dsp
 ls: no se puede acceder a /dev/dsp: No existe el fichero o el directorio

 la verdad me tiene mareado festival

Estimados, el problema era que no habia cargado el modulo snd-pcm-oss
(le di montones de vueltas y no veia el problema)  lo que hice como
root fue un
# modprobe snd-pcm-oss
y ahora por fin funciona el festival, es un poco mejor que espeak
aunque aun lejos de loquendo.

Saludos y gracias por la ayuda.

 Saludos.

 uso testing actualizado al dia de joy, en un compaq nc6400, intel
 centrino duo, 1gb ram.




-- 
usuario linux  #274354
normas de la lista: http://wiki.debian.org/NormasLista


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[OT] problemas /dev/dsp en festival

2008-12-04 Thread Felix Perez
Hola estimados, he tratado de utilizar festival pero no he podido, he
seguido un par de post y googleado buscando el error, pero siempre
dice que debes instalar la compatibilidad alsa oss, mediante los
paquetes alsa-oss y oss-compat, el post de la lista de hace un timepo
no me funcionó.  El sonido funciona muy bien de echo instale espeak y
va muy bien pero la voz es muy metálica y quiero probar festival.
el error de marras es:

$ festival
Festival Speech Synthesis System 1.96:beta July 2004
Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.
For details type `(festival_warranty)'
festival (SayText hola mundo)
Linux: can't open /dev/dsp
#Utterance 0xb6afe718
festival

uso testing actualizado al dia de joy, en un compaq nc6400, intel
centrino duo, 1gb ram.

Cualquier ayuda sera bienvenida.
De antemano gracias.

-- 
usuario linux  #274354
normas de la lista: http://wiki.debian.org/NormasLista


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [OT] problemas /dev/dsp en festival

2008-12-04 Thread David Francos (XayOn)
On Thu, Dec 04, 2008 at 11:20:02AM -0300, Felix Perez wrote:
 Hola estimados, he tratado de utilizar festival pero no he podido, he
 seguido un par de post y googleado buscando el error, pero siempre
 dice que debes instalar la compatibilidad alsa oss, mediante los
 paquetes alsa-oss y oss-compat, el post de la lista de hace un timepo
 no me funcionó.  El sonido funciona muy bien de echo instale espeak y
 va muy bien pero la voz es muy metálica y quiero probar festival.
 el error de marras es:
 
 $ festival
 Festival Speech Synthesis System 1.96:beta July 2004
 Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.
 For details type `(festival_warranty)'
 festival (SayText hola mundo)
 Linux: can't open /dev/dsp
 #Utterance 0xb6afe718
 festival
Eso significa que tienes /dev/dsp abierto por alguna otra aplicacion,
gnome, kde, un reproductor de audio/video, flash...
Si ejecutas lsof /dev/dsp sabras cúal, matalo y ya esta.
Supongo que habrá alguna forma de hacerlo funcionar con un mezclador.

 uso testing actualizado al dia de joy, en un compaq nc6400, intel
 centrino duo, 1gb ram.
 
 Cualquier ayuda sera bienvenida.
 De antemano gracias.
 
 -- 
 usuario linux  #274354
 normas de la lista: http://wiki.debian.org/NormasLista

-- 
http://thexayon.wordpress.com

Que la fuerza os acompañe.

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS dpu s: a--- C UL P L+++ E--- W+++ N+++ o+ K- w---
O M+ V- PS+ PE+++ Y PGP++ t--- 5 X+++ R tv+++ b DI--- D+++
G+ e- h++ r+++ y
--END GEEK CODE BLOCK--

--XayOn--

Linux registered user #446872




pgpITw1c9egwL.pgp
Description: PGP signature


Re: [OT] problemas /dev/dsp en festival

2008-12-04 Thread Felix Perez
2008/12/4 David Francos (XayOn) [EMAIL PROTECTED]:
 On Thu, Dec 04, 2008 at 11:20:02AM -0300, Felix Perez wrote:
 Hola estimados, he tratado de utilizar festival pero no he podido, he
 seguido un par de post y googleado buscando el error, pero siempre
 dice que debes instalar la compatibilidad alsa oss, mediante los
 paquetes alsa-oss y oss-compat, el post de la lista de hace un timepo
 no me funcionó.  El sonido funciona muy bien de echo instale espeak y
 va muy bien pero la voz es muy metálica y quiero probar festival.
 el error de marras es:

 $ festival
 Festival Speech Synthesis System 1.96:beta July 2004
 Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.
 For details type `(festival_warranty)'
 festival (SayText hola mundo)
 Linux: can't open /dev/dsp
 #Utterance 0xb6afe718
 festival
 Eso significa que tienes /dev/dsp abierto por alguna otra aplicacion,
 gnome, kde, un reproductor de audio/video, flash...
 Si ejecutas lsof /dev/dsp sabras cúal, matalo y ya esta.
 Supongo que habrá alguna forma de hacerlo funcionar con un mezclador.

Lo he probado con el sistema recien iniciado, con nada abierto y
Al ejecutar lsof /dev/dsp me muestra
lsof: status error on /dev/dsp: No such file or directory

y el
ls /dev/dsp
ls: no se puede acceder a /dev/dsp: No existe el fichero o el directorio

la verdad me tiene mareado festival

Saludos.

 uso testing actualizado al dia de joy, en un compaq nc6400, intel
 centrino duo, 1gb ram.

 Cualquier ayuda sera bienvenida.
 De antemano gracias.

 --
 usuario linux  #274354
 normas de la lista: http://wiki.debian.org/NormasLista

 --
 http://thexayon.wordpress.com

 Que la fuerza os acompañe.

 -BEGIN GEEK CODE BLOCK-
 Version: 3.12
 GCS dpu s: a--- C UL P L+++ E--- W+++ N+++ o+ K- w---
 O M+ V- PS+ PE+++ Y PGP++ t--- 5 X+++ R tv+++ b DI--- D+++
 G+ e- h++ r+++ y
 --END GEEK CODE BLOCK--

 --XayOn--

 Linux registered user #446872






-- 
usuario linux  #274354
normas de la lista: http://wiki.debian.org/NormasLista


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Missing /dev/dsp and /dev/mixer

2008-09-17 Thread Florian Kulzer
[ Please stop the top-posting. ]

On Mon, Sep 15, 2008 at 17:35:38 -0400, J X. Evans wrote:
 Hotplug is purged. Although there are hotplug files that seemed to have
 come with the kernel and/or udev.
 
 I'm not sure which release notes you are referring to.

http://www.debian.org/releases/stable/releasenotes

 Everything has been upgraded and is working. Even the audio cards if I
 create the /dev links.
 
 Also, keep in mind that udevd will create the links if I start it
 manually, which might seem to indicate that something is not executing
 in the right order at boot time.

Did you or did you not follow the step-by-step upgrade procedure given
in the release notes?

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



RE: Missing /dev/dsp and /dev/mixer

2008-09-17 Thread J X. Evans
 On Mon, Sep 15, 2008 at 17:35:38 -0400, J X. Evans wrote:
  Hotplug is purged. Although there are hotplug files that seemed to
 have
  come with the kernel and/or udev.
 
  I'm not sure which release notes you are referring to.
 
 http://www.debian.org/releases/stable/releasenotes
 
  Everything has been upgraded and is working. Even the audio cards if
 I
  create the /dev links.
 
  Also, keep in mind that udevd will create the links if I start it
  manually, which might seem to indicate that something is not
 executing
  in the right order at boot time.
 
 Did you or did you not follow the step-by-step upgrade procedure given
 in the release notes?
 
 --
 Regards,| http://users.icfo.es/Florian.Kulzer
   Florian   |
 


While I had not read it at the time, I believe that I have done
everything mentioned and had successfully done about 6 sarge to etch
upgrades prior to this one (although none of those machines had sound
cards).

Update! - I don't know exactly what I did last night, but today when I
reboot it, it is working. 

One thing was to delete all the files in /etc left over from sarge that
were not present on a fresh install: modprobe.conf, modprobe.devfs, and
modutils.

Jim


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Sound problem on Lenny PPC: can't find /dev/dsp

2008-01-14 Thread Florian Kulzer
On Mon, Jan 14, 2008 at 17:47:15 +1030, J.T. Chittleborough wrote:
 Hey, all.

 The sound abruptly stopped working on a Lenny KDE installation on my  
 PowerBook G4 12; I dual-boot with Mac OS X, which it's still working  
 fine with. I'm running a stock Lenny PowerPC kernel, and can't find  
 anything in the APT logs about software changes which might have  
 affected this.

 At startup, pbbuttonsd complains that it can't find /dev/mixer, and aRts 
 complains it can't find /dev/dsp (in both cases, ls -l can't find them 
 either). Similarly, amixer info says it is unable to find any devices. 
 Nothing in KInfoCenter, lspci or Apple's System Profiler seems to give 
 any information on any sound hardware.

 I've tried a dpkg-reconfigure of aRts, reinstalling the arts and  
 libasound2 packages, and installing alsa-tools, without success.

 Does anyone have any other ideas?

Try (as root):

modprobe snd_pcm_oss

If that works then you can add snd_pcm_oss to /etc/modules to make sure
that it is loaded at every boot.

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Sound problem on Lenny PPC: can't find /dev/dsp

2008-01-13 Thread J . T . Chittleborough

Hey, all.

The sound abruptly stopped working on a Lenny KDE installation on my 
PowerBook G4 12; I dual-boot with Mac OS X, which it's still working 
fine with. I'm running a stock Lenny PowerPC kernel, and can't find 
anything in the APT logs about software changes which might have 
affected this.


At startup, pbbuttonsd complains that it can't find /dev/mixer, and 
aRts complains it can't find /dev/dsp (in both cases, ls -l can't find 
them either). Similarly, amixer info says it is unable to find any 
devices. Nothing in KInfoCenter, lspci or Apple's System Profiler seems 
to give any information on any sound hardware.


I've tried a dpkg-reconfigure of aRts, reinstalling the arts and 
libasound2 packages, and installing alsa-tools, without success.


Does anyone have any other ideas?

Thanks,
Jim Chittleborough


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: lsof |grep /dev/dsp # gives 0 output but still busy?

2007-12-16 Thread Kamaraju S Kusumanchi
 How can lsof give no output when /dev/dsp is locked? How can I find
 what process uses my soundcard if not with lsof?
 
 computer:/home/tommy# esd
 /dev/dsp: Device or resource busy
 computer:/home/tommy# lsof|grep /dev/dsp
 computer:/home/tommy#

I have seen this behaviour whenever iceweasel is being used. Close your
iceweasel windows and see if the lsof output still hangs.

raju
-- 
Kamaraju S Kusumanchi
http://www.people.cornell.edu/pages/kk288/
http://malayamaarutham.blogspot.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



lsof |grep /dev/dsp # gives 0 output but still busy?

2007-12-15 Thread Thomas Anderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

How can lsof give no output when /dev/dsp is locked? How can I find
what process uses my soundcard if not with lsof?

computer:/home/tommy# esd
/dev/dsp: Device or resource busy
computer:/home/tommy# lsof|grep /dev/dsp
computer:/home/tommy#

- --
Regards,

Thomas Anderson
Quidquid latine dictum sit, altum sonatur

OpenPGP fingerprint: ED7E 1E98 225A 3FCC 458C B3D7 D625 20E6 F316 BD21
OpenPGP public key: http://todu.dyndns.org/pubkey.txt
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHZAPh1iUg5vMWvSERAhxdAJ4qBmWfMcOI3SuAHMBLfT48DM7GaACglq/u
H7aa1DDvR5EBHknqdx7Zu6U=
=AvPv
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: lsof |grep /dev/dsp # gives 0 output but still busy?

2007-12-15 Thread Ron Johnson
On Saturday 15 December 2007 10:42:09 am Thomas Anderson wrote:
 How can lsof give no output when /dev/dsp is locked? How can
 I find what process uses my soundcard if not with lsof?

 computer:/home/tommy# esd
 /dev/dsp: Device or resource busy
 computer:/home/tommy# lsof|grep /dev/dsp
 computer:/home/tommy#

Maybe your search expression is too restrictive?

-- 
-
Ron Johnson, Jr.
Jefferson, LA  USA

Would you mind not firing on the thermonuclear weapons?
A great line, from a *great* movie: Broken Arrow


signature.asc
Description: This is a digitally signed message part.


Re: Festival no puede abrir /dev/dsp (FUNCIONA)

2007-06-06 Thread Fernando
Oscar Mederos wrote:
 
 El 5/06/07, Fernando [EMAIL PROTECTED] escribió:
 
  Tenía oss por defecto y he instalado los paquetes de alsa. (alsamix
  funciona)
 
 Una pregunta:
 Festival no admite ALSA?
 Si te da ese error debe ser porque esta intentando acceder mediante OSS
 
 Te recomiendo que uses ALSA.
 Con un 'sudo alsaconf' deberias tener tu tarjeta de sonido funcionando
 bien, pero hay casos, como el mio, que tendras que modificar el
 archivo ~/.asoundrc para otras opciones (dmix, 5.1, etc.)
 Puedes buscar aqui[1] para esas opciones que te digo...
 Despues instala el paquete 'alsa-oss' y configuralo bien (hay varios
 manuales en la web, incluso en [1], donde te explican como hacerlo
 funcionar correctamente...)
 
 Cuando lo tengas todo configurado, prueba haciendo un 'aoss comando'
 (en este caso el comando seria 'festival', no?) y nos dices que tal te
 fue ;-)
 
 A mi me sucedia exactamente lo mismo con el Audacity...
 
 [1]http://alsa.opensrc.org/Main_Page
 
 --
 Saludos,
 Oscar

Gracias a todos por las respuestas.

He instalado todos los paquetes de alsa y configurado
con alsaconf y al ejecutar con aoss me daba una violación de segmento.
he entrado en modo comando de festival(sin aoss) y de repente
funcionaba.
Ahora ya funciona tal cual $echo Hola hola | festival

Saludos y gracias de nuevo.



-- 
Fernando.
{:-{D

   Hackers do it with fewer instructions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Festival no puede abrir /dev/dsp

2007-06-05 Thread Fernando
Hola:

Estoy intentando probar festival en una Debian etch y me da el siguiente
error.


$ echo (SayText Good morning, welcome to Festival) | festival --tts
Linux: can't open /dev/dsp

Tengo sonido, reproduzco musica y videos sin problema.

$ ls -l /dev/dsp
crw-rw 1 root audio 14, 3 2007-06-05 10:03 /dev/dsp

y en /etc/group estoy en el grupo de audio.
audio:x:29:fernando

He buscado en internet pero no veo que puede estar pasando.

los modulos.

$ lsmod | grep snd
snd_intel8x0   30332  5 
snd_ac97_codec 83104  1 snd_intel8x0
snd_ac97_bus2400  1 snd_ac97_codec
snd_pcm_oss38368  0 
snd_pcm68676  5 snd_intel8x0,snd_ac97_codec,snd_pcm_oss
snd_mixer_oss  15200  1 snd_pcm_oss
snd_seq_dummy   3844  0 
snd_seq_oss28768  0 
snd_seq_midi_event  7008  1 snd_seq_oss
snd_seq45680  5
snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_timer  20996  4 snd_pcm,snd_seq
snd_seq_device  7820  3 snd_seq_dummy,snd_seq_oss,snd_seq
snd47012  15
snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_pcm,snd_mixer_oss,snd_seq_oss,snd_seq,snd_timer,snd_seq_device
soundcore   9248  1 snd
snd_page_alloc  9640  2 snd_intel8x0,snd_pcm


Tenía oss por defecto y he instalado los paquetes de alsa. (alsamix
funciona)



Alguna idea para seguir buscando.



-- 
Fernando.
{:-{D

   Hackers do it with fewer instructions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Festival no puede abrir /dev/dsp

2007-06-05 Thread Lenin Hernández

Prueba instalando estos paquetes: esound esound-clients esound-common

Luego:

$ echo hello everybody | esddsp festival --tts




Saludos, comentanos si te sirvio o encontraste una mejor solución''


--
Lenin Hernández
2.6.18 on Debian Lenny
CUCLUG.: no hay nada mejor, que hacer lo que realmente te gusta.
Linus Tordvalds.: If it compiles, it is good, if it boots up it is perfect.


Re: Festival no puede abrir /dev/dsp

2007-06-05 Thread Fernando
Lenin Hernández wrote:
 
 Prueba instalando estos paquetes: esound esound-clients esound-common
 
 Luego:
 
 $ echo hello everybody | esddsp festival --tts
 
 Saludos, comentanos si te sirvio o encontraste una mejor solución''
 
 --
 Lenin Hernández
 2.6.18 on Debian Lenny
 CUCLUG.: no hay nada mejor, que hacer lo que realmente te gusta.
 Linus Tordvalds.: If it compiles, it is good, if it boots up it is perfect.



No, no ha funcionado :-/

Buen intento, gracias.

Mas ideas...


-- 
Fernando.
{:-{D

   Hackers do it with fewer instructions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Festival no puede abrir /dev/dsp

2007-06-05 Thread Oscar Mederos

El 5/06/07, Fernando [EMAIL PROTECTED] escribió:


Tenía oss por defecto y he instalado los paquetes de alsa. (alsamix
funciona)


Una pregunta:
Festival no admite ALSA?
Si te da ese error debe ser porque esta intentando acceder mediante OSS

Te recomiendo que uses ALSA.
Con un 'sudo alsaconf' deberias tener tu tarjeta de sonido funcionando
bien, pero hay casos, como el mio, que tendras que modificar el
archivo ~/.asoundrc para otras opciones (dmix, 5.1, etc.)
Puedes buscar aqui[1] para esas opciones que te digo...
Despues instala el paquete 'alsa-oss' y configuralo bien (hay varios
manuales en la web, incluso en [1], donde te explican como hacerlo
funcionar correctamente...)

Cuando lo tengas todo configurado, prueba haciendo un 'aoss comando'
(en este caso el comando seria 'festival', no?) y nos dices que tal te
fue ;-)

A mi me sucedia exactamente lo mismo con el Audacity...

[1]http://alsa.opensrc.org/Main_Page

--
Saludos,
Oscar



Re: /dev/dsp missing (SOLVED)

2007-01-03 Thread hendrik
On Mon, Jan 01, 2007 at 04:45:25AM +0100, Benjam? Villoslada wrote:
 El Diumenge 31 Desembre 2006 23:14, [EMAIL PROTECTED] va escriure:
  Can anyone tell me how to get audio input without disbling the rest of
  the sound system? ?That's what I thought I needed /dev/dsp for. I need
  to rip cassette tapes of church services to post on the church web site.
 
 Maybe with alsaconf (as root) and then look for mute channels with alsamixer.

The problem is that the recordin programs I've used say they cannot open 
/dev/dsp, and, indeed, when I ls /dev I find that there is no /dev/dsp/
making the changes mentioned a few posts ago does indeed give me a 
/dev/dsp, but then none of the usual audio programs (like xmms and 
kaffeine) provide any sound.  Would the existence of /dev/dsp set all 
the volume controls to zero?  And would they mysteriously reset to 
their usable values when I undo the changes and reboot without a 
/dev/dsp?

There's something I don't understand here.

-- hendrik

 
 -- 
 Benjam?
 http://blog.bitassa.cat
 
 
 
 .
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp missing (SOLVED)

2007-01-03 Thread Alan Ianson
On Wed January 3 2007 07:31, [EMAIL PROTECTED] wrote:
 On Mon, Jan 01, 2007 at 04:45:25AM +0100, Benjam? Villoslada wrote:
  El Diumenge 31 Desembre 2006 23:14, [EMAIL PROTECTED] va escriure:
   Can anyone tell me how to get audio input without disbling the rest of
   the sound system? ?That's what I thought I needed /dev/dsp for. I need
   to rip cassette tapes of church services to post on the church web
   site.
 
  Maybe with alsaconf (as root) and then look for mute channels with
  alsamixer.

 The problem is that the recordin programs I've used say they cannot open
 /dev/dsp, and, indeed, when I ls /dev I find that there is no /dev/dsp/
 making the changes mentioned a few posts ago does indeed give me a
 /dev/dsp, but then none of the usual audio programs (like xmms and
 kaffeine) provide any sound.  Would the existence of /dev/dsp set all
 the volume controls to zero?  And would they mysteriously reset to
 their usable values when I undo the changes and reboot without a
 /dev/dsp?

 There's something I don't understand here.

Alsa's mixer settings are all muted and set to zero by default, why I don't 
know. I always run aslamixer and set them to good values and then 
run alsactl store to save them, but kmix or any other mixer can be used 
also.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp missing (SOLVED)

2007-01-03 Thread hendrik
On Wed, Jan 03, 2007 at 08:12:35AM -0800, Alan Ianson wrote:
 On Wed January 3 2007 07:31, [EMAIL PROTECTED] wrote:
  On Mon, Jan 01, 2007 at 04:45:25AM +0100, Benjam? Villoslada wrote:
   El Diumenge 31 Desembre 2006 23:14, [EMAIL PROTECTED] va escriure:
Can anyone tell me how to get audio input without disbling the rest of
the sound system? ?That's what I thought I needed /dev/dsp for. I need
to rip cassette tapes of church services to post on the church web
site.
  
   Maybe with alsaconf (as root) and then look for mute channels with
   alsamixer.
 
  The problem is that the recordin programs I've used say they cannot open
  /dev/dsp, and, indeed, when I ls /dev I find that there is no /dev/dsp/
  making the changes mentioned a few posts ago does indeed give me a
  /dev/dsp, but then none of the usual audio programs (like xmms and
  kaffeine) provide any sound.  Would the existence of /dev/dsp set all
  the volume controls to zero?  And would they mysteriously reset to
  their usable values when I undo the changes and reboot without a
  /dev/dsp?
 
  There's something I don't understand here.
 
 Alsa's mixer settings are all muted and set to zero by default, why I don't 
 know.

To avoid blowing up loudspeakers, I've been told.

 I always run aslamixer and set them to good values and then 
 run alsactl store to save them, but kmix or any other mixer can be used 
 also.

I run alsaconf.  It sets them to usable values.  But it didn't help when 
I had /dev/dsp in existence.

- hendrik


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp missing

2007-01-02 Thread Benjamí Villoslada
El Dilluns 01 Gener 2007 20:43, Sven Arvidsson va escriure:
 It seems the current stable release of Audacity doesn't support ALSA by
 default, but there are workarounds.
 http://audacityteam.org/wiki/index.php?title=LinuxIssues#OSS_vs_ALSA

Thanks again, is a good objective to get OSS free :)


-- 
Benjamí
http://blog.bitassa.cat



.



Re: /dev/dsp missing

2007-01-01 Thread Sven Arvidsson
On Mon, 2007-01-01 at 04:44 +0100, Benjamí Villoslada wrote:
 Ok, thanks!  And Audacity, can works with ALSA?

It seems the current stable release of Audacity doesn't support ALSA by
default, but there are workarounds.
http://audacityteam.org/wiki/index.php?title=LinuxIssues#OSS_vs_ALSA

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


signature.asc
Description: This is a digitally signed message part


Re: /dev/dsp missing

2006-12-31 Thread Sven Arvidsson
On Sun, 2006-12-31 at 05:06 +0100, Benjamí Villoslada wrote:
 Right, but maybe some another programs need /dev/dsp ... such as mpg123?

mpg123 can use alsa, see the -o option.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


signature.asc
Description: This is a digitally signed message part


Re: /dev/dsp missing (SOLVED)

2006-12-31 Thread hendrik
On Sat, Dec 30, 2006 at 03:53:14PM +0100, Benjam? Villoslada wrote:
 I've seen this message durning one reboot (in order to test oss modules 
 load): /etc/modprobe.conf exists but does not include /etc/modprobe.d/!
 
 I see that my /etc/modprobe.conf is empty (no idea about the reason)  I've 
 added include /etc/modprobe.d and now the system loads oss modules on boot:
 
 $ cat /etc/modprobe.conf
 include /etc/modprobe.d

I did this on my sarge system (which also didn't have a /dev/dsp) and 
one appeared.  I could cat from it, and cat /dev/urandom to it and get 
noise.  There are probably better things to cat to it.

Unfortunately, after I did this, none of my audio programs worked.  
Couldn't get sound out of kaffeine, xmms, konqueror

Is this a matter of /dev/dsp disabling alsa or something?

When I took the line out of /etc/modprobe.conf, making it empty again, 
and rebooted (just in case), /dev/dsp vanished, and sould still didn't 
come back.  I had a mute system.  It took powering it down to restore 
normal sound, without /dev/dsp.  This is probably a bug somewhere, that 
the sound card isn't being initialised properly.

Can anyone tell me how to get audio input without disbling the rest of 
the sound system?  That's what I thought I needed /dev/dsp for. I need 
to rip cassette tapes of church services to post on the church web site.

-- hendrik


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp missing (SOLVED)

2006-12-31 Thread Marty

[EMAIL PROTECTED] wrote:

On Sat, Dec 30, 2006 at 03:53:14PM +0100, Benjam? Villoslada wrote:
I've seen this message durning one reboot (in order to test oss modules 
load): /etc/modprobe.conf exists but does not include /etc/modprobe.d/!


I see that my /etc/modprobe.conf is empty (no idea about the reason)  I've 
added include /etc/modprobe.d and now the system loads oss modules on boot:


$ cat /etc/modprobe.conf
include /etc/modprobe.d


I did this on my sarge system (which also didn't have a /dev/dsp) and 
one appeared.  I could cat from it, and cat /dev/urandom to it and get 
noise.  There are probably better things to cat to it.


Unfortunately, after I did this, none of my audio programs worked.  
Couldn't get sound out of kaffeine, xmms, konqueror


I know that xmms at least requires you to specify either ALSA or OSS in the 
sound driver configuration menu.




Is this a matter of /dev/dsp disabling alsa or something?

When I took the line out of /etc/modprobe.conf, making it empty again, 
and rebooted (just in case), /dev/dsp vanished, and sould still didn't 
come back.  I had a mute system.  It took powering it down to restore 
normal sound, without /dev/dsp.  This is probably a bug somewhere, that 
the sound card isn't being initialised properly.


Can anyone tell me how to get audio input without disbling the rest of 
the sound system?  That's what I thought I needed /dev/dsp for.


In Sarge some audio programs, like audacity use only OSS.  Otherwise you can use 
the ALSA sound devices.  With ALSA I suppose you have to disable real OSS, which 
has been deprecated anyway, and use the ALSA OSS-compatibility driver instead. 
I do this myself but use a combination of OSS programs that seems to require 
that I turn off the Gnome sound server (using the sound options in desktop 
preferences) but that could be a configuration error on my part.  This setup 
obviously does not support audio mixing.


 I need

to rip cassette tapes of church services to post on the church web site.


I've digitized a number of audio cassettes that using Gnome sound recorder, but 
getting the volume right was always tricky.




-- hendrik





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: /dev/dsp missing

2006-12-31 Thread Benjamí Villoslada
El Diumenge 31 Desembre 2006 12:01, Sven Arvidsson va escriure:
  Right, but maybe some another programs need /dev/dsp ... such as mpg123?

 mpg123 can use alsa, see the -o option.

Ok, thanks!  And Audacity, can works with ALSA?

-- 
Benjamí
http://blog.bitassa.cat



.



Re: /dev/dsp missing (SOLVED)

2006-12-31 Thread Benjamí Villoslada
El Diumenge 31 Desembre 2006 23:14, [EMAIL PROTECTED] va escriure:
 Can anyone tell me how to get audio input without disbling the rest of
 the sound system?  That's what I thought I needed /dev/dsp for. I need
 to rip cassette tapes of church services to post on the church web site.

Maybe with alsaconf (as root) and then look for mute channels with alsamixer.

-- 
Benjamí
http://blog.bitassa.cat



.



Re: /dev/dsp missing

2006-12-30 Thread Nigel Henry
On Saturday 30 December 2006 03:46, Benjamí Villoslada wrote:
 /dev/dsp is missing in my Debian Sid --I've used it one week ago with XMMS.

 I've tried a oss-compat reinstallation, and have /dev/dsp again.  But
 disappears with the system reboot.

 I've run alsaconf again.   ALSA works fine.

 Any idea? Thanks :)

 Installed packages:

 $ dpkg -l *oss* | grep ^i | awk '{print $2, $3}'
 oss-compat 0.0.4

 $ dpkg -l *alsa* | grep ^i | awk '{print $2, $3}'
 alsa-base 1.0.13-3
 alsa-firmware-loaders 1.0.13-1
 alsa-tools 1.0.13-1
 alsa-utils 1.0.13-1
 alsamixergui 0.9.0rc2-1-9
 libsdl1.2debian-alsa 1.2.11-7

 Kernel:
 $ uname -a
 Linux itaca 2.6.18-3-686 #1 SMP Sun Dec 10 19:37:06 UTC 2006 i686 GNU/Linux

 Regards,

It's worth checking if the alsa-oss package is available on synaptic, and 
installing it if so.

Strange that Xmms was working ok. Perhaps apt-get updates for Sid have removed 
the alsa-oss package for some reason.

Nigel.




Re: /dev/dsp missing

2006-12-30 Thread Benjamí Villoslada
El Dissabte 30 Desembre 2006 14:14, Nigel Henry va escriure:

 It's worth checking if the alsa-oss package is available on synaptic, and
 installing it if so.

I've installed alsa-oss without results :(

 Strange that Xmms was working ok. Perhaps apt-get updates for Sid have
 removed the alsa-oss package for some reason.

I can't see it in aptitude logs --always I use aptitude.  Only one oss-compat 
0.0.3 to 0.0.4 at Oct 2 2006.   Seems that I never installed alsa-oss, but 
oss works in my system before the last week  :??

I can manually load oss modules:

$ sudo modprobe snd-pcm-oss
$ lsmod |grep -i oss
snd_pcm_oss38368  0
snd_mixer_oss  15200  1 snd_pcm_oss
snd_pcm68644  2 snd_pcm_oss,snd_cmipci
snd47012  10 
snd_pcm_oss,snd_mixer_oss,snd_cmipci,snd_pcm,snd_opl3_lib,snd_timer,snd_hwdep,snd_mpu401_uart,snd_rawmidi,snd_seq_device

And have this in /etc/modules.conf but the boot process doesn't load those 
modules:

--
### update-modules: start processing /etc/modutils/alsa-base
# autoloader aliases
alias char-major-116 snd
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0
alias sound-slot-1 snd-card-1
alias sound-slot-2 snd-card-2
alias sound-slot-3 snd-card-3
alias sound-slot-4 snd-card-4
alias sound-slot-5 snd-card-5
alias sound-slot-6 snd-card-6
alias sound-slot-7 snd-card-7
above sound-slot-0 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-1 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-2 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-3 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-4 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-5 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-6 snd-pcm-oss snd-mixer-oss snd-seq-oss
above sound-slot-7 snd-pcm-oss snd-mixer-oss snd-seq-oss
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
# Load optional modules above their base modules
above snd-pcm snd-pcm-oss
above snd-mixer snd-mixer-oss
above snd-seq snd-seq-oss snd-seq-midi
above snd-emu10k1 snd-emu10k1-synth
above snd-via82xx snd-seq
--

Thanks :)

-- 
Benjamí
http://blog.bitassa.cat



.



Re: /dev/dsp missing (SOLVED)

2006-12-30 Thread Benjamí Villoslada
I've seen this message durning one reboot (in order to test oss modules 
load): /etc/modprobe.conf exists but does not include /etc/modprobe.d/!

I see that my /etc/modprobe.conf is empty (no idea about the reason)  I've 
added include /etc/modprobe.d and now the system loads oss modules on boot:

$ cat /etc/modprobe.conf
include /etc/modprobe.d
$ lsmod|grep -i oss
snd_pcm_oss38368  0
snd_mixer_oss  15200  1 snd_pcm_oss
snd_pcm68644  3 snd_cmipci,snd_pcm_oss
snd_seq_oss28768  0
snd_seq_midi_event  7008  2 snd_seq_oss,snd_seq_midi
snd_seq45680  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
snd_seq_device  7820  6 
snd_opl3_lib,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
snd47012  16 
snd_cmipci,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_opl3_lib,snd_hwdep,snd_mpu401_uart,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device


-- 
Benjamí
http://blog.bitassa.cat



.



Re: /dev/dsp missing

2006-12-30 Thread Matus UHLAR - fantomas
On 30.12.06 03:46, Benjamí Villoslada wrote:
 /dev/dsp is missing in my Debian Sid --I've used it one week ago with XMMS.
 
 I've tried a oss-compat reinstallation, and have /dev/dsp again.  But 
 disappears with the system reboot.
 
 I've run alsaconf again.   ALSA works fine.
 
 Any idea? Thanks :)

configure xmms to use ALSA, you won't need /dev/dsp
-- 
Matus UHLAR - fantomas, [EMAIL PROTECTED] ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
The early bird may get the worm, but the second mouse gets the cheese. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp missing

2006-12-30 Thread Benjamí Villoslada
El Diumenge 31 Desembre 2006 01:26, Matus UHLAR - fantomas va escriure:
 configure xmms to use ALSA, you won't need /dev/dsp

Right, but maybe some another programs need /dev/dsp ... such as mpg123?

-- 
Benjamí
http://blog.bitassa.cat



.



etch /dev/dsp hep meşgul

2006-10-30 Thread debian NOVA

merhaba

gece biraz uğraşınca oss modüllerini yükleyerek gnome un sistem 
seslerini çıkarmayı başardım ama bu seferde rythmbox sustu. totemi 
kontrol etmeyi unuttum ama totem her halükarda ses veriyordu.


ayrıca diğer bazı uygulamalarda /dev/dsp meşgul diye ses çıkarmamaya 
başladı. bununla ilgili ubuntu için bir kaç çözüm buldum denedim ama 
nafile. başaramadım.


debian etch kullanıyorum gnome 2.14 idi galiba. ses kartım intel_hda. 
kasım ayı içinde tamamen debiana taşınmaya karar verdim. bu sorunlarımı 
aşarsam daha hızlı taşınabileceğim. en azından bazı debinana geçince 
sessizlikten sıkılmayacağım ((-;


herkese kolay gele

Barış


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp desaparecido

2006-10-20 Thread Javier Ruano
El vie, 20-10-2006 a las 08:37 +0200, jEsuSdA 8) escribió:
 .. o dsp-arecido...
 jejeje, ya lo sé, chiste malo!
 
 Bueno, el tema es que ayer actualicé algunos paquetes, entre ellos udev, 
 alsa y alsa-oss.
 
 Ahora no se me crean los dispositivos /dev/dsp /dev/mixer etc. que 
 necesito tener para que las aplicaciones que funcionan con OSS tengan 
 sonido.
 ¿Alguien sabe como arreglarlo?
Así los creas, lo cual no garantiza que funcionen :)

mknod /dev/dsp c 14 3 
mknod /dev/mixer0 c 14 3 
chmod 777 /dev/dsp* 
chmod 777 /dev/mixer* 
ln -s /dev/dsp0 /dev/dsp 
ln -s /dev/mixer0 /dev/mixer


Saludos

Sapere Aude.
-- 
Javier Ruano [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: /dev/dsp rechte problem

2006-09-18 Thread Christian Frommeyer
Am Montag 18 September 2006 08:00 schrieb Oliver Gräfe:
 Manchmal ist /dev/dsp aber nur ein Link auf /dev/dsp0. Das Problem
 ist nur, dass dsp0 auch der Gruppe root gehört, so dass kein User Das
 Sounddevice öffnen kann. Nach einem Reboot ist alles wieder normal

Hört sich nach udev an.

Gruß Chris

-- 
A: because it distrupts the normal process of thought
Q: why is top posting frowned upon



Re: /dev/dsp rechte problem

2006-09-18 Thread Oliver Gräfe
Am Montag, 18. September 2006 08:15 schrieb Christian Frommeyer:
 Hört sich nach udev an.

 Gruß Chris

Ja schon, aber warum ist das nur manchmal?


oliver



Re: pas de son, pas de /dev/dsp

2006-08-30 Thread herve thibaud

Naios Kae The Korrigan wrote:
Pour le problème de son, je n'ai pas de solution, un module 
particulier peut etre. pour le /dev/dsp, si tu as désactiver oss dans 
ton noyau, ou bien que tu n'as pas mis le module (certe déclaré 
obsolète) tu n'auras pas de son.


j'ai récemment eu un problème de son avec mon asus A8N, il était lié à 
la libasound2, un apt-src du paquet de sid à résolu le pbm (j'utilise 
une soundblaster live 128 sur mon asus A8n-trucmuche-deluxe;, j'ai 
désactivé le contrôleur intégré)
Les choses ont évoluées car maintenant les devices sont bien créés au 
démarrage et /dev/dsp est donc présent. Malheureusement esd ne le 
reconnait pas et répond qu'il n'existe pas. A mon avis il y a un bug 
dans le noyau que j'ai utilisé car je n'avais pas ce problème avec la 
version 2.6.15 64bits . Si je prends une version 2.6.17 ou 18 je ne peux 
plus compiler le module acx100 pour la  carte wifi (nouveau bug qui dure 
depuis plusieurs mois) sans compter qu'il faut que je recompile le 
module maison pour la carte graphique nvidia Geforce 6600 car je 
n'arrive pas à avoir une bonne fois pour toute un module commun. D'autre 
part j'ai eu la mauvaise idée d'acheter une carte TV hauppauge 1300 pour 
la TNT il y a 6 mois et je dois réinstaller à chaque nouveau noyau la 
version béta en développement le module définitif tardant a être sorti 
pour être intégré aux nouveaux noyaux.
Autant dire que je reste zen sur la date d'utilisation de ma station 
multimedia maison.  Il y a des chances que tout fonctionne normalement 
une fois que tout ce matériel sera périmé, on en trouvera peut-être de 
toutes montées pour 100 € dans les grandes surfaces d'ici là.



--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et

Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: pas de son, pas de /dev/dsp

2006-08-29 Thread Naios Kae The Korrigan
Pour le problème de son, je n'ai pas de solution, un module  
particulier peut etre. pour le /dev/dsp, si tu as désactiver oss dans  
ton noyau, ou bien que tu n'as pas mis le module (certe déclaré  
obsolète) tu n'auras pas de son.


j'ai récemment eu un problème de son avec mon asus A8N, il était lié à  
la libasound2, un apt-src du paquet de sid à résolu le pbm (j'utilise  
une soundblaster live 128 sur mon asus A8n-trucmuche-deluxe;, j'ai  
désactivé le contrôleur intégré)


Quoting Vincent Lefevre [EMAIL PROTECTED]:


On 2006-08-28 17:26:54 +0200, herve thibaud wrote:

*problème de son,

carte son  nVidia Corporation CK804 AC'97 Audio Controller (rev a2)
(sur carte mère Asus A8N-E)

noyau linux 2.6.16 pour x86-64

configuration alsaconf :


Lors d'une discussion suite à un rapport de bug (381658), Elimar
Riesebieter m'a dit de ne pas utiliser alsaconf avec un noyau 2.6.

--
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]







--
   Erwann PENCREACH  
  [EMAIL PROTECTED]   
 Association AT2L pour le logiciel libre 
  http://www.at2l.net
[EMAIL PROTECTED] 



This message was sent using IMP, the Internet Messaging Program.



[erratum]Re: pas de son, pas de /dev/dsp

2006-08-29 Thread Naios Kae The Korrigan

Quoting Naios Kae The Korrigan [EMAIL PROTECTED]:

Pour le problème de son, je n'ai pas de solution, un module   
particulier peut etre. pour le /dev/dsp, si tu as désactiver oss  
dans  ton noyau, ou bien que tu n'as pas mis le module (certe  
déclaré  obsolète) tu n'auras pas de son.


en fait il peut y avoir du son mais pas via le /dev/dsp puiusqu'il ne  
sera pas créé.


j'ai récemment eu un problème de son avec mon asus A8N, il était lié  
à  la libasound2, un apt-src du paquet de sid à résolu le pbm  
(j'utilise  une soundblaster live 128 sur mon asus  
A8n-trucmuche-deluxe;, j'ai  désactivé le contrôleur intégré)




--
   Erwann PENCREACH  
  [EMAIL PROTECTED]   
 Association AT2L pour le logiciel libre 
  http://www.at2l.net
[EMAIL PROTECTED] 



This message was sent using IMP, the Internet Messaging Program.



pas de son, pas de /dev/dsp

2006-08-28 Thread herve thibaud

*problème de son,

carte son  nVidia Corporation CK804 AC'97 Audio Controller (rev a2)
(sur carte mère Asus A8N-E)

noyau linux 2.6.16 pour x86-64

configuration alsaconf :

Running update-modules...
Architecture-specific modutils configuration for x86_64 not found, using 
defaults

Loading driver...
Setting default volumes...


===

Now ALSA is ready to use.
For adjustment of volumes, use your favorite mixer.

Have a lot of fun!
*

le seul problème est que le son ne s'initialise pas, il n'y a pas de 
/dev/dsp entre autre. Si je le crée manuellement alsaconf le vire



--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et

Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: pas de son, pas de /dev/dsp

2006-08-28 Thread herve thibaud

herve thibaud wrote:

*problème de son,

carte son  nVidia Corporation CK804 AC'97 Audio Controller (rev a2)
(sur carte mère Asus A8N-E)

noyau linux 2.6.16 pour x86-64

configuration alsaconf :

Running update-modules...
Architecture-specific modutils configuration for x86_64 not found, 
using defaults

Loading driver...
Setting default volumes...


=== 



Now ALSA is ready to use.
For adjustment of volumes, use your favorite mixer.

Have a lot of fun!
*

le seul problème est que le son ne s'initialise pas, il n'y a pas de 
/dev/dsp entre autre. Si je le crée manuellement alsaconf le vire




Autre précision, je me met dans dev avec MAKEDEV j'obtiens :
#MAKEDEV audio
udev active, devices will be created in /dev/.static/dev/


--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et

Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: pas de son, pas de /dev/dsp

2006-08-28 Thread Vincent Lefevre
On 2006-08-28 17:26:54 +0200, herve thibaud wrote:
 *problème de son,
 
 carte son  nVidia Corporation CK804 AC'97 Audio Controller (rev a2)
 (sur carte mère Asus A8N-E)
 
 noyau linux 2.6.16 pour x86-64
 
 configuration alsaconf :

Lors d'une discussion suite à un rapport de bug (381658), Elimar
Riesebieter m'a dit de ne pas utiliser alsaconf avec un noyau 2.6.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Perte de /dev/dsp

2006-08-06 Thread Yann Cohen
Bonjour,

Suite à une mise à jour, j'ai constaté que j'ai perdu le device oss
dsp.

La machine fonctionne sous alsa, mais des jeux comme bzflag n'ont plus
de son.

Mes recherches m'ont porté sur le packet alsa-oss et l'utilisation de
aoss mais sans grand effet sur le fonctionnement de bzflag qui plante
lamentablement sur un Pb de SND...

Donc je me dis que j'ai viré oss sans le vouloir... Oui mais où ?

Suis preneur d'infos...

Merci.



Re: Perte de /dev/dsp

2006-08-06 Thread Vincent Lefevre
On 2006-08-06 10:59:33 +0200, Yann Cohen wrote:
 Suite à une mise à jour, j'ai constaté que j'ai perdu le device oss
 dsp.

Moi, c'est suite à l'installation de alsa-utils. Et le retirer ne
change rien. J'ai rapporté le bug suivant:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=381658

 La machine fonctionne sous alsa, mais des jeux comme bzflag n'ont plus
 de son.

Je n'ai jamais réussi à faire fonctionner la mienne sous ALSA
(l'utilisation de alsa-utils était une tentative...). Du coup,
je n'ai plus de son! Enfin, l'utilisation d'un noyau plus ancien
que j'avais compilé moi-même (2.6.12) au lieu du 2.6.17 officiel
résout le problème (en espérant qu'il ne reste pas trop de trous
de sécurité dans le 2.6.12 en question).

Tout ça, c'est sur un des premiers PowerBook G4.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Perte de /dev/dsp

2006-08-06 Thread Xavier Oswald
On 12:42 Sun 06 Aug , Vincent Lefevre wrote:
 On 2006-08-06 10:59:33 +0200, Yann Cohen wrote:
  Suite à une mise à jour, j'ai constaté que j'ai perdu le device oss
  dsp.
 
 Moi, c'est suite à l'installation de alsa-utils. Et le retirer ne
 change rien. J'ai rapporté le bug suivant:
 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=381658
 
  La machine fonctionne sous alsa, mais des jeux comme bzflag n'ont plus
  de son.
 
 Je n'ai jamais réussi à faire fonctionner la mienne sous ALSA
 (l'utilisation de alsa-utils était une tentative...). Du coup,
 je n'ai plus de son! Enfin, l'utilisation d'un noyau plus ancien
 que j'avais compilé moi-même (2.6.12) au lieu du 2.6.17 officiel
 résout le problème (en espérant qu'il ne reste pas trop de trous
 de sécurité dans le 2.6.12 en question).
 
 Tout ça, c'est sur un des premiers PowerBook G4.

Ouais, j'avais aussi perdu mon /dev/dsp, mais c'etait de ma faute,
j'avais oublié de rajouter l'emulation OSS avec Alsa. 

Peut-etre avez vous fait la meme erreur..

Amicalement,
-- 
===
  ,''`.  Xavier Oswald [EMAIL PROTECTED]
 : :' :  GNU/LINUX Debian  Debian-Edu 
 `. `'   GnuPG Key ID 0x88BBB51E 
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E
===


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Perte de /dev/dsp

2006-08-06 Thread Yann Cohen
Le dimanche 06 août 2006 à 13:34 +0200, Xavier Oswald a écrit :
[...]
  Tout ça, c'est sur un des premiers PowerBook G4.
 
 Ouais, j'avais aussi perdu mon /dev/dsp, mais c'etait de ma faute,
 j'avais oublié de rajouter l'emulation OSS avec Alsa. 
 
 Peut-etre avez vous fait la meme erreur..

Certes, je le pense...
Et comment l'as corrigée cette erreur ?
Moi y en a pas réussi !

Merci.
Yann.




Re: Perte de /dev/dsp

2006-08-06 Thread Vincent Lefevre
On 2006-08-06 13:34:58 +0200, Xavier Oswald wrote:
 Ouais, j'avais aussi perdu mon /dev/dsp, mais c'etait de ma faute,
 j'avais oublié de rajouter l'emulation OSS avec Alsa. 

Que faut-il faire?

Mais de toute façon, ALSA ne semble pas du tout fonctionner, i.e.
quand j'utilise le device ALSA (pas du tout de OSS), j'obtiens:

ALSA lib confmisc.c:670:(snd_func_card_driver) cannot find card '0' 0.0% 
ALSA lib conf.c:3479:(_snd_config_evaluate) function snd_func_card_driver 
returned error: No such device
ALSA lib confmisc.c:391:(snd_func_concat) error evaluating strings
ALSA lib conf.c:3479:(_snd_config_evaluate) function snd_func_concat returned 
error: No such device
ALSA lib confmisc.c:1070:(snd_func_refer) error evaluating name
ALSA lib conf.c:3479:(_snd_config_evaluate) function snd_func_refer returned 
error: No such device
ALSA lib conf.c:3947:(snd_config_expand) Evaluate error: No such device
ALSA lib pcm.c:2146:(snd_pcm_open_noupdate) Unknown PCM default
ALSA snd_pcm_open error: No such device
  
Error: Cannot open device alsa09.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Perte de /dev/dsp

2006-08-06 Thread Xavier Oswald
On 13:52 Sun 06 Aug , Yann Cohen wrote:
 Le dimanche 06 août 2006 à 13:34 +0200, Xavier Oswald a écrit :
 [...]
   Tout ça, c'est sur un des premiers PowerBook G4.
  
  Ouais, j'avais aussi perdu mon /dev/dsp, mais c'etait de ma faute,
  j'avais oublié de rajouter l'emulation OSS avec Alsa. 
  
  Peut-etre avez vous fait la meme erreur..
 
 Certes, je le pense...
 Et comment l'as corrigée cette erreur ?
 Moi y en a pas réussi !

J'avais oublié cette option dans le noyau :
- Device Drivers
   -- Sound
   -- Open Sound System
 -- 'votre driver'

Sinon vous pouvez faire un test, lorque je n'avais pas cette option
je n'avais pas de périphérique /dev/dsp mais par contre amarok utilise
une autre méthode d'accès a la carte son sans passer par /dev/dsp.

De ce fait vous pouvez deja tester si amarok fonctionne.

Amicalement,
-- 
===
  ,''`.  Xavier Oswald [EMAIL PROTECTED]
 : :' :  GNU/LINUX Debian  Debian-Edu 
 `. `'   GnuPG Key ID 0x88BBB51E 
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E
===


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Perte de /dev/dsp

2006-08-06 Thread Vanuxem Grégory
Le dimanche 06 août 2006 à 14:27 +0200, Xavier Oswald a écrit :
 On 13:52 Sun 06 Aug , Yann Cohen wrote:
  Le dimanche 06 août 2006 à 13:34 +0200, Xavier Oswald a écrit :
  [...]
Tout ça, c'est sur un des premiers PowerBook G4.
   
   Ouais, j'avais aussi perdu mon /dev/dsp, mais c'etait de ma faute,
   j'avais oublié de rajouter l'emulation OSS avec Alsa. 
   
   Peut-etre avez vous fait la meme erreur..
  
  Certes, je le pense...
  Et comment l'as corrigée cette erreur ?
  Moi y en a pas réussi !
 
 J'avais oublié cette option dans le noyau :
 - Device Drivers
-- Sound
-- Open Sound System
-- 'votre driver'

Non, ça c'est pour utiliser OSS réellement (et non ALSA) mais c'est
déconseillé. Pour avoir /dev/dsp* avec ALSA il faut cocher l'option : 

OSS PCM (digital audio) API dans la configuration noyau de ALSA,

et/ou charger le module, si il n'est pas chargé, snd-pcm-oss.

Greg


 Sinon vous pouvez faire un test, lorque je n'avais pas cette option
 je n'avais pas de périphérique /dev/dsp mais par contre amarok utilise
 une autre méthode d'accès a la carte son sans passer par /dev/dsp.
 
 De ce fait vous pouvez deja tester si amarok fonctionne.
 
 Amicalement,
 -- 
 ===
   ,''`.  Xavier Oswald [EMAIL PROTECTED]
  : :' :  GNU/LINUX Debian  Debian-Edu 
  `. `'   GnuPG Key ID 0x88BBB51E 
`-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E
 ===
 
 


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Perte de /dev/dsp

2006-08-06 Thread Xavier Oswald
On 15:18 Sun 06 Aug , Vanuxem Grégory wrote:
 Le dimanche 06 août 2006 à 14:27 +0200, Xavier Oswald a écrit :
  On 13:52 Sun 06 Aug , Yann Cohen wrote:
   Le dimanche 06 août 2006 à 13:34 +0200, Xavier Oswald a écrit :
   [...]
 Tout ça, c'est sur un des premiers PowerBook G4.

Ouais, j'avais aussi perdu mon /dev/dsp, mais c'etait de ma faute,
j'avais oublié de rajouter l'emulation OSS avec Alsa. 

Peut-etre avez vous fait la meme erreur..
   
   Certes, je le pense...
   Et comment l'as corrigée cette erreur ?
   Moi y en a pas réussi !
  
  J'avais oublié cette option dans le noyau :
  - Device Drivers
 -- Sound
 -- Open Sound System
   -- 'votre driver'
 
 Non, ça c'est pour utiliser OSS réellement (et non ALSA) mais c'est
 déconseillé. Pour avoir /dev/dsp* avec ALSA il faut cocher l'option : 
 
 OSS PCM (digital audio) API dans la configuration noyau de ALSA,
 
 et/ou charger le module, si il n'est pas chargé, snd-pcm-oss.

Exact, erreur de ma part !
Mais bon juste pour écouter de la musique, ca suffit :)

-- 
===
  ,''`.  Xavier Oswald [EMAIL PROTECTED]
 : :' :  GNU/LINUX Debian  Debian-Edu 
 `. `'   GnuPG Key ID 0x88BBB51E 
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E
===


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench   
Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et
Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



  1   2   3   4   5   6   >