cYnIx
Members
-
Joined
-
Last visited
Solutions
-
cYnIx's post in Cascade of Disk failures, shares vanished was marked as the answerYour syslog is flooded with:
So disk 6 is having an issue and needs xfs_repair run.
When disk 6 is fixed the array can start and you will see the dockers.
-
cYnIx's post in Mover Array to Cache, Small Files was marked as the answerI would use the rsync terminal command to move that many files. There are lots of flags for rsync. Your command may look something like: `rsync -av --progress --remove-source-files /mnt/disk#/share/ /mnt/cache/share`
When that command is finished you will likely have many empty folders to remove, You can do so with a command like `find /mnt/disk* -type d -empty -delete`
If you don't have the rsync command you can get it with the Nerd Tools Plugin.
You can also use the Midnight commander program on terminal to move files, but it would not have the checksum verification of the move like rsync does.
Hope that helps.