To support ZFS compression-based storage systems such as those used on clustor2, the latest version of du available for Ubuntu Linux now has the '--apparent-size' option which will report the actual file size, not the compressed size as seen on the clustor2 server. You can use this new option in conjunction with the existing du options such as 'h', 'm', 'c', etc.
Here is an example, using a file that is 3.2 GB in size:
ls -l reports the file size is 3.2 GB as expected:
andy@macomp001:~$ ls -l 3_2GB_test_file.tar
-rw-r--r-- 1 andy root 3343513600 Feb 2 2018 3_2GB_test_file.tar
but du shows it as less than half this size:
andy@macomp001:~$ du 3_2GB_test_file.tar
1434360 3_2GB_test_file.tar
using the '--apparent-size' option to du now reports the size you would expect to see:
andy@macomp001:~$ du --apparent-size 3_2GB_test_file.tar
3265150 3_2GB_test_file.tar
Using du to find sizes of files or folders on other servers attached to the compute cluster, for example silo2 or clustor, will show very similar sizes with or without the '--apparent-size' option since they do not use compression in their underlying storage systems.