Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.30 KB | None | 0 0
  1. cat /etc/modprobe.d/alsa.conf
  2. options snd_aloop index=8,9 id=loop0,loop1 enable=1,1 pcm_substreams=8,1
  3.  
  4. cat /etc/asound.conf
  5. #
  6. # Place your global alsa-lib configuration here...
  7. #
  8.  
  9. #### Linrad ####
  10.  
  11. pcm.loop0_0_0 {
  12. type plug
  13. slave {
  14. pcm "hw:loop0,0,0"
  15. format FLOAT_LE
  16. rate 96000
  17. }
  18. }
  19.  
  20. pcm.linrad_alsa {
  21. type asym
  22. playback.pcm "loop0_0_0"
  23. capture.pcm "loop0_0_0"
  24. hint {
  25. show on
  26. description "Linrad: ALSA"
  27. }
  28. }
  29.  
  30. pcm.loop0_1_0 {
  31. type plug
  32. slave {
  33. pcm "hw:loop0,1,0"
  34. format FLOAT_LE
  35. rate 96000
  36. }
  37. }
  38.  
  39. pcm.linrad_jack {
  40. type asym
  41. playback.pcm "loop0_1_0"
  42. capture.pcm "loop0_1_0"
  43. hint {
  44. show on
  45. description "Linrad: JACK"
  46. }
  47. }
  48.  
  49. #### WSJTX ####
  50.  
  51. pcm.loop0_0_1 {
  52. type plug
  53. slave {
  54. pcm "hw:loop0,0,1"
  55. format FLOAT_LE
  56. rate 96000
  57. }
  58. }
  59.  
  60. pcm.wsjtx_alsa {
  61. type asym
  62. playback.pcm "loop0_0_1"
  63. capture.pcm "loop0_0_1"
  64. hint {
  65. show on
  66. description "WSJTX: ALSA"
  67. }
  68. }
  69.  
  70. pcm.loop0_1_1 {
  71. type plug
  72. slave {
  73. pcm "hw:loop0,1,1"
  74. format FLOAT_LE
  75. rate 96000
  76. }
  77. }
  78.  
  79. pcm.wsjtx_jack {
  80. type asym
  81. playback.pcm "loop0_1_1"
  82. capture.pcm "loop0_1_1"
  83. hint {
  84. show on
  85. description "WSJTX: JACK"
  86. }
  87. }
  88.  
  89. #### FLDIGI ####
  90.  
  91. pcm.loop0_0_2 {
  92. type plug
  93. slave {
  94. pcm "hw:loop0,0,2"
  95. format FLOAT_LE
  96. rate 96000
  97. }
  98. }
  99.  
  100. pcm.fldigi_alsa {
  101. type asym
  102. playback.pcm "loop0_0_2"
  103. capture.pcm "loop0_0_2"
  104. hint {
  105. show on
  106. description "FLDIGI: ALSA"
  107. }
  108. }
  109.  
  110. pcm.loop0_1_2 {
  111. type plug
  112. slave {
  113. pcm "hw:loop0,1,2"
  114. format FLOAT_LE
  115. rate 96000
  116. }
  117. }
  118.  
  119. pcm.fldigi_jack {
  120. type asym
  121. playback.pcm "loop0_1_2"
  122. capture.pcm "loop0_1_2"
  123. hint {
  124. show on
  125. description "FLDIGI: JACK"
  126. }
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement