Fritz!NAS eingerichtet, SMB 1.0 Unterstützung ist eingeschaltet und meine Verzeichnisstruktur für die Einzelscans vom Win10-PC auf die FB transferriert.
Erstmal HD51 und Duo4K auf die FB umgestellt.
In /var/etc/init.d habe ich ein Script "mountscan" mit den Symlinks
K01_mountscan
S70_mountscan
Code: Alles auswählen
#!/bin/sh
. /etc/init.d/globals
case $1 in
start)
if [ ! -e /mnt/settings ]; then
mkdir /mnt/settings
sleep 1
chmod 777 /mnt/settings
fi
sleep 2
cd /mnt
mount -t cifs -o rw,user=FB_NAS_UserName,password=FB_NAS_Pass,vers=3.0 //FB_IP/NAS_Pfad/scan /mnt/settings
cd /
;;
stop)
umount /mnt/settings
;;
*)
echo "[${BASENAME}] Usage: $0 {start|stop}"
;;
esac
(Meine CST-Boxen mit Nevis und Apollo habe ich noch nicht umgestellt)
[axHD51] / # ls -al /mnt/settings
drwxr-xr-x 2 root root 0 Sep 25 16:22 .
drwxrwxrwt 13 root root 260 Jan 1 2020 ..
drwxr-xr-x 2 root root 0 Sep 25 16:21 53C
drwxr-xr-x 2 root root 0 Sep 25 16:22 546
drwxr-xr-x 2 root root 0 Sep 25 16:22 564
drwxr-xr-x 2 root root 0 Sep 25 16:22 582
drwxr-xr-x 2 root root 0 Sep 25 16:21 5A0
drwxr-xr-x 2 root root 0 Sep 25 16:21 5BE
drwxr-xr-x 2 root root 0 Sep 25 16:21 5CD
drwxr-xr-x 2 root root 0 Sep 25 16:21 5EE
drwxr-xr-x 2 root root 0 Oct 8 14:51 61D
drwxr-xr-x 2 root root 0 Sep 25 16:22 631
drwxr-xr-x 2 root root 0 Oct 6 16:01 648
drwxr-xr-x 2 root root 0 Sep 20 15:35 649
drwxr-xr-x 2 root root 0 Nov 17 14:41 668
drwxr-xr-x 2 root root 0 Nov 10 12:50 686
drwxr-xr-x 2 root root 0 Sep 25 16:21 6A4
drwxr-xr-x 2 root root 0 Sep 25 16:21 6AE
drwxr-xr-x 2 root root 0 Sep 25 16:21 6C2
drwxr-xr-x 2 root root 0 Sep 25 16:21 6D7
drwxr-xr-x 2 root root 0 Sep 25 16:21 6EA
drwxr-xr-x 2 root root 0 Sep 25 16:21 6F5
drwxr-xr-x 2 root root 0 Sep 25 16:22 710
drwxr-xr-x 2 root root 0 Sep 25 16:22 730
drwxr-xr-x 2 root root 0 Oct 19 18:31 73A
drwxr-xr-x 2 root root 0 Sep 25 16:22 74E
drwxr-xr-x 2 root root 0 Sep 25 16:22 758
drwxr-xr-x 2 root root 0 Sep 25 16:22 785
drwxr-xr-x 2 root root 0 Sep 25 16:22 79E
drwxr-xr-x 2 root root 0 Sep 25 16:21 7D0
drwxr-xr-x 2 root root 0 Sep 25 16:21 7E4
drwxr-xr-x 2 root root 0 Sep 25 16:21 7FD
drwxr-xr-x 2 root root 0 Sep 25 16:22 81B
drwxr-xr-x 2 root root 0 Sep 25 16:22 834
drwxr-xr-x 2 root root 0 Oct 31 2018 9D6
drwxr-xr-x 2 root root 0 Sep 25 16:21 E11
drwxr-xr-x 2 root root 0 Oct 1 20:00 F01
-rwxr-xr-x 1 root root 2938 Apr 11 2020 SingleScan.mnu
[axHD51] / #