How to clean /tmp directory automatically in Linux/cPanel using tmpwatch
The “tmpwatch ” command in linux is to removes files which haven’t been accessed for a period of time. The tmpwatch recursively ...
How to compress / zip a directory in Linux
To compress in tar.gz format: tar -cv /directory | gzip > archive.tar.gz To decompress the tar.gz file: tar -zxvf archive.tar.gz ...