Difference between revisions of "Mumo"

From Mumble Wiki
Jump to: navigation, search
(Docker: Drop migrated docs)
(Ubuntu 12.04: Drop migrated docs)
Line 4: Line 4:
 
The newest version of mumo is always available from our mumo repository at https://github.com/mumble-voip/mumo .
 
The newest version of mumo is always available from our mumo repository at https://github.com/mumble-voip/mumo .
  
==Ubuntu 12.04==
 
''Note:'' This guide only shows the basic steps for trying out mumo. For a more permanent setup you'll want to run mumo with its own user and a startup script.
 
 
* Make sure you are running a recent Murmur release (1.2.4 or later). Ice should be enabled and a writesecret must be set (see configuration file).
 
* Install dependencies
 
sudo apt-get install python-zeroc-ice python-daemon git
 
* Clone repository
 
cd ~/
 
git clone https://github.com/mumble-voip/mumo.git
 
* Adjust configuration
 
cd mumo
 
nano mumo.ini
 
In the editor set your server's Ice writesecret as the secret variable so mumo can control your server.
 
secret = mysecretwritesecret
 
Close and save by pressing Ctrl + X followed by Y and Enter.
 
* Configure the modules you want to use by editing their ini file in the modules-available folder
 
* Enable modules by linking their config file into the modules-enabled folder
 
cd modules-enabled
 
ln -s ../modules-available/moduleyouwanttouse.ini
 
* Run mumo
 
./mumo.py
 
 
Mumo should now be working with your mumble server. If it doesn't work check the ''mumo.log'' file for more information.
 
  
 
[[Category:3rd Party]]
 
[[Category:3rd Party]]

Revision as of 11:12, 12 March 2024

Please refer to our repository README file for documentation.

Installing mumo

The newest version of mumo is always available from our mumo repository at https://github.com/mumble-voip/mumo .