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
| # /etc/apt/sources.list.d/pkg.ci.collectd.org.list | |
| # and before apt update: | |
| # gpg --recv-keys 3994D24FB8543576 | |
| # gpg --export -a 3994D24FB8543576 | apt-key add - | |
| deb http://pkg.ci.collectd.org/deb xenial collectd-5.6 |
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
| 1- Install some dependencies: | |
| yum install epel-release python-devel openssl-devel | |
| yum groupinstall "Development Tools" | |
| 2 - Update all packages | |
| yum -y update | |
| 3 - Install pip | |
| yum -y install python-pip | |
| 4 - Upgrade pip | |
| pip install --upgrade pip | |
| 5 - Install Shade |
| 1- Install some dependencies: | |
| apt-get install build-essential libssl-dev libffi-dev python-dev | |
| 2- Install pip: | |
| wget https://bootstrap.pypa.io/get-pip.py | |
| python get-pip.py | |
| 3- Install shade | |
| pip install shade |