I wonder why this happened all of a sudden, after working properly for 2 months?
I also wonder why I have not found more people with the issue (in case I have the same, still to confirm)?
I try to do that today, I miss it very much





FakeDave wrote:Can someone tell me what for is the file /etc/rc.local ?
I'll try to investigate further then ...
if [ -r /etc/rc.local ]; then
echo -n 'Starting local daemons:'
sh /etc/rc.local
echo '.'
fi# Optware setup
[ -x /etc/rc.optware ] && /etc/rc.optware start

mount
/dev/root on / type ext4 (rw,relatime,barrier=0,journal_checksum,data=ordered)
/tmp on /tmp type tmpfs (0)
none on /dev/pts type devpts (gid=4,mode=620)
/sys on /sys type sysfs (0)
/proc/bus/usb on /proc/bus/usb type usbfs (0)
/dev/vg1/lv on /volume1 type ext4 (usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,synoacl)
/dev/md3 on /volume2 type ext4 (usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,synoacl)
/volume1/@optware on /opt type bind (bind)
/dev/sdk1 on /volumeUSB1/usbshare type fuseblk (rw,allow_other,blksize=4096,default_permissions)
Rabbit> ls -la /
drwxr-xr-x 23 root root 4096 Jan 12 09:30 .
drwxr-xr-x 23 root root 4096 Jan 12 09:30 ..
-rw------- 1 root root 1024 Oct 28 10:57 .rnd
drwxr-xr-x 2 root root 4096 Jan 10 21:11 bin
drwxr-xr-x 8 root root 36864 Jan 12 09:30 dev
drwxr-xr-x 15 root root 4096 Jan 12 20:56 etc
drwxr-xr-x 13 root root 4096 Jan 12 09:30 etc.defaults
drwxr-xr-x 2 root root 4096 Nov 2 13:58 initrd
drwxr-xr-x 14 root root 12288 Jan 10 21:11 lib
drwxr-xr-x 2 root root 4096 Jan 10 21:11 lib64
lrwxrwxrwx 1 root root 11 Jan 10 21:11 linuxrc -> bin/busybox
drwx------ 2 root root 4096 Nov 2 13:55 lost+found
drwxr-xr-x 2 root root 4096 Nov 2 13:29 mnt
drwxr-xr-x 11 root root 4096 Nov 27 15:38 opt
dr-xr-xr-x 190 root root 0 Jan 12 09:30 proc
drwxr-xr-x 2 root root 4096 Jan 10 21:11 root
drwxr-xr-x 2 root root 4096 Jan 10 21:11 sbin
drwxr-xr-x 12 root root 0 Jan 12 09:30 sys
drwxrwxrwx 9 root root 880 Jan 12 20:57 tmp
drwxr-xr-x 7 root root 4096 Jan 10 21:11 usr
drwxr-xr-x 12 root root 4096 Jan 12 09:30 var
drwxr-xr-x 12 root root 4096 Jan 10 21:11 var.defaults
drwxr-xr-x 19 root root 4096 Jan 12 09:30 volume1
drwxr-xr-x 6 root root 4096 Jan 12 09:30 volume2
drwxr-xr-x 3 root root 4096 Jan 12 09:54 volumeUSB1

#!/bin/sh
# Optware setup
[ -x /etc/rc.optware ] && /etc/rc.optware start
exit 0
#! /bin/sh
if test -z "${REAL_OPT_DIR}"; then
# next line to be replaced according to OPTWARE_TARGET
REAL_OPT_DIR=/volume1/@optware
fi
case "$1" in
start)
echo "Starting Optware."
if test -n "${REAL_OPT_DIR}"; then
if ! grep ' /opt ' /proc/mounts >/dev/null 2>&1 ; then
mkdir -p /opt
mount -o bind ${REAL_OPT_DIR} /opt
fi
fi
[ -x /opt/etc/rc.optware ] && /opt/etc/rc.optware
;;
reconfig)
true
;;
stop)
echo "Shutting down Optware."
true
;;
*)
echo "Usage: $0 {start|stop|reconfig}"
exit 1
esac
exit 0
#!/bin/sh
# Start all init scripts in /opt/etc/init.d
# executing them in numerical order.
#
for i in /opt/etc/init.d/S??* ;do
# Ignore dangling symlinks (if any).
[ ! -f "$i" ] && continue
case "$i" in
*.sh)
# Source shell script for speed.
(
trap - INT QUIT TSTP
set start
. $i
)
;;
*)
# No sh extension, so fork subprocess.
$i start
;;
esac
done

Return to DiskStation Manager 3.0 - 1334/1337
Users browsing this forum: No registered users and 1 guest