Ubuntu 8.10 no sound after resume suspend/hibernate problem

This problem made me afraid to click-on suspend button for along time, and I tried my best to keep the mouse arrow away from that button, but finally I had a free time to do some troubleshooting,
Now to get rid from this problem you can execute the next lines in your terminal

1
2
3
4
5
6
7
pkill -9 pulseaudio
/usr/bin/pulseaudio -D --log-target=syslog
sudo su
echo "pkill -9 pulseaudio" > /etc/acpi/resume.d/99-restart-pulseaudio.sh
echo "/usr/bin/pulseaudio -D --log-target=syslog" >> /etc/acpi/resume.d/99-restart-pulseaudio.sh
chmod 755 /etc/acpi/resume.d/99-restart-pulseaudio.sh
chown root /etc/acpi/resume.d/99-restart-pulseaudio.sh

Enjoy.


Leave a Reply