c8 hue 6 540x304 - How to find, count and kill 🐧 Zombie Processes

How to find, count and kill 🐧 Zombie Processes

If you have zombie processes it means those zombies have not been waited for by their parent (look at PPID displayed by ps -l). You have two choices: Fix the parent process (make it wait);Kill the parent; or live with it. Remember that living with...

Malicious WordPress plugin IOptimization 540x304 - IOptimization - Malicious WordPress plugin

IOptimization – Malicious WordPress plugin

Okay, it’s not really a WordPress plugin, but rather a malicious script that is trying to pass as one. Upon a regular security scan of one of the websites that I maintain, I stumbled upon a ZIP archive that contains two PHP files named...

what is cpanel 540x304 - mod_userdir - cPanel temporary URL

mod_userdir – cPanel temporary URL

For servers where ‘mod_userdir’ module is enabled, you can access your websites via temporary URLs instead of the domain name. The format of this temporary URL is usually ‘; The ‘ipaddress’ used is the server’s...

Written by Egon Rath

How to create a local Ubuntu mirror

If you need to update more than one Ubuntu based Workstation or Server on a regular base, it can save you a good amount of bandwidth if you provide new packages and updates through a local Ubuntu mirror. In this document i write down the steps...

c8 hue 6 540x304 - Installing CentOS 7 🐧 on VirtualBox

Installing CentOS 7 🐧 on VirtualBox

First lets download the VM image from this website. Why use VM images instead of the real CentOS ico? The VirtualBox and VMware images are created in such a way that they are less in size but contains all the standard packages required for instant...

what is cpanel 540x304 - How to add Domainkeys for a Domain in cPanel

How to add Domainkeys for a Domain in cPanel

“DomainKeys” is an anti-spam software application that uses a public key, cryptography to authenticate the sender’s domain. cPanel offers a installer script “domain_keys_installer” using which the DomainKeys can be...

linux - Automatic MySQL Database Backups Using CRONTAB

Automatic MySQL Database Backups Using CRONTAB

Here is how to set up a cronjob that automatically backs up a MySQL database to a file every hour. Okay, so first we need to create a new script that will be executed via cron: #!/bin/bash YEAR=`date +%Y` MONTH=`date +%m` DAY=`date +%d` HOUR=`date...