zfs-inplace-rebalancing icon indicating copy to clipboard operation
zfs-inplace-rebalancing copied to clipboard

not working on xigmanas (FreeBsd)

Open rudiratlos opened this issue 4 months ago • 1 comments

lsattr and perl is not installed on xigmanas platfform.

lsattr can be installed on xigmanas (login via ssh) by: pkg install e2fsprogs

perl is only used in teh script to calc the percentage.

just replace line 72: progress_percent=$(perl -e "printf('%0.2f', ${current_index}*100/${file_count})") with progress_percent=$((${current_index}*100/${file_count}))

rudiratlos avatar Mar 03 '24 14:03 rudiratlos