Changes between Version 8 and Version 9 of WebKitGTK/Chroot
- Timestamp:
- Feb 20, 2014, 3:15:24 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitGTK/Chroot
v8 v9 93 93 There are different ways of overcoming this limitation. 94 94 95 ==== Fix through tcp connection ==== 96 95 97 One of the simplest ones would be to set the local server to listen for TCP connections in the loopback interface, allowing any connection, and the Pulse client processes running in the chroot to connect to the server listening in the loopback interface. This can be sent system-wide, to all the users in the local host and the chroot or just per user. 96 98 … … 119 121 }}} 120 122 121 === Pulse running system-wide===123 ==== Fix through unix connection ==== 122 124 123 Th e complete information about this can be found at http://www.freedesktop.org/wiki/Software/PulseAudio/FAQ/#index36h3125 This was a way of making a working connection to the pulse audio server running in the host while a soft link to the /tmp/pulse-XXXX working directory was stored at $HOME/.pulse/ . 124 126 125 As this is not the default running mode for pulse, you will have to set the proper setting: 126 {{{ 127 #!sh 128 $ cat /etc/pulse/daemon.conf 129 ... 130 system-instance = yes 131 ... 132 }}} 127 This is not like this any more so '''this method is not working any more'''. You are free to correct this method for a way that would actually work. 133 128 134 ==== Pulse Ubuntu ==== 129 This were the steps to follow, though ... 135 130 136 131 First, we have to make work `/dev/shm` (in some distributions, this is actually a soft link to `/run/shm`) following the instructions [wiki:WebKitGTK/Chroot#SHM_Ubuntu above]. … … 161 156 /home/user/.pulse /home/user/.pulse none rw,bind 0 0 162 157 }}} 158 159 === Pulse running system-wide === 160 161 In system-wide mode any client process can connect to the running pulse audio instance. 162 163 The complete information about this can be found at http://www.freedesktop.org/wiki/Software/PulseAudio/FAQ/#index36h3 164 165 As this is not the default running mode for pulse, you will have to set the proper setting: 166 {{{ 167 #!sh 168 $ cat /etc/pulse/daemon.conf 169 ... 170 system-instance = yes 171 ... 172 }}}