This example takes olddisk.qcow2
and resizes it into newdisk.qcow2
,
extending one of the guest's partitions to fill the extra space.
Thanks for visiting this page. I hope that you enjoyed the presentation, and found value in this. Below are a set of resources that will help in learning more about some of the topics I shared, specifically around people and process management.
All links below are sanitized, and have no referral links in which I profit from.
- Getting started with ChatOps? Take a look at Rundeck
- What even is ChatOps? Check out this talk by Mark Imbriaco
- Want to learn more about Deming and the PDCA (Plan, Do, Check, Act) cycle
- Just getting started with ChatOps? Learn some People Integration tips
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
#!/usr/bin/perl | |
# Nagios plugin for IPMI sensors status checking. | |
# | |
# Especially useful on Dell Poweredge servers, and others that | |
# implement the Intelligent Platform Management Interface (IPMI) | |
# interface. | |
# | |
# (C) Chris Wilson <[email protected]>, 2005-06-04 | |
# Released under the GNU General Public License (GPL) |
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
git clone git://git.fedorahosted.org/virt-manager.git | |
cd virt-manager | |
brew install intltool | |
brew install pygtk | |
python setup.py install | |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
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/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |