Hello, everyone, I am using orin nx JetPack 6.0(rev.2)sudo./tools/backup_restore/l4t_backup_restore.sh -e nvme0n1 -b jetson-orin-nano-devkit Everything is fine, but orin nano’s same operation tar: Write checkpoint 7620000 will get bigger and bigger, even if I apply this patch,
isext4() {
if [ “$#” -ne 1 ]; then
print_message “isext4 function need 1 parameter that is the name of the storage device”
return 1;
fi
local result
- result=“$( blkid “/dev/${1}” | awk ‘{ print $3 }’ | sed -n 's|TYPE=”(.*)“|\1|p’ )”
- result=“$( blkid -o value -s TYPE “/dev/${1}” )”
if [ “${result}” = “ext4” ]; then
echo “true”
else
echo “false”
fi
}
Should the backup script to orin nano be adjusted now? I am using the latest JetPack 6.0, not the development version,When I backed up nvme on orin nx, the time was fine, but the orin nano was very slow。