Advertisement
inukaze

Inukaze - Ubuntu - Sonido 4.1

Aug 14th, 2011
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. # Inukaze - Sonido 4.1 Ubuntu - Solo debes crearte estos
  2. # 2 Archivos con el siguiente contenido
  3. #
  4. # ejecuta : sudo nano /etc/modprobe.d/sound.conf
  5. # y pega el siguiente contenido
  6.  
  7.  
  8. options snd-pcsp index=-2
  9. alias snd-card-0 snd-hda-intel
  10. alias sound-slot-0 snd-hda-intel
  11. options snd-hda-intel model=3stack-6ch
  12. options snd-hda-intel enable_msi=1
  13.  
  14. # Guarda , ahora , ejecuta :
  15. sudo rm -rf /etc/asound.conf $HOME/.asoundrc
  16. # Reinicia
  17.  
  18. # Crea : nano $HOME/.asoundrc
  19. # Pega el siguiente contenido :
  20.  
  21.  
  22. # Usar PulseAudio como Predeterminado
  23. pcm.pulse {
  24. type pulse
  25. }
  26. ctl.pulse {
  27. type pulse
  28. }
  29. pcm.!default {
  30. type pulse
  31. }
  32. ctl.!default {
  33. type pulse
  34. }
  35.  
  36. # Diviendo el sonido hacia las 4 Cornetas :
  37. pcm.dshare {
  38. type dmix
  39. ipc_key 2048
  40. slave {
  41. pcm "hw:0"
  42. rate 44100
  43. period_time 0
  44. period_size 1024
  45. buffer_size 8192
  46. channels 4
  47. }
  48. bindings {
  49. 0 0
  50. 1 1
  51. 2 2
  52. 3 3
  53. }
  54. }
  55. pcm.frontx {
  56. type plug
  57. slave {
  58. pcm "dshare"
  59. channels 4
  60. }
  61. ttable.0.0 1
  62. ttable.1.1 1
  63. }
  64. pcm.rearx {
  65. type plug
  66. slave {
  67. pcm "dshare"
  68. channels 4
  69. }
  70. ttable.0.2 1
  71. ttable.1.3 1
  72. }
  73.  
  74. # Ahora solo te falta ejecutar la siguiente linea de comandos en una terminal :
  75.  
  76. sudo apt-get -y install libglademm-2.4-1c2a padevchooser paman paprefs pavucontrol pavumeter pulseaudio-module-zeroconf
  77.  
  78. # En una terminal , ejecuta
  79.  
  80. alsamixer
  81.  
  82. # Presiona F6 selecciona la segunda opcion
  83. # Ve a donde aparece 2ch y cambialo a 6ch
  84. # Presiona ESC
  85.  
  86. # Listo reinicia y ya deberia funcionar :=)
  87.  
  88. # Al inicia Ubuntu , inicia "Sonido" > "Hardware" y selecciona la parte inferior y te deberia aparecer "Sonido Envolvente 4.1"
  89.  
  90. # Notas :
  91. # El Contenido de /etc/modprobe.d/sound.conf
  92. # Puede ser modificado , segun tu tarjeta de SONIDO
  93. #
  94. # Para saber que cual el ID Codec de tu tarjeta
  95. # Ejecuta :
  96. #
  97. # aplay -l && cat /proc/asound/card0/codec#* | grep Codec
  98. #
  99. # a mi me muestra :
  100. # Codec: Realtek ALC662 rev1
  101. #
  102. # Para mas Informacion visitar los siguientes Sitios :
  103. #
  104. # 1 - http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio-Models.txt
  105. #
  106. # 2 - http://humanstuff.net/computadores/sonido-5-1-en-archlinux-con-realtek-alc888vc-con-alsa/
  107. #
  108. # Bien entren en el 1 sitio y busquen "ALC662" o la que les corresponda
  109. # y veran las opciones , solo cambien 1 linea en /etc/modprobe.d/sound.conf
  110. # por la de su modelo correspondiente y prueba a ver si te funciona.
  111. #
  112. # asegurate de borrar el archivo /etc/asound.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement