summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar netblue <netblue@debian>2015-10-09 14:51:06 -0400
committerLibravatar netblue <netblue@debian>2015-10-09 14:51:06 -0400
commit5aa3dc66520e73f5fa1a1431c8bb5cb96d5a8d8b (patch)
treed1430dde8285927fcbfddf2f3a0d7e1ed850ba6a /README.md
parentPulseAudio 7.0 fix (diff)
downloadfirejail-5aa3dc66520e73f5fa1a1431c8bb5cb96d5a8d8b.tar.gz
firejail-5aa3dc66520e73f5fa1a1431c8bb5cb96d5a8d8b.tar.zst
firejail-5aa3dc66520e73f5fa1a1431c8bb5cb96d5a8d8b.zip
pulseaudio problem description
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index 62ec486e3..9dd121eb5 100644
--- a/README.md
+++ b/README.md
@@ -38,13 +38,13 @@ FAQ: https://l3net.wordpress.com/projects/firejail/firejail-faq/
38 38
39### PulseAudio 7.0 39### PulseAudio 7.0
40 40
41The srbchannel IPC mechanism introduced in PulseAudio 6.0, was enabled by default in release 7.0. 41The srbchannel IPC mechanism, introduced in PulseAudio 6.0, was enabled by default in release 7.0.
42Arch Linux users are reporting sound problems when running applications in Firejail sandbox. 42Arch Linux users are reporting sound problems when running applications in Firejail sandbox.
43A preliminary fix was introduced on master branch. The fix disables PulseAudio shared memory functionality 43A preliminary fix was introduced on master branch. The fix disables PulseAudio shared memory functionality
44in the sandbox. If you are seeing any problems, 44inside the sandbox. If you are seeing any problems,
45please let us know here: https://github.com/netblue30/firejail/issues/69 45please let us know here: https://github.com/netblue30/firejail/issues/69
46 46
47If you are unable to update your Firejail install to the latest development version, there are two workarounds: 47If you are unable to update Firejail, or if you want to continue using the lates released version, these are some workarounds:
48 48
49* Running ALSA 49* Running ALSA
50 50
@@ -52,13 +52,16 @@ If you are unable to update your Firejail install to the latest development vers
52 Also by default, ALSA comes with the sound volume down. You would need to install *alsamixer* 52 Also by default, ALSA comes with the sound volume down. You would need to install *alsamixer*
53 (*alsa-utils* package) or *gnome-alsamixer*, run it, and crank up the volume (both Master and PCM). 53 (*alsa-utils* package) or *gnome-alsamixer*, run it, and crank up the volume (both Master and PCM).
54 54
55* Disable srbchannel mechanism in PulseAudio 55* Disable shm functionality in PulseAudio
56````` 56`````
57$ mkdir -p ~/.config/pulse 57$ mkdir -p ~/.config/pulse
58$ cd ~/.config/pulse 58$ cd ~/.config/pulse
59$ cp /etc/pulse/client.conf . 59$ cp /etc/pulse/client.conf .
60$ echo "enable-shm = no" >> client.conf 60$ echo "enable-shm = no" >> client.conf
61````` 61`````
62* Disable srbchannel IPC mechanism in version 7.0
62 63
64 Edit /etc/pulse/default.pa – change the line "load-module module-native-protocol-unix"
65 to "load-module module-native-protocol-unix srbchannel=no" and restart PulseAudio daemon.
63 66
64 67