Bookmarks for December 7th through January 21st

These are my links for December 7th through January 21st:

Automated basic Xen snapshots

With a little bit of shell-scripting I made this. It runs on a dom0 and scans through virtual machines running on a cluster, requesting snapshots of each one. You may want to use vm-snapshot-with-quiesce if it’s supported by xen-tools on your domU machines.

for i in `xe vm-list params=name-label | grep name | awk '{print $NF}' | xargs echo`; do echo $i; xe vm-snapshot vm=$i new-name-label="$i-`date +'%Y-%m-%dT%H:%M:%S'`"; done

If you cron the above script every day then after a few days you may want to start deleting the oldest snapshots:

for i in `xe vm-list params=name-label | grep name | awk '{print $NF}'`; do snapshot=`xe vm-list name-label=$i params=snapshots | awk '{print $NF}'`; echo "$i earliest snapshot is $snapshot"; if [ "$snapshot" ]; then xe vm-uninstall vm=$snapshot force=true; fi; done

Bookmarks for November 25th through December 6th

These are my links for November 25th through December 6th:

Bookmarks for November 15th through November 25th

These are my links for November 15th through November 25th:

Bookmarks for October 27th through November 15th

These are my links for October 27th through November 15th:

Bookmarks for October 14th through October 27th

These are my links for October 14th through October 27th:

Bookmarks for October 7th through October 13th

These are my links for October 7th through October 13th:

Bookmarks for September 22nd through October 5th

These are my links for September 22nd through October 5th:

Bookmarks for September 7th through September 20th

These are my links for September 7th through September 20th:

Bookmarks for July 13th through July 30th

These are my links for July 13th through July 30th: