I want to copy an entire linux server that is going to be decommissioned over the network so we are sure nothing is lost.
I did du /
and was told there are 60 GB of under /
Then I did rsync -r / root@newserver:/old-server
and when doing du
in the old-server
dir I got 22 GB.
So why is that difference? Is there something that du
can see but rsync
can't copy?