wget https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zipunzip 8-07-14_MegaCLI.zip| I1112 09:22:13.318824 18806 initconfiguration.go:116] detected and using CRI socket: /var/run/dockershim.sock | |
| I1112 09:22:13.318956 18806 interface.go:431] Looking for default routes with IPv4 addresses | |
| I1112 09:22:13.318959 18806 interface.go:436] Default route transits interface "eth0" | |
| I1112 09:22:13.319010 18806 interface.go:208] Interface eth0 is up | |
| I1112 09:22:13.319027 18806 interface.go:256] Interface "eth0" has 1 addresses :[10.0.2.15/24]. | |
| I1112 09:22:13.319035 18806 interface.go:223] Checking addr 10.0.2.15/24. | |
| I1112 09:22:13.319038 18806 interface.go:230] IP found 10.0.2.15 | |
| I1112 09:22:13.319041 18806 interface.go:262] Found valid IPv4 address 10.0.2.15 for interface "eth0". | |
| I1112 09:22:13.319044 18806 interface.go:442] Found active IP 10.0.2.15 |
DevOps started out as "Agile Systems Administration". In 2008, Andrew Shafer did a talk called "Agile Infrastucture" addressing issues around involving more of the company in the same disciplines as programmers.
In 2009, Patrick Debois created "DevOpsDays" conference to help to bring it to light. However, it wouldn't begin to trend until about 2010, when people would begin to describe it as a standalone discipline.
Today, DevOps goes beyond just developers, systems administration and infrastructure, its about [dev, ops, agile, cloud
| #!/bin/bash | |
| ####################################################################### | |
| # This is a helper script that keeps snapraid parity info in sync with | |
| # your data and optionally verifies the parity info. Here's how it works: | |
| # 1) Checks for size 0 .nfo files (plex) | |
| # 2) Calls diff to figure out if the parity info is out of sync. | |
| # 3) If parity info is out of sync, AND the number of deleted or changed files exceed | |
| # X (each configurable), it triggers an alert email and stops. (In case of | |
| # accidental deletions, you have the opportunity to recover them from |
| // ==UserScript== | |
| // @name Goodbye new FB ads | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Remove facebook ads | |
| // @author Maurizio Carboni | |
| // @match https://www.facebook.com/* | |
| // @grant none | |
| // ==/UserScript== |
$ uname -r
windows_update_toggle.bat v10.1 final
~ one script to rule them all!
~ block build upgrades and/or automatic updates without breawking Store downloads and Defender protection updates
~ there is a lot of focus on Defender updates working independently, unlike any other updates "management" solution
~ ifeo safe blocking with no destructive changes of ownership, deleting files, removing tasks, or over-blocking
~ toggle everything from the Desktop right-click context menu!
but wait, there is more:
~ hide/unhide/install update lists with counter at the Desktop right-click context menu!
Previous update toggle batch suite scripts have been overwritten on pastebin, but will still be available here:
The purpose of this document is to make recommendations on how to browse in a privacy and security conscious manner. This information is compiled from a number of sources, which are referenced throughout the document, as well as my own experiences with the described technologies.
I welcome contributions and comments on the information contained. Please see the How to Contribute section for information on contributing your own knowledge.
| ######################################################################### | |
| ### USAGE: rdiff path/to/left,path/to/right [-s path/to/summary/dir] ### | |
| ### ADD LOCATION OF THIS SCRIPT TO PATH ### | |
| ######################################################################### | |
| [CmdletBinding()] | |
| param ( | |
| [parameter(HelpMessage="Stores the execution working directory.")] | |
| [string]$ExecutionDirectory=$PWD, | |
| [parameter(Position=0,HelpMessage="Compare two directories recursively for differences.")] |
| #! /usr/bin/python | |
| # Dispatch - synchronize two folders | |
| import os | |
| import filecmp | |
| import shutil | |
| from stat import * | |
| class Dispatch: |