How to See What Files Take HDD Space
We need to see what files are taking up a lot of disk space in */opt/websafety folder. How to check that from the command line?*
Use the following commands to print the top 20 files. Usually it is the SQLite monitoring database in /opt/websafety/var/db folder.
cd /opt/websafety
du -a | sort -nr | head -20