This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "" | |
echo "to uninstall everything: yum erase 'netapp-*' 'ocie-*'i ocf-server" | |
echo "" | |
echo " prerequisites" | |
cat << EOF | |
ocie-serverbase >= 1.4.0 | |
java-1.8.0-oracle >= 1.8.0.1 OR public JDK should also work? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# see also: | |
# https://en.wikibooks.org/wiki/OpenSSH/Cookbook/Multiplexing | |
# http://blog.scottlowe.org/2015/12/11/using-ssh-multiplexing/ | |
# | |
# you may want to use connection multiplexing on the jumphost | |
Host jump-host | |
Hostname jump-host.example.com | |
ForwardAgent yes | |
ControlPath ~/.ssh/cm-%r@%h:%p |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export MEM_ROOT=/dev/shm | |
export MEM_DIR=$MEM_ROOT/$PBS_JOBID | |
# create directory per job | |
mkdir -p $MEM_DIR | |
# cleanup function | |
function mem_dir_cleanup { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
EBFILE=$1 | |
echo "Date,Payee,Category,Memo,Outflow,Inflow" | |
awk 'BEGIN { FS=";"} { | |
inflow=0 | |
outflow=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION=$(ls -t1 /boot/vmlinuz-* | cut -f 1 -d '-' --complement | head -1) | |
BOOT=/boot | |
KEXEC=/sbin/kexec | |
KERNEL=$BOOT/vmlinuz-$VERSION | |
INITRD=$BOOT/initramfs-$VERSION.img |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
FSNAME=$1 | |
WARNAGE=$2 | |
CRITAGE=$3 | |
NOW=$(/bin/date +%s) | |
ZFS="sudo /sbin/zfs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UTF-8 encoded sample plain-text file | |
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ | |
Markus Kuhn [ˈmaʳkʊs kuːn] <http://www.cl.cam.ac.uk/~mgk25/> — 2002-07-25 | |
The ASCII compatible UTF-8 encoding used in this plain-text file | |
is defined in Unicode, ISO 10646-1, and RFC 2279. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# | |
# check_zfs: zfs usage check | |
# Erich Birbngruber <[email protected]> | |
# twitter: @ebirn | |
# | |
$opt[1] = "--vertical-label \"Usage\" -b 1024 --title \"ZFS usage host backups\" -l 0 --rigid "; | |
$def[1] = "DEF:var1=$RRDFILE[1]:$DS[1]:AVERAGE " ; | |
$def[1] .= "DEF:var2=$RRDFILE[2]:$DS[2]:AVERAGE " ; | |
$def[1] .= "CDEF:total=var1,var2,+ " ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gfs2_quota -f /home list | awk '{ print $2 " " $8 " GB"}' | sort -k 2.1 -n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
NAME=$1 | |
if [ "$NAME" == "" ]; then | |
echo "usage: $0 <vmname>" | |
exit 1; | |
fi | |
MYSELF=$( hostname -s ) |