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

Samsung ATIV Book 6 – Windows 8.1 Drivers

I finally got a new laptop with US-only keyboard. It is a big deal for many people living in Canada because 95% of the laptops sold in the retailer shops have bilingual keyboards. I bought a nice Samsung ATIV Book 6 from http://www.adorama.com/ via Amazon. Adorama ship to Canada (thank god!). The computer comes pre-installed … Read more