Difference between revisions of "Talk:Installing Mumble"

From Mumble Wiki
Jump to: navigation, search
m
(Iphone app outdated: new section)
 
(7 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
Feel free to add it on the page / enhance it...
 
Feel free to add it on the page / enhance it...
  
 +
[http://wobak.fr/mumble.initd Murmur init.d]
  
<nowiki>----
+
: Link is not available anymore. Maybe outdated. - Toby63
#!/bin/bash
 
#
 
# description: Murmur Service
 
# Idologic Jun 27, 2007
 
  
# Get function from functions library
+
== Windows: Remove Windows 2000 note? ==
#.  /lib/lsb/init-functions
 
  
#Variables
+
Windows 2000 is by now veery outdated, and modern mumble versions don't support it anymore.
#Pid File : change to your own if needed
+
Can I remove the note?
PIDFILE=/var/run/murmur.pid
 
  
#Binary file : change to your full path to murmur.x86
+
== MacOS questions ==
BINFILE=/usr/local/bin/murmur
 
  
#ini file : path to your murmur.ini config file
+
Two questions:<br>
INIFILE=/etc/murmur/murmur.ini
+
1. Is there another way to install a server on MacOS, besides the static server on https://www.mumble.info/downloads/ ?<br>
 +
2. Is the Overlay still installed seperately?<br>
 +
- Toby63
  
# Start the service Murmur
+
== Iphone app outdated ==
  
 +
[https://github.com/mumble-voip/mumble-iphoneos Github]  shows 8 Sep 2017 as last date of contribution.
  
readrunning() {
+
We maybe should remove that section or add a notice that it is very outdated.
ISRUNNING=0
+
- Toby63
if [ ! -e $PIDFILE ] ; then
 
pspid=$(pidof murmur)
 
        if [ "$pspid" = "" ] ; then
 
PID=""
 
echo -e "Server not running.\n"
 
ISRUNNING=0
 
else
 
PID=$pspid
 
ISRUNNING=1
 
fi
 
else
 
PID=$(cat /var/run/murmur.pid)
 
pspid=$(pidof murmur)
 
if [ "$pspid" != "$PID" ] ; then
 
PID=""
 
echo -e "Server not running but $PIDFILE exists...\n"
 
echo -e "Please delete it manually before going on."
 
ISRUNNING=0
 
else
 
ISRUNNING=1
 
fi
 
fi
 
if [ $ISRUNNING = 1 ] ; then
 
echo -e "Server running with pid : $PID"
 
fi
 
}
 
 
 
start() {        echo -n $"Starting Murmur server: "     
 
if [ $ISRUNNING = 1 ] ; then
 
echo "Error : Server already running with PID : $PID"
 
else
 
$BINFILE -ini $INIFILE
 
sleep 1
 
pidof murmur > $PIDFILE
 
echo -e "\n"
 
fi
 
}
 
 
 
# Restart the service Murmur
 
stop() {       
 
echo -n $"Stopping Murmur server: "
 
if [ $ISRUNNING = 0 ] ; then
 
echo "Error : Server not running..."
 
else
 
kill -9 $PID
 
rm $PIDFILE
 
echo -e "Server Murmur stopped.\n"
 
fi
 
}
 
 
 
### main logic ###
 
case "$1" in
 
  start)
 
  readrunning
 
  start
 
        ;;
 
  stop)
 
  readrunning
 
        stop        ;;
 
  status)
 
  readrunning
 
;;
 
  restart|reload|condrestart)
 
  readrunning
 
  stop
 
sleep 3
 
start
 
        ;;
 
  *)        echo $"Usage: $0 {start|stop|restart|reload|status}"
 
        exit 1
 
esac
 
 
 
exit 0
 
</nowiki>
 

Latest revision as of 20:41, 19 May 2020

Init.d startup/ stop script

Hi,

I wrote a startup script for Mumble under Linux, which is, I think, quite enough.

Feel free to add it on the page / enhance it...

Murmur init.d

Link is not available anymore. Maybe outdated. - Toby63

Windows: Remove Windows 2000 note?

Windows 2000 is by now veery outdated, and modern mumble versions don't support it anymore. Can I remove the note?

MacOS questions

Two questions:
1. Is there another way to install a server on MacOS, besides the static server on https://www.mumble.info/downloads/ ?
2. Is the Overlay still installed seperately?
- Toby63

Iphone app outdated

Github shows 8 Sep 2017 as last date of contribution.

We maybe should remove that section or add a notice that it is very outdated. - Toby63