start new:
tmux
start new with session name:
tmux new -s myname
| sudo aptitude -y install nginx | |
| cd /etc/nginx/sites-available | |
| sudo rm default | |
| sudo cat > jenkins | |
| upstream app_server { | |
| server 127.0.0.1:8080 fail_timeout=0; | |
| } | |
| server { | |
| listen 80; |
| " this is the configuration file for linux and mac systems | |
| " symlink this to your home folder as .vimrc | |
| " It loads ~/.vim/vundle and loads all modules from ~/.vim/bundle. | |
| " It then loads ~/.vim/vimrc_main which has the main | |
| " configuration that works across all systems. | |
| source ~/.vim/vundle | |
| source ~/.vim/vimrc_main | |
| " Put platform specific stuff here. |
| # !/bin/bash | |
| # Copyright (c) 2011 Float Mobile Learning | |
| # http://www.floatlearning.com/ | |
| # Extension Copyright (c) 2013 Weptun Gmbh | |
| # http://www.weptun.de | |
| # | |
| # Extended by Ronan O Ciosoig January 2012 | |
| # | |
| # Extended by Patrick Blitz, April 2013 |
| [10:12:54] Francisco Ferreira: http://robots.thoughtbot.com/post/2641409235/a-tmux-crash-course | |
| [10:15:53] Andrzej Grzesik: set -g utf8 on | |
| set -g status-utf8 on | |
| set -g default-terminal "screen-256color" | |
| setw -g automatic-rename | |
| setw -g mode-mouse on | |
| set -g mouse-select-pane on | |
| set -g history-limit 30000 |