June 14, 20251 yr Hello,I have a daily backup script on my linux mint laptop to a share on unraid (excerpt below if helpful) that works by creating a hard-link to the previous days backup. My understanding here is that by doing this each unique file is only stored once and then just a series of hard-links which don't take up additional space is used.However, on unraid dashboard the disk usages graphs seem to look at apparent/logical size and not actual size. I confirmed this by deleting some older backups. Is there a way to change this reporting behavior?# Where to store today's backupDEST="$DESTBASE/$(date +%Y-%m-%d)"# Where to find yesterday's backupYESTERDAY="$DESTBASE/$(date -d yesterday +%Y-%m-%d)/" # Use yesterday's backup as the incremental base if it existsif [ -d "$YESTERDAY" ]then OPTS="--link-dest $YESTERDAY"fi # Run the rsyncrsync -av $OPTS "$SOURCE" "$DEST"
June 15, 20251 yr Community Expert 20 hours ago, darwinsbeard said:on unraid dashboard the disk usages graphs seem to look at apparent/logical size and not actual size.It should report the actual size, compare with df -h
June 15, 20251 yr Community Expert You might want to verify your hardlinks are working using something like "czkawka" from the CA app store
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.