Linux Hints

How to mount NTFS file system in CentOs

https://wiki.centos.org/TipsAndTricks/NTFS

Run terminal as root

    su -

List files in folder with file sizes:

    ls -lh

and for sorting based on size

    ls -lS -lh

sort files based on date modified

        ls -t -sl

list all with their size

        du --max-depth=1 -h

Remove all inside directory dir

        rm -r /path/to/dir/*