Hi Jocko,
last week I read that when formatting to ext4 you get the disk formatted immediately, but then, when you mount it the first time, a "lazy init" process is started, which clears the inodes list and it takes a long time, writing to the disk, to complete.
Probably in the past, while trying to format my disks, I thought that this was a bug of the gnome formatting program (in fact I wasn't convinced even of it being a bug), and I turned of the disks after some hours (sometimes after a few minutes) because I couldn't understand about this long formatting.
So, before investigating the dmesg errors and I saw, I decided to re-format them.
- I re-connected them to the NAS;
- I connected via ssh;
- umount /dev/sdb1; umount /dev/sdc1;
- mkfs.ext4 /dev/sdb1; mkfs.ext4 /dev/sdc1;
- reboot
Then I reconnected via ssh and you can see this:
- Code: Select all
root@nas:/ # file -sL /dev/sdb1
/dev/sdb1: Linux rev 1.0 ext4 filesystem data, UUID=51efcda1-2759-4399-aae6-9193 e50bff9d (needs journal recovery) (extents) (large files) (huge files)
root@nas:/ # file -sL /dev/sdc1
/dev/sdc1: Linux rev 1.0 ext4 filesystem data, UUID=f3c1ba1e-e983-45ac-a869-3de2 8e926da9 (needs journal recovery) (extents) (large files) (huge files)
I'm not sure about that "needs journal recovery", but I imagine it's that "lazy init" of the disk's inode tables.
In fact, doing a TOP, I can see that there's a process running, called 'ext4lazyinit' :-)
I think that now, if I leave the disks connected and let the ext4lazyinit working, I will finally get nice disks :)
I will check if tomorrow morning they are still connected and will feedback you in any case.
Cross fingers and have a nice weekend!