How to copy a sparse file in over the network from linux
Simply $ rsync -aS <source> <destination> for rsync you need to have rsync on both machines $ scp source destination [--sparse=always] @destination $ fallocate -d filename_on_destination_server can also use dd to convert into or create sparse files R...
Oct 9, 20221 min read431