Skip to content

Instantly share code, notes, and snippets.

View h2ouw8n4's full-sized avatar

Derek Muensterman h2ouw8n4

View GitHub Profile
@h2ouw8n4
h2ouw8n4 / install libappindicator3-1.sh
Last active December 31, 2021 08:36
Install libappindicator3-1 when missing on Debian Bullseye
wget http://ftp.us.debian.org/debian/pool/main/libi/libindicator/libindicator3-7_0.5.0-4_amd64.deb
wget http://ftp.us.debian.org/debian/pool/main/liba/libappindicator/libappindicator3-1_0.4.92-7_amd64.deb
sudo apt install ./libindicator3-7_0.5.0-4_amd64.deb
sudo apt install ./libappindicator3-1_0.4.92-7_amd64.deb
@h2ouw8n4
h2ouw8n4 / config
Created July 20, 2021 20:11
SSH Config example for .ssh Directory
Host utility
HostName 192.168.1.1
User admin
IdentityFile ~/.ssh/mykey.pem
Host database
HostName 192.168.1.2
User admin
IdentityFile ~/.ssh/mykey.pem
# Install Node Version Manager
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh > ~/nvmInstall.sh
chmod +x ~/nvmInstall.sh && ~/nvmInstall.sh && source ~/.profile
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
nvm install --lts --latest-npm
rm ~/nvmInstall.sh