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