Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:mac:builds:mediatomb [2008/08/03 01:15] – created billh | docs:mac:builds:mediatomb [2008/09/07 00:27] (current) – billh | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== mediatomb ====== | ====== mediatomb ====== | ||
* download source from http:// | * download source from http:// | ||
- | * first install [[mysql]], and make sure to build with **%%--enable-thread-safe-client%%** | + | * install [[mysql]], and make sure to build with **%%--enable-thread-safe-client%%** |
+ | * install [[spidermonkey]], | ||
* build mediatomb< | * build mediatomb< | ||
./configure \ | ./configure \ | ||
Line 8: | Line 9: | ||
--infodir=/ | --infodir=/ | ||
--enable-mysql \ | --enable-mysql \ | ||
- | --with-mysql=/ | + | --with-mysql=/ |
+ | --enable-libjs \ | ||
+ | --with-js-h=/ | ||
make | make | ||
Line 24: | Line 27: | ||
... | ... | ||
< | < | ||
- | <!-- | + | |
- | | + | |
< | < | ||
- | </ | + | </ |
- | | + | |
<mysql enabled=" | <mysql enabled=" | ||
< | < | ||
Line 71: | Line 74: | ||
</ | </ | ||
* start mediatomb again - db tables will be created in mysql | * start mediatomb again - db tables will be created in mysql | ||
- | * add any files you want to share in the UI (%%http://< | + | * add any files you want to share in the web based UI at %%http://< |
- | * shut down mediatomb | + | |
+ | ===== Permanent Configuration ===== | ||
+ | After completing the above steps, do the following to have mediatomb run securely on startup: | ||
+ | * shut down mediatomb | ||
+ | * edit config.xml | ||
+ | * disable the UI so everyone won't have access to see every file on your host< | ||
< | < | ||
<ui enabled=" | <ui enabled=" | ||
</ | </ | ||
- | | + | * remove the < |
+ | <!-- delete or comment out this line entirely --> | ||
+ | < | ||
+ | </ | ||
+ | * move the .mediatomb directory out of your home folder to / | ||
+ | * change the permissions to nobody< | ||
+ | sudo chown -R nobody: | ||
+ | </ | ||
+ | * create a Mac StartupItem, | ||
+ | #!/bin/sh | ||
+ | |||
+ | ## | ||
+ | # Configure MediaTomb Server | ||
+ | ## | ||
+ | |||
+ | . / | ||
+ | |||
+ | StartService () | ||
+ | { | ||
+ | if [ " | ||
+ | ConsoleMessage " | ||
+ | now=`date +%s` | ||
+ | let "limit = $now + 60" | ||
+ | |||
+ | / | ||
+ | while [ $? -ne 0 ] && [ $now -lt $limit ] | ||
+ | do | ||
+ | let "now = `date +%s`" | ||
+ | if [ $now -ge $limit ]; then | ||
+ | ConsoleMessage " | ||
+ | exit 1 | ||
+ | fi | ||
+ | |||
+ | / | ||
+ | done | ||
+ | |||
+ | sudo -u nobody / | ||
+ | fi | ||
+ | |||
+ | } | ||
+ | |||
+ | StopService () | ||
+ | { | ||
+ | ConsoleMessage " | ||
+ | sudo killall -15 mediatomb | ||
+ | } | ||
+ | |||
+ | RestartService () | ||
+ | { | ||
+ | if [ " | ||
+ | ConsoleMessage " | ||
+ | sudo killall -1 mediatomb | ||
+ | else | ||
+ | StopService | ||
+ | fi | ||
+ | |||
+ | } | ||
+ | |||
+ | RunService " | ||
+ | </ | ||
+ | |||
+ | ===== Future Development ===== | ||
+ | |