This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
howto:linux:install:gentoo [2012/08/11 23:59] danomac |
howto:linux:install:gentoo [2015/01/19 14:51] (current) zip [Java Runtime Environment (JRE)] |
||
|---|---|---|---|
| Line 24: | Line 24: | ||
| There are two different versions of JREs to choose from. **You only need to choose one of the two choices presented below!** The easiest is to use icedtea, but Sun's Java version is also available but it requires more effort to install. Once a JRE is installed, you need to make sure it is selected as the current JRE. | There are two different versions of JREs to choose from. **You only need to choose one of the two choices presented below!** The easiest is to use icedtea, but Sun's Java version is also available but it requires more effort to install. Once a JRE is installed, you need to make sure it is selected as the current JRE. | ||
| + | |||
| + | FIXME java 8 required now | ||
| === Icedtea === | === Icedtea === | ||
| Line 55: | Line 57: | ||
| </ | </ | ||
| - | Now you can proceed to the [[syntax:Download Serviio|Download Serviio]] section. | + | Now you can proceed to the [[howto:linux: |
| === Sun JRE === | === Sun JRE === | ||
| Line 118: | Line 120: | ||
| </ | </ | ||
| - | Now you can proceed to the [[syntax:Download Serviio|Download Serviio]] section. | + | Now you can proceed to the [[howto:linux: |
| ===== Download Serviio ===== | ===== Download Serviio ===== | ||
| Line 129: | Line 131: | ||
| < | < | ||
| - | # tar zxf serviio-1.0.1-linux.tar.gz -C /opt | + | # tar zxf serviio-1.1-linux.tar.gz -C /opt |
| - | # mv / | + | # mv / |
| </ | </ | ||
| Line 184: | Line 186: | ||
| start() { | start() { | ||
| - | ebegin " | + | |
| - | start-stop-daemon --start --exec $SERVIIO_CMD --make-pidfile \ | + | start-stop-daemon --start --exec ${SERVIIO_CMD} --make-pidfile \ |
| - | --user $SERVIIO_USER --background \ | + | --user ${SERVIIO_USER} --background \ |
| - | --pidfile / | + | --pidfile / |
| - | eend $? | + | eend $? |
| } | } | ||
| stop() { | stop() { | ||
| - | | + | |
| - | start-stop-daemon --stop | + | |
| - | --user $SERVIIO_USER --pidfile / | + | |
| - | eend $? | + | --user ${SERVIIO_USER} --pidfile / |
| + | eend $? | ||
| } | } | ||
| </ | </ | ||
| Line 203: | Line 206: | ||
| < | < | ||
| # mv serviio_conf / | # mv serviio_conf / | ||
| - | # mv serviio_init /etc/conf.d/ | + | # mv serviio_init /etc/init.d/ |
| - | # chmod +x /etc/conf.d/serviio | + | # chmod +x /etc/init.d/serviio |
| </ | </ | ||
| + | You can then start and stop Serviio with: | ||
| + | < | ||
| + | # / | ||
| + | * Starting Serviio Media Server ... [ ok ] | ||
| + | # / | ||
| + | * Stopping Serviio Media Server ... [ ok ] | ||
| + | </ | ||
| + | |||
| + | To get Serviio to start automatically on startup: | ||
| + | |||
| + | < | ||
| + | # rc-update add serviio default | ||
| + | </ | ||
| ~~NOTOC~~ | ~~NOTOC~~ | ||