This morning I received a call from an employee about how his computer had been infected with the ZEUS virus. When a colleague and I went to investigate the employee told us he had googled “Target”, in an attempt to browse
Replacing a Physical Hard Drive Running in a Freenas 9.10 VM Within ESXI 6
I must start by saying I am not responsible for any data loss that may occur as a result of this post. Please make a backup copy of everything within your Freenas volume before attempting to swap out a disk. Running Freenas 9.10
Expect Script For Mounting Encrypted Veracrypt Drives Automatically With Ubuntu 14.04.
I would like to start off by saying this is not the best idea from a security standpoint as the password to mount the Veracrypt drives will exist in clear text within a script. This is why it is extremely important
tl;dr – vMware vCenter Migration Tool: Watch your inodes!!!
I use the vMware vCenter migration tool to copy virtual machines between different instances of ESXi on a daily basis and today I ran into a problem I have never seen before. Checking email on my way into work I
A Useful For Loop For Removing Queued Exim Messages.
This is a useful way to clear out a large queue of messages in exim. for x in `exim -bp | awk ‘{print $3}’`; do exim -Mrm $x ; done