You can also use the df command to check the disk space of a specific drive. To do this, simply specify the path to the drive as an argument to the df command. For example, to check the disk space of the /home directory, you would use the following command: df /home 2.Digging de...
Ncdu is a command line tool to view and analyse disk space usage on linux. It can drill down into directories and report space used by individual directories. This way it is very easy to track down space consuming files/directories. It actually allows the user to do this much faster th...
View disk space usage from command line With the DiskUsage command, you only need to enter the prompt and the complete path of the drive or folder that you want to get the information for. Here are the steps to use the DiskUsage command to obtain disk utilization information using Command ...
1. Check Linux Disk Space Usage The “df” command displays the information of device name, total blocks, total disk space, used disk space, available disk space, and mount points on a file system. sudo df Show Linux Disk Space Usage 2. Check Information on Linux Disk Space Usage The co...
Documentation Issue To check available disk space, open a PowerShell command line and enter this command (replacing with the actual distribution name): wsl.exe --system -d df -h /mnt/wslg/distro Gives me: PS C:\Users\username> wsl.exe --...
Using df command to check disk space in Linux Let’s see how can you use the df command to get various kind of disk space information in Linux. Just ‘df’ to see disk information The main and plain ‘df’ command will output the entire list of file systems in your Linux setup. To...
Size- Total disk space. Used- Used disk space. Available- Available disk space. pcent- Percentage of utilized space. File:The file name is given on the command line. target- The mount point. For example, to display the output of every ext4 partition inhuman-readableformat, revealing just ...
size - Total disk space. used - Used disk space. avail - Available disk space. pcent - Percentage of used space. file - The file name if specified on the command line. target - The mount point. For example, to display the output of all ext4 partition in human-readable format, showing...
must have at least 10000 of 1024 byte blocks of free space. Please provide more space or set the environment variable VTUNE_GLOBAL_DIR to point to a location with sufficient free space. You can run the command "df -k" to check file system free space. ...
If you want to omit all mount points except for the total, use grep alongside a regular expression with ^ to search for the total at the start of a line: $ df -h --total|grep ^total total 22G 7.2G 15G 33% - Get disk space available on a specific mount You can also run df...