Samba
Aus VDR Wiki
Version vom 15. Oktober 2004, 11:37 Uhr von 213.6.77.68 (Diskussion)
Inhaltsverzeichnis |
Einleitung
Mit Samba kann man Verzeichnisse eines Rechners (z.B. des VDR) als Netzwerkfreigaben zu Verfügung stellen. Wer beispielsweise mit seinem Windows-Rechner an die Daten des VDR kommen möchte, der ist hier richtig.
Probleme
- Wenn beim Zugriff eines WinXP PCs auf eine Sambafreigabe der PC einige Minuten einfriert, sollte der WebClient-Dienst in den Windows-Diensten abgeschaltet werden.
Installation
cd $SOURCEDIR
tar xzvf samba-latest.tar.bz2
mkdir -p /etc/samba \
/var/lock/samba
cd /samba-<VERSION>/source
./configure --prefix=/usr/local \
--bindir=/usr/local/bin \
--sbindir=/usr/local/sbin \
--libdir=/etc/samba \
--sysconfdir=/etc/samba \
--with-smbmount
make
make install
/etc/samba/smb.conf
[global]
workgroup = WORKGROUP
encrypt passwords = yes
security = user
getwd cache = yes
[video]
path = /video
comment = /video
browseable = yes
read only = no
directory mask = 0775
create mask = 0755
[mp3]
path = /mp3
comment = /mp3
browseable = yes
read only = no
directory mask = 0775
create mask =
Links
| [1] | http://us1.samba.org/samba |