iTunes Server for Linux
LinuxでiTunes Serverを構築したいと思います。
--使用するパッケージ
・Howl
http://www.porchdogsoft.com/products/howl/
パッケージ : howl-0.9.10.tar.gz
・libid3tag
http://www.underbit.com/products/mad/
パッケージ名 : libid3tag-0.15.1b.tar.gz
・mt-daapd
http://mt-daapd.sourceforge.net/
パッケージ : mt-daapd-0.2.1.1.tar.gz
--インストール
# apt-get install gdbm gdbm-devel
# tar zxvf howl-0.9.10.tar.gz
# cd howl-0.9.10.tar.gz
# ./configure
# make
# make install
# tar zxvf libid3tag-0.15.1b.tar.gz
# cd libid3tag-0.15.1b
# ./configure
# make
# make install
# tar zxvf mt-daapd-0.2.1.1.tar.gz
# cd mt-daapd-0.2.1.1
# ./configure
# make
# make install
--初期設定
# cp contrib/mt-daapd.conf /etc
# vi /etc/mt-daapd.conf
-----
web_root /usr/local/share/mt-daapd/admin-root
admin_pw passwd
mp3_dir /home/My_music/MP3
servername hoge_hoge
# cp contrib/mt-daapd /etc/init.d
# vi /etc/init.d/mt-daapd
-----
[ -e /etc/mt-daapd.conf ]
## start()内のdaemonの部分のパスを/usr/local/sbin/mt-daapdに変更
daemon /usr/local/sbin/mt-daapd
# cp contrib/mt-daapd.playlist /etc
# mkdir -p /var/cache/mt-daapd
# vi /etc/ld.so.conf
-----
## 下記一行を追加
/usr/local/lib
# ldconfig -v
--Serviceの起動
# service mt-daapd start
--参考ページ
http://pcweb.mycom.co.jp/column/osx/100/
http://debikuro.ddo.jp/KuroBox/B015.html
http://warsaw.no-ip.com/blog/
参考にさせていただきました。ありがとうございます。
「Linux」カテゴリの記事
- 外付けHDD データリカバリー(2012.04.13)
- MacOS風インターフェース PearLinux(Comice)(2012.03.20)
- レスキュー用 ブートLinux(2011.10.12)
- USBメモリ起動 BackTrack 5(2011.08.12)
- USBメモリ起動 Vine Linux 6.0(インストールのみ)(2011.08.11)



Comments