I hereby claim:
- I am aboron on github.
- I am aboron (https://keybase.io/aboron) on keybase.
- I have a public key ASBTpuVBqQ5Qbex7AuRNbbGsCQLmXpCHNuZHY08RbsrmtAo
To claim this, I am signing this object:
| #/bin/bash | |
| while [ "$key" != "q" ] | |
| do | |
| clear | |
| uptime | |
| echo "`$* | head -n 35`" | |
| read -n 1 -t 2 -s -r key | |
| done |
| #!/usr/bin/bash | |
| if [ "$#" -ne 1 ]; then | |
| vmadm list -p -o uuid | while read line ;do | |
| vmadm get $line | /usr/xpg4/bin/grep -E 'mac|"ip"|zonename|interface|alias' | |
| echo | |
| done | |
| exit 0 | |
| fi |
| #!/usr/bin/bash | |
| if [ "$#" -ne 1 ]; then | |
| echo " *** Illegal number of parameters" | |
| echo | |
| echo "Usage: vm-backup <UUID>" | |
| echo | |
| echo "Note: Backups will dump into the current directory" | |
| echo | |
| exit 0 |
| When adding filesystems using json at initial creation, include: | |
| "filesystems": [ | |
| { | |
| "type": "lofs", | |
| "source": "tank/Movies", | |
| "target": "/Movies" | |
| }, | |
| { | |
| "type": "lofs", | |
| "source": "tank/TV", |
| Verifying my Blockstack ID is secured with the address 1LxvyqzjSq9aQLQhjxGKf7WQ5N5rhjjZ8N https://explorer.blockstack.org/address/1LxvyqzjSq9aQLQhjxGKf7WQ5N5rhjjZ8N |
| git clean -xfdf | |
| git reset --hard | |
| git update | |
| git submodule foreach --recursive git clean -xfdf | |
| git submodule foreach --recursive git reset --hard | |
| git submodule update --init --recursive |
| #/bin/bash | |
| set_tzdata () | |
| { | |
| # Change this to the timezone in your area | |
| ln -fs /usr/share/zoneinfo/US/Eastern /etc/localtime | |
| dpkg-reconfigure -f noninteractive tzdata | |
| } | |
| fix_fstab () | |
| { |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| cd /opt/local/minecraft | |
| java -d64 -Xms1G -Xmx6G -XX:-UseVMInterruptibleIO -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalPacing -XX:ParallelGCThreads=4 -XX:+AggressiveOpts -jar craftbukkit.jar nogui |