|
|
Linux Technical issues under Linux platform |
|
Thread Tools | Display Modes |
02-13-2009, 01:21 AM | #1 |
Guest
Posts: n/a
|
[howto] If the mumble overlay isn't working...
Well, i fixed many people (and mines) mumble overlays on various Linux distros, and most of the time it's because your system don't have shared memory support active. Don't worry it's not difficult ^^
Check the basics before At first, the overlay isn't "automatic". Launch Mumble first and don't forget to use the command Code:
mumble-overlay ./rolauncher Finally if you're alone in channel, you should check the "show yourself" box in overlay options, and define a mute shortcut. Then when your char enter in game press the mute button to see your own name, so it's sure it works (or not). Check if the overlay and Mumble can communicate together If it's still not working :
Look at the logs in the console, if you see : Code:
shm.c: shm_open() failed: Permission denied Fix it Open the file /etc/fstab as root and add this line (the white spaces are actually tabs) : Code:
shm /dev/shm tmpfs defaults 0 0
Now this file is opened, add this on the first line : Code:
mount shm Code:
mount | grep shm Code:
shm on /dev/shm type tmpfs (rw) |
|
|