lundi 17 juillet 2017

LAMP Jessie / Letsencrypt

echo 'deb http://http.debian.net/debian jessie-backports main' > /etc/apt/sources.list.d/jessie-backports.list
apt-get update
apt-get install python-certbot-apache -t jessie-backports
certbot --apache

# A la mano
certbot --apache
certonly

# Renew (90j)
certbot renew --dry-run
certbot renew

mercredi 12 juillet 2017

Tmux

Raccourcis :

Ctrl+B et

-  :set-window-option synchronize-panes #pour sync les terms

- X #pour kill (puis y/n)

- " #pour split horizontal

- % #pour split vertical

- Flèche du haut, droite, bas gauche #pour de balader dans les terms (sous Windows)

 

Pour personnaliser un peu "tmux" (~/.tmux.conf) :

# switch panes using Alt-arrow without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
-- Voir aussi --