So, I decided to upgrade my home server and add some disks. Previously I used just graid3 for backup disk, now decided to use graid3+graid5+gconcat together:
But when trying to add filesystem I got error:
Resulting filesystem is unusable. How to fix that?
Goal is to have filesystem with low number of big files (backup disk).
Filesystem size should not be a problem, I have 33TB UFS disk in another machine with same newfs parameters.
I have used all gmirror/gstripe/gconcat and graid3 for years without major problems. Just graid5 is new for me, found it from ports.
Code:
# graid5 status
Name Status Components
raid5/parem COMPLETE CALM (safeop) da0
da1
da2
da3
da4
da5
# graid3 status
Name Status Components
raid3/vasak COMPLETE da8 (ACTIVE)
da9 (ACTIVE)
da12 (ACTIVE)
da13 (ACTIVE)
da14 (ACTIVE)
# gconcat status
Name Status Components
concat/suur UP raid5/parem
raid3/vasak
Code:
# gpart create -s GPT /dev/concat/suur
# gpart add -t freebsd-ufs /dev/concat/suur
# gpart show /dev/concat/suur
=> 3 1648274878 concat/suur GPT (25T)
3 1648274878 1 freebsd-ufs (25T)
# newfs -U -b 65536 -e 8192 -f 8192 -i 131072 -k 0 -m 2 -o space /dev/concat/suurp1
using 7491 cylinder groups of 3438.44MB, 55015 blks, 27648 inodes.
with soft updates
super-block backups (for fsck_ffs -b #) at:
256, 7042176, 14084096, 21126016, 28167936, 35209856, 42251776, 49293696,
56335616, 63377536, 70419456, 77461376, 84503296, 91545216, 98587136,
... many numbers...
52666519936, 52673561856, 52680603776, 52687645696, 52694687616, 52701729536,
52708771456, 52715813376, 52722855296, 52729897216, 52736939136, 52743981056
newfs: wtfs: 8192 bytes at sector 14592: Invalid argument
Goal is to have filesystem with low number of big files (backup disk).
Filesystem size should not be a problem, I have 33TB UFS disk in another machine with same newfs parameters.
I have used all gmirror/gstripe/gconcat and graid3 for years without major problems. Just graid5 is new for me, found it from ports.