Leitfaden für Einsteiger
Aus VDR Wiki
(Unterschied zwischen Versionen)
(→7. Einrichten von Samba (zum Austasuch von Datein mit anderen Rechner)) |
|||
Zeile 1: | Zeile 1: | ||
+ | ==7. Einrichten von Samba (zum Austausch von Datein mit anderen Rechner)== | ||
+ | Falls noch nicht installiert: | ||
+ | |||
+ | apt-get install samba | ||
+ | |||
+ | Dann nur noch die | ||
+ | |||
+ | /etc/smb.conf bearbeiten: | ||
+ | |||
+ | |||
+ | workgroup = workgroup | ||
+ | server string = %h server (Samba %v) | ||
+ | wins support = no | ||
+ | dns proxy = no | ||
+ | log file = /var/log/samba/log.%m | ||
+ | syslog only = no | ||
+ | syslog = 0 | ||
+ | security = share | ||
+ | encrypt passwords = true | ||
+ | passdb backend = smbpasswd | ||
+ | guest account = gast | ||
+ | guest ok = yes | ||
+ | unix password sync = no | ||
+ | interfaces = 192.168.1.48/255.255.255.0 | ||
+ | guest ok = yes | ||
+ | guest account = gast | ||
+ | os level = 2 | ||
+ | unix charset = ISO-8859-15 | ||
+ | display charset = ISO-8859-15 | ||
+ | |||
+ | [root] | ||
+ | comment = Administration | ||
+ | path = / | ||
+ | writeable = yes | ||
+ | public = yes | ||
+ | create mode = 0755 | ||
+ | #veto files = /.*/.?/ | ||
+ | force user = root | ||
+ | force group = root | ||
+ | |||
+ | [videos] | ||
+ | comment = Videos | ||
+ | path = var/lib/video0.00 | ||
+ | read only = yes | ||
+ | browseable = yes | ||
+ | public = yes | ||
+ | create mode = 0775 | ||
+ | |||
+ | |||
+ | Wenn Windows nicht als "root" zugreifen soll, dann ist es besser unter Linus noch einen Benutzer "gast" anzulegen und danach "smbpasswd | ||
+ | gast" ausführen. Hierbei braucht nicht zwangsweise ein Passwort vergeben werden, sonst fragt Windows immer noch nach. VIele FTP | ||
+ | Programme speichern dies aber, so dass eigentlich auch das kein Problem darstellt. |
Version vom 25. November 2005, 12:58 Uhr
7. Einrichten von Samba (zum Austausch von Datein mit anderen Rechner)
Falls noch nicht installiert:
apt-get install samba
Dann nur noch die
/etc/smb.conf bearbeiten:
workgroup = workgroup server string = %h server (Samba %v) wins support = no dns proxy = no log file = /var/log/samba/log.%m syslog only = no syslog = 0 security = share encrypt passwords = true passdb backend = smbpasswd guest account = gast guest ok = yes unix password sync = no interfaces = 192.168.1.48/255.255.255.0 guest ok = yes guest account = gast os level = 2 unix charset = ISO-8859-15 display charset = ISO-8859-15
[root] comment = Administration path = / writeable = yes public = yes create mode = 0755 #veto files = /.*/.?/ force user = root force group = root
[videos] comment = Videos path = var/lib/video0.00 read only = yes browseable = yes public = yes create mode = 0775
Wenn Windows nicht als "root" zugreifen soll, dann ist es besser unter Linus noch einen Benutzer "gast" anzulegen und danach "smbpasswd
gast" ausführen. Hierbei braucht nicht zwangsweise ein Passwort vergeben werden, sonst fragt Windows immer noch nach. VIele FTP
Programme speichern dies aber, so dass eigentlich auch das kein Problem darstellt.