this post was submitted on 14 Jun 2023
3 points (100.0% liked)

Synology

965 readers
1 users here now

Synology

This is a place for all topics regarding Synology hard- and software - especially (but not limited to) their NAS devices.

Just one thing: Let’s please be pleasant to each other and respect that people have different experience levels. Some are pros, some are noobs, yet everybody may have good ideas or interesting questions to ask and comments to make, and all of these shall be heard and appreciated. ❤️


And since we know from TV that all IT nerds 🤓 are h4xx0rs and wear hoodies all the time (if not even ski masks) in front of their computers, I chose an appropriate banner image (image credit).

founded 1 year ago
MODERATORS
 

Hello there,

I'm a newcomer to the synology world (although I know my way around GNU/Linux boxes) and I feel that I could use some help because all the shiny features and screens of DSM confuse me a lot.

1- I have a remote webdav server which I want to sync bidirectionally. I finally got that to work using the "Cloud Sync" app, and the files are replicating into my home folder. Within this folder, I have a "Holidays" photo folder which I would like to make available to my smart TV over DLNA, and ideally to the "Photos" app, is there a way to do that? I resorted to SSH into the DS to create a bind mount between "Holidays" and /volumeXYZ/photo/ but the only photo I can see over DLNA is the dummy I uploaded from DSM and messing with permissions doesn't seem to help.

2- I have a remote server from which I want to rsync periodically to back-up a collection of music files, and, similarly those files should become available over DLNA and to other users of DSM. "Active Backup for Business" seems decently featured, it even lets me pick a destination folder, which I specified to be "/music". And now it happily created a mess of what appears to be temp/lock files and config within /music.

In general, what brought me to buying this nas was to have an off-site backup of a server which could double as a media server at home using the same data. So far this experience has been exceedingly frustrating.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago (1 children)

OK, thanks. Is there a UI/tool for bind-mounting? I feel it's a dirty (though effective) workaround that bring its own problems and dirty workarounds (to make the mounts reboot-proof is more stuff to worry about, etc)

[–] [email protected] 1 points 1 year ago (1 children)

Not that I know of. I have had my mount bind command there for years and never had a problem.

There are different ways of making it survive a reboot, and I use the method based on this (I actually have a bunch of startup scripts, so below is just an example of what I would do for mount bind : https://community.synology.com/enu/forum/17/post/88713

#! /bin/sh
case $1 in
        start)
                        mount --bind /volume1/homes/xxxxx/photo /volume1/photo/yyyyy
                        ;;
                stop)
                        echo -e "Nothing to stop..."
                        ;;
esac

Place the shell script at /usr/local/etc/rc.d

I guess you can use DSM's task scheduler to accomplish the same thing, although I am not sure if then the mount bind will be done soon enough before media server is fired up.

[–] [email protected] 0 points 1 year ago (1 children)

Any reason to prefer that to putting it in /etc/fstab? Also, it looks like my DSM has systemd, so, progress, I guess :)

[–] [email protected] 1 points 1 year ago

Whatever works for you ! :)