Issue
i need to display the amount of free space in megabyte for each partitions in my Linux. and i need to display free space for whole hard drive. but i did not know how.
Solution
df -BM
would get you what you want in megabytes
try df -BM --total
this would be a rough approx, on my ubuntu i have two entries pointing to a same partition so it would have counted that twice
try df --help
for list of options
and you should post to askubuntu for ubuntu related questions
Answered By - mzzzzb Answer Checked By - Marie Seifert (WPSolving Admin)