Mounting a Samba Share on the Raspberry Pi

Posted on Fri 07 December 2018 in Sysadmin • Tagged with Raspberry Pi, Samba, Raspbian

Install the following packages:

apt-get install  samba-common smbclient samba-common-bin smbclient  cifs-utils

Create a local directory:

mkdir /mnt/abc

Mount the Samba share using your username:

mount -t cifs //server/share /mnt/abc -o user=uwe

If the Samba share is provided by a FritzBox via its NAS feature and assuming …


Continue reading