Skip to content

Instantly share code, notes, and snippets.

@tonycox
tonycox / bigtop on ubuntu
Last active February 12, 2021 10:18
how i install bigtop 1.1.0 on ubuntu 16.04
sudo apt-get update && apt-get upgrade
# install java (homedir - /usr/lib/jvm/java-8-oracle/)
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
# or use this to set as default -> sudo apt install oracle-java8-set-default
# install maven (homedir - /usr/share/maven)
unbind-key C-b
set-option -g prefix C-s
bind-key C-s last-window
bind s send-prefix
# large history
set-option -g history-limit 100000
# enable mouse mode
@jameskyle
jameskyle / certs.sh
Last active June 7, 2017 18:46
Generating CA, Server, & Client Certificates
#!/bin/bash
###############################################################################
# NOTICE: This script is intended to be used in conjunction with a openssl.cnf
# template such as this one:
# https://gist.github.com/jameskyle/8106d4d5c6dfa5395cef
# (C) Copyright 2014 James A. Kyle.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.