vagrant & veewee in gentoo part one

This article is part one for installing vagrant & veewee (using virtualbox) on a gentoo workstation. What makes this cool, is that now you can build a vm through vagrant for remote (headless) usage in an ssh session, and it allows you to create a build of a stock machine quickly once you have an … Read More

md5sum & sha1sum from zshrc

i just added this quick little function just to give me a quick output when attaching to emails: function checksum() { printf “FILE: `echo ${1}`\n” ; printf “SIZE: `ls -al ${1} | awk ‘{ print $5 }’` bytes\n” ; printf “MD5 : `md5sum ${1} | awk ‘{ print $1 }’ | tr ‘[:lower:]’ ‘[:upper:]’`\n” ; … Read More