Create a brand new ed25519 key pair
ssh-keygen -o -a 100 -t ed25519
Get the pub key and put the result in your lxd default profile
cat ~/.ssh/ed25519.pub
lxc profile edit default
### **Southwest** | |
- Arizona | |
- New Mexico | |
### **Northwest** | |
- Washington* | |
- Oregon* | |
- Idaho | |
- Montana | |
- Wyoming |
bluetoothctl | |
power off | |
power on | |
agent KeyboardOnly | |
default-agent | |
pairable on | |
scan on | |
pair <mac address> | |
## the passkey will be printed, enter it on your keyboard ## | |
trust <mac address> |
#!/bin/bash | |
# get username and password | |
echo "Username?" | |
read UNAME | |
echo "Password?" | |
read UPASS | |
echo "This will delete ever repo in your dockerhub. Ctrl-C to end." | |
read | |
set -e |
CREATE ROLE owner LOGIN ENCRYPTED PASSWORD 'secret' CONNECTION LIMIT 3; | |
ALTER ROLE owner SET statement_timeout = 20000; | |
ALTER ROLE owner SET lock_timeout = 3000; | |
ALTER ROLE owner SET idle_in_transaction_session_timeout = 3000; -- v9.6+ | |
CREATE ROLE readwrite_users NOLOGIN; | |
CREATE ROLE readonly_users NOLOGIN; | |
CREATE DATABASE exampledb WITH OWNER owner ENCODING UTF8 LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8'; |
sudo pacman -Sy libvirt qemu-headless ebtables dnsmasq | |
sudo systemctl enable libvirtd.service | |
sudo systemctl enable virtlogd.service | |
sudo pacman -Sy docker-machine | |
yaourt -Sy minikube-bin kubectl-bin | |
yaourt -Sy docker-machine-driver-kvm2 | |
# start sans proxy | |
minikube start --vm-driver kvm2 | |
# start with proxy | |
minikube start --vm-driver kvm2 --docker-env http_proxy=http://proxy.cat.com:80 --docker-env https_proxy=http://proxy.cat.com:80 --docker-env no_proxy="localhost,127.0.0.1,192.168.39.1/24,10.96.0.0/12" |
Create a brand new ed25519 key pair
ssh-keygen -o -a 100 -t ed25519
Get the pub key and put the result in your lxd default profile
cat ~/.ssh/ed25519.pub
lxc profile edit default
https://github.com/juju-solutions/bundle-canonical-kubernetes/wiki/Proxy-configuration |
[ | |
{ | |
"city": "New York", | |
"growth_from_2000_to_2013": "4.8%", | |
"latitude": 40.7127837, | |
"longitude": -74.0059413, | |
"population": "8405837", | |
"rank": "1", | |
"state": "New York" | |
}, |
pip list | xargs pip show >output.txt |