backup of VMWare using ghettoVCB.sh

You can back up VMware VM for free using ghettoVCB.sh script. Everything you need is here: https://github.com/lamw/ghettoVCB I was unable to download it directly to the the VMware server because wget v1.19 refused to download form https:// url. Instead I downloaded the file to my Windows machine and used WinSCPPortable to upload the file to … Read more

Useful Linux Commands

Delete all files with given extension recursively: find . -name “*.dll” -print0 | xargs -0 rm -rf Find the number of .jpg file in the current folder and all sub-folder recursively: find . -name “*.jpg” -print | wc -l Move all .m2ts files to /mnt/backup/m2ts folder: find . -iname “*.m2ts” -type f | xargs -I … Read more