From the command line:
man -t <manpage> | open -f -a Preview.app
-t
outputs as postscript, which Preview automatically converts to PDF.
docker images | awk '/^[a-z]/ { print $1}' | sed 's/.*/docker pull &/' | sh |
# remove /usr/local/bin from /etc/paths | |
export PATH="$PATH:s/\/usr\/local\/bin://" | |
# add homebrew to environment | |
if [ -x /usr/local/bin/brew ] | |
then | |
eval "$(/usr/local/bin/brew shellenv)" | |
elif [ -x /opt/homebrew/bin/brew ] | |
then | |
export PATH="/usr/local/bin:/usr/local/sbin${PATH+:$PATH}" |
Thanks to https://apple.stackexchange.com/questions/367995/how-to-block-updates-to-mac-os-x-catalina
Instructions for macOS 10.14 Mojave
Disable (ignore) Catalina upgrade notifications:
run sudo /usr/sbin/softwareupdate --ignore "macOS Catalina"
Remove Catalina badge icon from system preferences:
run defaults delete com.apple.preferences.softwareupdate LatestMajorOSSeenByUserBundleIdentifier
and then open System Preferences > Software Update
patch file to implement workaround from https://github.com/oracle/vagrant-boxes/issues/178 | |
--- /opt/vagrant/embedded/gems/2.2.6/gems/vagrant-2.2.6/plugins/providers/virtualbox/driver/meta.rb.orig 2019-10-14 12:01:06.000000000 -0500 | |
+++ /opt/vagrant/embedded/gems/2.2.6/gems/vagrant-2.2.6/plugins/providers/virtualbox/driver/meta.rb 2020-01-18 14:17:54.000000000 -0600 | |
@@ -64,6 +64,7 @@ | |
"5.1" => Version_5_1, | |
"5.2" => Version_5_2, | |
"6.0" => Version_6_0, | |
+ "6.1" => Version_6_1, | |
} | |
Graylog uses mongo:3
in its docker-compose
image, which automatically pulls the latest production version of MongoDB, but does not set the feature compatibility version. This will cause databases created in 3.2 or earlier to fail to start in 3.6.
Per https://docs.mongodb.com/manual/reference/command/setFeatureCompatibilityVersion/, this will show the current running compatibility version and upgrade from 3.4 to 3.6:
docker exec -it mongo_container /bin/bash
mongo
db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } )
db.adminCommand( { setFeatureCompatibilityVersion: "3.6" } )
exit
exit
Occasionally on older versions of OS X, connecting to a remote system via VNC will result in a "Black Screen" that is non-responsive. To fix this, kill the loginwindow
process:
$ ps ax | grep loginwindow
83 ?? Ss 0:00.89 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
$ sudo kill 83
loginwindow will automatically restart and the login screen will appear.
Thanks to Mac Mini World!
brew install --build-from-source <formula>
, where <formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doing brew install <formula>
)?#!/bin/sh | |
set -ex | |
mkdir -p /tmp/repro-5346 | |
cd /tmp/repro-5346 | |
cat > Gemfile <<EOF | |
source 'https://rubygems.org' | |
require 'json' |