diff options
author | Dugan Chen <max@mr.gy> | 2014-03-12 07:16:23 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-12 12:42:51 -0500 |
commit | 564e1f2a5bd9245600ccf321960bc85607c88555 (patch) | |
tree | 6ce761e2e48734dacb0e1820cd47d961fcafa8d0 /audio/oss/README.SLACKWARE | |
parent | a8945a06d5f8e91d7abbbe1a71154bf727e986b2 (diff) | |
download | slackbuilds-564e1f2a5bd9245600ccf321960bc85607c88555.tar.gz |
audio/oss: Moved from System category.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/oss/README.SLACKWARE')
-rw-r--r-- | audio/oss/README.SLACKWARE | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/audio/oss/README.SLACKWARE b/audio/oss/README.SLACKWARE new file mode 100644 index 0000000000..25c8e37d49 --- /dev/null +++ b/audio/oss/README.SLACKWARE @@ -0,0 +1,24 @@ +README.SLACKWARE for oss + +After installing the package, do the following: + +1. Blacklist the alsa modules for your sound card. + The output of "lsmod | grep snd" should give you a list of which modules + will need to be blacklisted. + +2. Make /etc/rc.d/rc.alsa non-executable: chmod 0644 /etc/rc.d/rc.alsa + +3. Make /etc/rc.d/rc.oss executable: chmod 0755 /etc/rc.d/rc.oss + +4. Add this snippet to /etc/rc.d/rc.local: + + if [ -x /etc/rc.d/rc.oss ]; then + /etc/rc.d/rc.oss start + fi + +5. Reboot. + +6. Test sound to ensure that it works - use "osstest" for this. + +7. Configure applications to use OSS instead of ALSA; typically, this will + involve setting the "Sound Command" or some such to use "ossplay" |