11-28-2014, 10:59 PM
Thanks to @nouseforname I now have an (almost) working share accessible from the raspi. Here's the instructions:
Quote:Try to install cifs at your raspberry:So far only the last part fails, the mounted share is writable only by root.
sudo apt-get install cifs-utils
if this works without any problem:
sudo mkdir /mnt/backup
sudo mount -t cifs //smbhost/path/folder /mnt/backup -o user=UserName
if no errors, you can check if the content if right:
ls /mnt/backup
or also create a file inside this folder and check if you can see it at the windows host
touch /mnt/backup/mytest.txt