I think that the "chmod 777" solution it is for use OSS system (that's why the audio was not good???)
Now i'm able to use ALSA system and the soud is really good.
Unfortunly i'm able only to setup ALSA system after boot, with a bash script and after the error
- Code: Select all
Sound server informational message:
Error while initializing the sound driver:
device: default can't be opened for playback (No such device)
The sound server will continue, using the null output device.
This is what i do:
1 - check that ALSA system is selected in kcontrol -> sound and multimedia -> sound system
2 - look for my audio card (ALC861). if i don't know i can look here
- Code: Select all
cat /proc/asound/card0/codec#0
3 - Look for the module options in the kernel doc
- Code: Select all
less /usr/src/linux/Documentation/sound/alsa/ALSA-Configuration.txt
That's my module: Module snd-hda-intel
It can have these options:
- Code: Select all
[..]
ALC861/660
3stack 3-jack
3stack-dig 3-jack with SPDIF I/O
6stack-dig 6-jack with SPDIF I/O
3stack-660 3-jack (for ALC660)
uniwill-m31 Uniwill M31 laptop
toshiba Toshiba laptop support
asus Asus laptop support
asus-laptop ASUS F2/F3 laptops
auto auto-config reading BIOS (default)
[...]
4 - stop the sound system
- Code: Select all
/etc/init.d/alsasound stop
i's remove the module too.
5 - check the module is removed with an lsmod
6 - start the module with the right option.(try every options; my laptop is a toshiba, but the toshiba option doesn't work)
- Code: Select all
modprobe snd-hda-intel model=3stack
7 - start the sound system
- Code: Select all
/etc/init.d/alsasound start
this process works good for me.
i hope it should help
bye bye,
ff