DLNAサーバーとなるLIVAへのファイルぶっこみはWindowsからネットワーク経由でやることになるので、Sambaを導入した。その手順のメモ。
$ sudo apt-get install samba
Sambaで共有するフォルダのパーミッションを変更
$ sudo chmod 777 /xxx/xxx (/xxx/xxxは共有するフォルダ)
Samba設定ファイル(/etc/samba/smb.conf)の変更をする。[global]セクションに下の4行を追加する。
#======================= Global Settings =======================
[global]
## Browsing/Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of
; workgroup = MSHOME
workgroup = WORKGROUP
dos charset = CP932
unix charset = UTF-8
display charset = UTF-8
map to guest = Bad User
ファイルの最後に共有の定義を下記のように追加する。これは誰でも書き込みとかできるパターン。
[xxxxx] 共有するフォルダ名
path = /xxx/xxx 共有フォルダのパス
writeable = yes
force create mode = 0666
force directory mode = 0777
guest ok = yes
guest only = yes
Sambaを再起動する。
$ sudo /etc/init.d/samba restart