November 1, 20241 yr First, tried to post this in the plugins support page I'm using Unassigned Devices to mount a Synology Nas that is on the network, to my Unraid server. Managed to add as an SMB share and mount it. No I I'm trying to move some folders from my Unraid server array to the Synology Nas using the Dynamix File Manager plugin. Selected the folders, clicked move button, but then in the target field, I can't find the mounted share. It doesn't go up a folder. Added a screenshot of what I'm seeing. The share I want to move them into is in the folder up from this one. I can't go to the root folder.
November 1, 20241 yr Community Expert I usual stick to terminal commands when doing this. example: #Make temp directory to work out of... mkdir /mnt/user/appdata/tempshare chmod -R 777 /mnt/user/appdata/tempshare chown -R nobody:users /mnt/user/appdata/tempshare # unarid mount the samba share... mount -t cifs //server/share /mnt/user/appdata/tempshare -o username=your_username,password=your_password #check share has data taht is on synology cd /mnt/user/appdata/tempshare ls -a #confirm permission: touch test.txt echo hi > test.txt cat test.txt rm test.txt *Verify connection and then use a terminal program such as mc / rsync scrip / cp comand to transfer files. other Troubleshooting-- You may need to double-check file permission and ACL on the synlogy nas. as a connection may have been made as read only via the unassing disk plugin mount or synology is not setup to write to that share due to permissions....
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.