Rsync (Remote Sync) is a command-line tool for synchronizing files between two Unix-based systems. Rsync can also be used on…
Browsing: Linux Commands
We all know the importance of emails these days for information transfer. There are many free emails service providers which…
The command add-apt-repository is used for adding PPA reference to our Ubuntu or Debian systems. For newer installations, this command…
Curl command file utility supports for downloading and uploading files. Curl is useful for many works with system administration, web…
Do you want to send files but you are facing a problem due to their large size? It has the…
Tar Command: tar czf backup.tar.gz –exclude “wp-content/cache” public_html Above command will archive all files and directories under public_html directory except…
ifconfig command is useful for getting details of the network configuration in Linux-based systems. Mostly when I install an older…
Syntax: sed -i ‘/string_to_delete/d’ /path/to/file SED is a Stream Editor having the capability to remove lines from files containing a…
Generate md5 checksum find /var/www -type f -exec md5sum {} \; > /tmp/www-md5.list Above command will generate md5 checksum for…
SCP (Secure Copy) is a command line tool for Linux systems for securely transferring files from a remote server to…