This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ docker ps -a|grep weave | |
d0cda00b17f0 weaveworks/weave-npc:1.7.2 "/usr/bin/weave-npc" About a minute ago Exited (2) About a minute ago k8s_weave-npc.3839506_weave-net-opy7j_kube-system_4a43869a-9c4f-11e6-886e-b827ebfbf807_ca560d24 | |
ad6e51588e8b weaveworks/weave-kube:1.7.2 "/home/weave/launch.s" About a minute ago Exited (2) About a minute ago k8s_weave.4d28acb7_weave-net-opy7j_kube-system_4a43869a-9c4f-11e6-886e-b827ebfbf807_3525fd89 | |
4957b3bff61d gcr.io/google_containers/pause-arm:3.0 "/pause" 5 minutes ago Up 5 minutes k8s_POD.da6fe110_weave-net-opy7j_kube-system_4a43869a-9c4f-11e6-886e-b827ebfbf807_df3bb19c | |
$ docker logs -f 25271701eb76 | |
panic: standard_init_linux.go:175: exec user process caused "exec format error" [recovered] | |
panic: standard_init_linux.go:175: exec user pr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker logs a2e3864dab62 | |
2016-10-27 11:35:28.325156 I | etcdmain: etcd Version: 2.2.5 | |
2016-10-27 11:35:28.325443 I | etcdmain: Git SHA: bc9ddf2 | |
2016-10-27 11:35:28.325510 I | etcdmain: Go Version: go1.6 | |
2016-10-27 11:35:28.325582 I | etcdmain: Go OS/Arch: linux/arm | |
2016-10-27 11:35:28.325889 I | etcdmain: setting maximum number of CPUs to 4, total number of available CPUs is 4 | |
2016-10-27 11:35:28.326343 N | etcdmain: the server is already initialized as member before, starting as etcd member... | |
2016-10-27 11:35:28.328280 I | etcdmain: listening for peers on http://localhost:2380 | |
2016-10-27 11:35:28.329236 I | etcdmain: listening for peers on http://localhost:7001 | |
2016-10-27 11:35:28.329486 I | etcdmain: listening for client requests on http://127.0.0.1:2379 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A mettre dans .config/scame/scame-user.el : | |
(require 'powerline) | |
(require 'all-the-icons) | |
(require 'doom-themes) | |
(load-theme 'doom-one t) ;; or doom-dark, etc. | |
;; brighter source buffers | |
(add-hook 'find-file-hook 'doom-buffer-mode) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; init.el --- Emacs initialization file | |
;; Added by Package.el. This must come before configurations of | |
;; installed packages. Don't delete this line. If you don't want it, | |
;; just comment it out by adding a semicolon to the start of the line. | |
;; You may delete these explanatory comments. | |
(package-initialize) | |
(when (eq window-system 'x) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that +nicolaslamirault is my blockchain ID. https://onename.com/nicolaslamirault |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rm -fr ~/Apps/golang/src/github.com/docker/machine/libmachine | |
$ ls -l vendor/ | |
total 0 | |
$ GO15VENDOREXPERIMENT=1 go get github.com/docker/machine/libmachine | |
$ ls -l vendor/ | |
total 0 | |
$ ls ~/Apps/golang/src/github.com/docker/machine/libmachine | |
auth cert drivers engine examples host hosttest libmachine.go log mcnerror mcnflag mcnutils persist persisttest provider provision ssh state swarm version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd Perso | |
$ for i in `ls`; do if [ -d $i ]; then echo "\"~/Perso/$i\"" ; fi ; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Master IP | |
IP=$1 | |
# Output directory | |
DIR=$2 | |
echo "--> Generate CA.key" | |
openssl genrsa -out ${DIR}/ca.key 2048 | |
echo "--> Generate CA crt" | |
openssl req -x509 -new -nodes -key ${DIR}/ca.key -subj "/CN=${IP}" -days 10000 -out ${DIR}/ca.crt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun scame--gnus () | |
"Start gnus or gnus development version." | |
(when (eql 'gnus-dev scame-gnus-version) | |
(push (concat scame-gnus-dev-directory "/lisp") load-path) | |
(message "Load Gnus development version") | |
(require 'gnus-load)) | |
(gnus)) | |
*Messages* buffer : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[hekad] | |
maxprocs=10 | |
[LogstreamerInput] | |
log_directory = "/var/log" | |
file_match = 'local7\.log' | |
# decoder = "OABCloudDecoder" | |
[OABCloudDecoder] | |
type = "PayloadRegexDecoder" |