Dieses Blog durchsuchen

Seiten

Labels

Raspberry (8) RPI (8)

Dienstag, 5. März 2019

Samba auf dem Rasperry

Hier mal eine kurze Anleitung wie man Samba auf dem Raspberry installiert.

 Die Installation

sudo apt-get install samba samba-common-bin
sudo smbpasswd -a pi

  Sichern der originalen Konfiguration


sudo cp /etc/samba/smb.conf /etc/samba/smb.org

Konfiguration bearbeiten


sudo pico /etc/samba/smb.conf

Meine Änderung um jedem Zugriff auf das Home Verzeichnis zu geben

.
.
.
# ---mz schnippel
follow symlinks = yes
wide links = yes
unix extensions = no
# ---mz schnappel

#======================= Share Definitions =======================
.
.
.
.
# ---mz schnippel
[home]
follow symlinks = yes
wide links = yes
Comment =PI Home
Path = /home/pi
Browseable = yes
Writeable = Yes
only guest = no
create mask = 0775
directory mask = 0775
Public = yes
Guest ok = yes
force user = pi
# ---mz schnappel

Jetzt nur noch neu starten und ausprobieren

sudo /etc/init.d/samba restart

 

Keine Kommentare:

Kommentar veröffentlichen