How to check disk space in Linux (command line)

df

The df command stands for “disk-free,” and shows available and used disk space on the Linux system.

df -h shows disk space in human-readable format

df -T shows the disk usage along with each block’s filesystem type (e.g., xfs, ext2, ext3, btrfs, etc.)

df -i shows used and free inodes

du

du shows the disk usage of files, folders, etc. in the default kilobyte size

  • du -h shows disk usage in human-readable format for all directories and subdirectories

C:- count total space size of folder

  • du -a shows disk usage for all files
  • du -s provides total disk space used by a particular file or directory

How to search the disk size of files from folder and delete or empty the big size file

First goto the the perticuler folder using “cd” command

cd  /tmp

then type below command to check the size of files from folders

du -chs *

How to delete and erase the files

  • Enter below command for deleting the file

rm -rvf test2.txt

command explanation: –

 -r, -R, –recursive

remove directories and their contents recursively

-v, –verbose

explain what is being done

-f, –force

ignore nonexistent files and arguments, never prompt

  • Enter below command for empty the big size file

# > file_name

              Example: –

                       # > test1.txt

Build Your Website with Hostiko

From professional business to enterprise, we’ve got you covered!

Copyright ©2026 QualiSpace. All rights reserved.

A Platform

QualiSpace
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.