Firefly Freelink
From NAS-Central Buffalo - The Linkstation Wiki
(Difference between revisions)
| Line 1: | Line 1: | ||
[[Image:Ff_logo_sm.gif]] | [[Image:Ff_logo_sm.gif]] | ||
| - | == | + | == Requirements == |
| + | |||
| + | # Lots of good music | ||
| + | # Something to play lots of your good music on - Like a Roku Soundbridge | ||
| + | |||
| + | |||
| + | == Installation == | ||
apt-get install libid3tag0 libid3tag0-dev | apt-get install libid3tag0 libid3tag0-dev | ||
| Line 11: | Line 17: | ||
cd /tmp | cd /tmp | ||
| + | Download Firefly mediaserver | ||
| + | You will need to check out [[http://nightlies.mt-daapd.org/ the nightlies]] and change the address below to the latest version | ||
wget http://nightlies.mt-daapd.org/dl.php?FILE=mt-daapd-svn-1463.tar.gz | wget http://nightlies.mt-daapd.org/dl.php?FILE=mt-daapd-svn-1463.tar.gz | ||
| - | tar -zxvf mt-daapd-svn-1463.tar.gz | + | Untar and enter folder (replace with whatever latest version is) |
| + | tar -zxvf mt-daapd-svn-1463.tar.gz && cd mt-daapd-svn-1463 | ||
| - | |||
| + | |||
./configure --prefix=/usr/local --enable-browse --enable-query --enable-mdns --with-id3tag=/usr/local --enable-sqlite | ./configure --prefix=/usr/local --enable-browse --enable-query --enable-mdns --with-id3tag=/usr/local --enable-sqlite | ||
--sysconfdir=/etc | --sysconfdir=/etc | ||
| Line 28: | Line 37: | ||
Should only need to change where to look for your music files | Should only need to change where to look for your music files | ||
| - | + | == Run it == | |
| + | |||
| + | Should be able to start it up now | ||
| + | |||
| + | /usr/local/sbin/mt-daapd | ||
| + | |||
| + | This errors because it looks for mt-daapd.conf in /usr/local/etc/mt-daapd.conf ?? | ||
I've just linked to it | I've just linked to it | ||
| Line 34: | Line 49: | ||
mkdir /usr/local/etc | mkdir /usr/local/etc | ||
ln -s /etc/mt-daapd/mt-daapd.conf /usr/local/etc/mt-daapd.conf | ln -s /etc/mt-daapd/mt-daapd.conf /usr/local/etc/mt-daapd.conf | ||
| + | |||
| + | [[User:Bauldrick|Bauldrick]] 09:13, 21 December 2006 (EST) | ||
Revision as of 14:13, 21 December 2006
Requirements
- Lots of good music
- Something to play lots of your good music on - Like a Roku Soundbridge
Installation
apt-get install libid3tag0 libid3tag0-dev
apt-get install sqlite libsqlite0-dev
apt-get install g++
cd /tmp
Download Firefly mediaserver You will need to check out [the nightlies] and change the address below to the latest version
wget http://nightlies.mt-daapd.org/dl.php?FILE=mt-daapd-svn-1463.tar.gz
Untar and enter folder (replace with whatever latest version is)
tar -zxvf mt-daapd-svn-1463.tar.gz && cd mt-daapd-svn-1463
./configure --prefix=/usr/local --enable-browse --enable-query --enable-mdns --with-id3tag=/usr/local --enable-sqlite --sysconfdir=/etc
make install mkdir /etc/mt-daapd cp contrib/mt-daapd.* /etc/mt-daapd/ cd /etc/mt-daapd
pico mt-daapd.conf
Should only need to change where to look for your music files
Run it
Should be able to start it up now
/usr/local/sbin/mt-daapd
This errors because it looks for mt-daapd.conf in /usr/local/etc/mt-daapd.conf ??
I've just linked to it
mkdir /usr/local/etc ln -s /etc/mt-daapd/mt-daapd.conf /usr/local/etc/mt-daapd.conf
Bauldrick 09:13, 21 December 2006 (EST)

