Yes, i loaded the modules.
root@nas:/ # cat /etc/init.d/insert-modules
#!/bin/sh
# insert kernel modules for 5big1
# for use with fvdw-sl-14 or higher
#
/bin/depmod 2>> boot.log
modprobe cifs 2>> boot.log
modprobe isofs 2>> boot.log
modprobe ntfs 2>> boot.log
modprobe fuse 2>> boot.log
modprobe usblp 2>> boot.log
modprobe nfs 2>> boot.log
modprobe nfsd 2>> boot.log
modprobe iscsi_trgt 2>> boot.log
modprobe iscsi_tcp 2>> boot.log
modprobe videodev 2>> boot.log
modprobe v4l2-int-device 2>> boot.log
modprobe v4l2-common 2>> boot.log
modprobe uvcvideo 2>> boot.log
modprobe raid0 2>> boot.log
modprobe raid1 2>> boot.log
modprobe raid456 2>> boot.log
modprobe raid10 2>> boot.log
exit 0
boot.log doesnt report anything failing
- Code: Select all
root@nas:/ # cat /boot.log
start boot log
detect and set platform
5big1
UIMAGE-395-5BIG1-25
5big1
mount dev/pts
update dev nodes
booting using sda1 root file system...
make dev node for buttons...
make dev node for tun device...
enable IP forwarding...
start buttons control daemon
device = 5big1
source = buttons-nwsp2
buttons-nwsp2 daemon started
Sun Aug 9 20:14:43 WEST 2015
create temporary passwd file
run udevstart to update dev nodes when necessary
inserting kernel modules:
create temporary group file
configure loopback netwerk interface
setting reboot and standby
5big1
rebootd-isp1
5big1
standbyd-isp1
start fan
fan5big daemon started
starting php based setup routines step 1
* Starting RAID monitor: [ OK ]
* Starting restore RAID devices...
- Assembling device /dev/md0: [ OK ]
* Finishing restore RAID devices... [ OK ]
* Found XML database configuration file... [ OK ]
* Updating Disks database... [ OK ]
* Starting mount of volumes...
- Mounting volume RD1-0: [ OK ]
* Finishing mount of volumes... [ OK ]
* Starting udevd... [ OK ]
* Generating Hosts File... [ OK ]
* Configuring System Hostname... [ OK ]
* Configuring LAN interface... [ OK ]
* Initializing Timezone... [ OK ]
* Starting web server... [ OK ]
* Starting mount of internal USB ...
* Finishing mount internal USB ... [ OK ]
* Configuring Disks... [ OK ]
* Configuring Samba... [ OK ]
* Configuring System Users...
Root password: use default password
Set users, linux and samba accounts [ OK ]
* Starting syncawayd... [ OK ]
* Starting Fvdw-sl Discovery Daemon... [ OK ]
start rpcbind service
starting php based setup routines step 2
* Starting dropbear... [ OK ]
* Kill temporary dropbear... [ OK ]
starting php based setup routines step 3
* Starting daemon update Hosts File... [ OK ]
* Starting Disk Temperature Guard... [ OK ]
* Starting mount of remote shares...
* Finishing mount shares... [ OK ]
starting php based setup routines step banner
*** fvdw-sl NAS firmware
This is fvdw-sl version: fvdw-sl 16.0
built on: Dec 28 2014
LAN IP address: 192.168.1.91 (static)
Port configuration:
LAN -> eth0
php based setup routines finished
web permission on resolv.conf
set device tuning for dms performance
else loop1 finished
rcS finished
I'm trying to convert my working raid1 to raid5 using
this link, so my mdstat looks like this now:
- Code: Select all
root@nas:/ # cat /proc/mdstat
Personalities : [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
md0 : active raid5 sde8[5] sdd8[3] sdc8[2] sdb8[1] sda8[0]
3893898496 blocks level 5, 64k chunk, algorithm 2 [5/4] [UUUU_]
[===============>.....] recovery = 75.5% (735872228/973474624) finish=284.4min speed=13918K/sec
unused devices: <none>
root@nas:/ #