Hallo, ich wollte nun mount bind automatisch ausführen lassen beim hochfahren und habe alles gemacht wie es im wiki steht, aber es passiert nix.... die ordner werden nicht gemountet... ( http://www.synology-wiki.de/index.php/Mount_Bind )
das hier ist meine S99mount.sh:
die datei liegt auch wie im wiki steht in /usr/syno/etc.defaults/rc.d/ und hat 755...
das hier ist meine S99mount.sh:
Rich (BBCode):
#!/bin/sh
# S99mount.sh
# mount/bind some folders on startup
# and umount them on shutdown/reboot
case $1 in
start)
/bin/mount -o bind /volume2/video2/martin/ /volume1/video/martin/
/bin/mount -o bind /volume2/video2/christoph/ /volume1/video/christoph/
;;
stop)
/bin/umount /volume1/video/martin/
/bin/umount /volume1/video/christoph/
;;
*)
echo "Usage: $0 [start|stop]"
;;
esac
die datei liegt auch wie im wiki steht in /usr/syno/etc.defaults/rc.d/ und hat 755...