Looks like an ordinary [sparse file](https://en.wikipedia.org/wiki/Sparse_file). du reports "disk usage" in other words this file occupies just 64KiB on disk. Most of it is not allocated and should return zeroes on read attempt. Trivial check: `hexdump -C "$FILENAME" | less`
↧