To get the size of files and foldersĀ in the current directory (disk usage)
$> du -sxh *
To get a list of of the biggest data usage folders and files, you can use:
$> sudo du -ax -d 10 /* | sort -n -r | head -n 100
To get the size of files and foldersĀ in the current directory (disk usage)
$> du -sxh *
To get a list of of the biggest data usage folders and files, you can use:
$> sudo du -ax -d 10 /* | sort -n -r | head -n 100