SSH du command

If you wish to track the Disk Usage of your Linux Dedicated Server or VPS – the SSH du command is quite useful and very fast. In this article, we will show you the most important usage of the SSH du command. It is extremely handy if you have a lot of people uploading content to your machine or if you have daily backups scheduled. Use this SSH command to check the disk usage of your Linux machine in seconds.

Using SSH du command to view how full is your server

This will display the size of all files down the current working directory

du

The above one will show output in Kilobytes, we are more used to seeing Mbs and Gbs, for this we’ll use the -h option

du -h

Using SSH du command to view all files’ Disk Usage

du -ah

A similar way to go is to use

du -sh ./*

Using Linux du command to view files in the n nested directories below

du -ah --max-depth=1
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

Linux tar Command

The Linux tar command is used to compress and extract files to and from an archive. In this...

How to Install WordPress via SSH

Since WordPress is the most widely used CMS it’s installation process has been made as simple and...

SSH Execute Command on a Remote server

Via SSH you can connect to a remote server’s shell. This will allow you to execute commands on...

How to connect to your shared hosting account via SFTP with FileZilla

SFTP is a convenient way to use SSH, while also using the interface of a simple FTP. In order to...

SSH netstat command

If you wish to debug or track statistics of your network in a Linux environment you can use SSH...