As i installed RaspiBackup, i'd like to mount a specific folder from my (Synology) NAS as a local folder
Found anough to read about that on Google, it shows that many experience issues with setting up, and so do i, but my answer isn't there
What i did:
created a backup folder
Code: Select all
sudo mkdir /backupCode: Select all
sudo mount -t cifs //192.168.2.250/backup/RaspiBackup_save /backup -o username="user",pass="login",vers=1.0Code: Select all
sudo nano /etc/fstabCode: Select all
//192.168.2.250/backup/RaspiBackup_save /backup cifs comment=systemd.automount,defaults,rw, username="user",pass="login",vers=1.0,uid=1000, gid=46 0 0With the manual command it works... what's wrong here?