This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults.pcm.!rate_converter "samplerate_best" | |
# ****************************************************** | |
# PLAYBACK | |
# hardware 0,0 : ALSA playback | |
pcm.loophw00 { | |
type hw | |
card Loopback | |
device 0 | |
subdevice 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# script loop2jack, located in /usr/local/bin | |
# loop client creation | |
/usr/bin/alsa_out -j ploop -dploop -q 1 2>&1 1> /dev/null & | |
/usr/bin/alsa_in -j cloop -dcloop -q 1 2>&1 1> /dev/null & | |
# give it some time before connecting to system ports | |
sleep 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kernel.printk = 4 4 1 7 | |
kernel.panic = 10 | |
kernel.sysrq = 0 | |
kernel.shmmax = 4294967296 | |
kernel.shmall = 4194304 | |
kernel.core_uses_pid = 1 | |
kernel.msgmnb = 65536 | |
kernel.msgmax = 65536 | |
vm.swappiness = 20 | |
vm.dirty_ratio = 80 |