Samba
Aus VDR Wiki
(Unterschied zwischen Versionen)
(Einfachste "smb.cof") |
|||
| Zeile 28: | Zeile 28: | ||
security = user | security = user | ||
getwd cache = yes | getwd cache = yes | ||
| − | |||
[video] | [video] | ||
path = /video | path = /video | ||
| Zeile 36: | Zeile 35: | ||
directory mask = 0775 | directory mask = 0775 | ||
create mask = 0755 | create mask = 0755 | ||
| − | |||
| − | |||
[mp3] | [mp3] | ||
path = /mp3 | path = /mp3 | ||
Version vom 15. Oktober 2004, 11:37 Uhr
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 |