Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Note theres probably some overlap with these two install commands....still developing/figuring out what i need. will refactor later
- apt-get install pulseaudio pulseaudio-dbg libpulse-dev libpulse-mainloop-glib0 libpulse0 libpulse0-dbg pulseaudio-esound-compat pulseaudio-esound-compat-dbg libpulse-dev pulseaudio-module-zeroconf -y
- apt-get install pulseaudio libao4 paprefs libpulse-mainloop-glib0 pulseaudio-module-jack pavucontrol pulseaudio-module-x11 gstreamer0.10-pulseaudio pulseaudio-utils libasound2-plugins paman pulseaudio-module-gconf libgconfmm-2.6-1c2 pavumeter libglademm-2.4-1c2a pulseaudio-esound-compat libpulse0 libpulse-dev pulseaudio-module-bluetooth pulseaudio-module-zeroconf libpulse-dev libpulse-mainloop-glib0 libpulse-mainloop-glib0-dbg libpulse0 libpulse0-dbg pulseaudio-module-zeroconf pulseaudio-module-zeroconf-dbg -y
- # per instructions from http://forums.debian.net/viewtopic.php?f=16&t=12497
- # backup existing conf file
- \cp -pf /etc/asound.conf /etc/asound.conf.ORIG
- echo 'pcm.pulse {
- type pulse
- }
- ctl.pulse {
- type pulse
- }
- pcm.!default {
- type pulse
- }
- ctl.!default {
- type pulse
- }' > /etc/asound.conf
- # start the daemon
- pulseaudio -D
- # Note: /usr/install is a directory I made....clearly
- # uninstall sphinxbase to make sure it compiles against pulseaudio
- cd /usr/install/sphinxbase-0.8
- make uninstall
- # uninstall pocketsphix to make sure it compiles against pulseaudio
- cd /usr/install/pocketsphinx-0.8
- make uninstall
- # re-install sphinxbase
- cd /usr/install/sphinxbase-0.8
- ./configure
- make
- make install
- # re-install pocketsphinx
- cd /usr/install/pocketsphinx-0.8
- ./configure
- make
- make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement