1
I would like to convert "df -g" from solaris to linux. Would like to know what is the linux equivalent of "df -g"
On solaris man df will give option -g as such:
Print the entire statvfs(2) structure. This option is used only for mounted file systems. It cannot be used with the -o option. This option will override the -b, -e, -k, -n, -P, and -t options.
I am currently unable to find -g for linux and would like to know if -g is now obsolete.
stat -f is a pretty good substitute but do you know of commands that can give all these in 1 command? Block size, Frag size, Total blocks, Free blocks, Available, Total files, Free files, Flag, Filename length – frymyberries – 2019-11-11T07:13:37.970
That's literally in the
stat -f
output already. – user1686 – 2019-11-11T07:15:06.593