User Tools

Site Tools


howto:linux:install:ubuntu

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
howto:linux:install:ubuntu [2015/12/04 12:03]
ricardobalk Multicast fix for Linux hosts
howto:linux:install:ubuntu [2016/07/28 21:51]
zip [2.Extract Serviio]
Line 19: Line 19:
 <code>sudo apt-get install dcraw</code> <code>sudo apt-get install dcraw</code>
 ==== 1.Download Serviio ==== ==== 1.Download Serviio ====
-Always check what the latest version is on the website, it is currently 1.2.1 and update accordingly+Always check what the latest version is on the website, it is currently 1.6.1 and update accordingly
 Here is link to serviio.org download page. Here is link to serviio.org download page.
 http://www.serviio.org/download http://www.serviio.org/download
-<code>wget http://download.serviio.org/releases/serviio-1.2.1-linux.tar.gz</code>+<code>wget http://download.serviio.org/releases/serviio-1.6.1-linux.tar.gz</code>
 ==== 2.Extract Serviio ==== ==== 2.Extract Serviio ====
-<code>tar xvf serviio-1.2.1-linux.tar.gz+<code>tar xvf serviio-1.6.1-linux.tar.gz
 </code> </code>
 ==== 3.Ubuntu Server Startup Script (credit to forum member jonolafur) ==== ==== 3.Ubuntu Server Startup Script (credit to forum member jonolafur) ====
Line 101: Line 101:
 <code>up route add -net 239.0.0.0 netmask 255.0.0.0 dev eth0</code> <code>up route add -net 239.0.0.0 netmask 255.0.0.0 dev eth0</code>
 <note important>Replace eth0 with the [[http://www.cyberciti.biz/faq/linux-list-network-interfaces-names-command/|name of the network interface]]</note> <note important>Replace eth0 with the [[http://www.cyberciti.biz/faq/linux-list-network-interfaces-names-command/|name of the network interface]]</note>
 +
 +
 +==== Making Serviio's MediaBrowser accessible via the web ====
 +<note>You need Apache in order to do this</note>
 +Usually you go to http://localhost:23424/mediabrowser to access the MediaBrowser. It is possible to make something like http://www.your-example-domain.com/media. This is done with Apache's ProxyPass.
 +
 +Enable proxy module
 +<code>a2enmod proxy</code>
 +
 +Change the Apache configuration file
 +<code>nano /etc/apache2/sites-enables/000-default.conf</code>
 +
 +Put this inside
 +<code><Location /media>
 +order deny,allow
 +deny from all
 +allow from all
 +ProxyPass http://localhost:23424/mediabrowser
 +ProxyPassReverse http://localhost:23424/mediabrowser
 +</Location>
 +
 +<Location /cds>
 +order deny,allow
 +deny from all
 +allow from all
 +ProxyPass http://localhost:23424/cds
 +ProxyPassReverse http://localhost:23424/cds
 +</Location></code>
 +
 ~~NOTOC~~ ~~NOTOC~~
howto/linux/install/ubuntu.txt ยท Last modified: 2016/11/10 15:37 by 7upman