Skip to content

Instantly share code, notes, and snippets.

View jeanlouisferey's full-sized avatar

Jean-Louis FEREY jeanlouisferey

View GitHub Profile
@jeanlouisferey
jeanlouisferey / pkg.ci.collectd.org.list
Last active April 27, 2017 08:42
How to get MQTT Plugin in Collectd on Ubuntu Xenial (16.04)
# /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
@jeanlouisferey
jeanlouisferey / LXD_SSH_KEY.md
Last active August 26, 2024 23:53
How to create a LXD Container with your ssh key in it (and with ssh server in the container)
@jeanlouisferey
jeanlouisferey / gist:13a3275a8c2a4b4c186fbfb3a6d9df11
Last active June 14, 2018 15:45
How to install Shade, required by Ansible to manage Openstack, on Centos 7.2
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
@jeanlouisferey
jeanlouisferey / gist:54e17e26551859afecc7b94d1945210b
Last active April 30, 2018 09:32
How to install Shade, required by Ansible to manage Openstack, on Ubuntu
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