Influencing Virtual Teams: 17 Tactics That Get Thigns Done with Your Remote Employees_
If you have just been promoted to a new leadership position (or expect to be soon), then this book is for you.
The book outlines ten strategies that will shorten the time it takes you to reach what Watkins calls the breakeven point: the point at which your organization needs you as much as you need the job.
Choosing appropriate metrics helps to drive the right action if something goes wrong, and also gives an SRE team confidence that a service is healthy.
- Medium large size organizations will have a governance strategy.
- Businesses will determine their strategic objectives, leading to programs of work being identified which will enable the business to achieve its strategic objectives.
- these programs are intern broken down into projects.
Prerequisites
Greek for "Helmsman"; also the root of the words "governor" and "cubernetic"
Table of Contents
This file contains hidden or 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
def disk_usage(): | |
cmd = "df -h | grep /mnt/log-storage" | |
df = subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT) | |
output = df.communicate()[0] | |
print output | |
disk_usage() |
This file contains hidden or 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/bash | |
# Remove old kernels and clean up inode count. | |
[ "$(whoami)" = root ] || { echo "Please run this script as root" && exit 1; } | |
CURRENT_KERNEL=$(uname -r | sed s/-generic//g) | |
OLD_KERNEL_LIST=$(find /usr/src -maxdepth 1 -mindepth 1 -type d -not -name "*$CURRENT_KERNEL*" -exec basename {} \;) | |
echo -e "Current kernel: $(uname -r)\n" | |
echo -e "Old kernels: \n$OLD_KERNEL_LIST\n" |