How to verify whether DNS is working correctly
Related Posts
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu
Find and delete files older than 1 week (example)
find /home/users/backup_MyDB -type f -mtime +7 -exec rm {} + Although generally it is wise…