TMUX
Published with SteemPeakhome previous

SUMMARY
03 TMUX ................................................................ 2019-08
11 baseline ............................................................ 2019-11 new
01 tutorials ........................................................... 2019-08
02 installation ........................................................ 2019-08
05 configuration ....................................................... 2019-08
06 documentation ....................................................... 2019-11 update
04 keybindings ......................................................... 2019-09
08 sessions ............................................................ 2019-11 update
07 windows ............................................................. 2019-09
10 panes ............................................................... 2019-11 new
09 sources ............................................................. 2019-11 new
#11
11 BASELINE
10 $ tmux new -s session_name ...................................... new session
20 ctrl-bc ................................................... create new window
30 ctrl-b, ................................................... rename the window
40 ctrl-d ................................................... detach the session
50 $ tmux ls ..................................................... list sessions
60 $ tmux attach ................................................ attach session
$ tmux list-commands
$ tmux list-keys
10 PANES
ctrl-b% ......................................................... vertical split
ctrl-b" ....................................................... horizontal split
ctrl-o ............................................................ switch panes
09 SOURCES
homepage : github.com/tmux/tmux
documentation : github.com/tmux/tmux/wiki
thoughtbot.com : thoughtbot.com/blog/a-tmux-crash-course
08 SESSIONS
........... $ tmux new -s maintenance|monitoring|etc| ...................... new
ctrl-bs ... $ tmux ls | list-sessions ............................ list & switch
ctrl-bd ... $ tmux detach ............................................... detach
............$ tmux attach -t maintenance|monitoring|etc| ................ attach
ctrl-bs ....$ tmux switch -t maintenance|monitoring|etc| ................ switch
$ man tmux
07 WINDOWS
$ tmux .............................................................. start tmux
^bc ............................................................ create a window
^d ............................................................. delete a window
^b, ............................................................ rename a window
^bc ...................................................... create another window
^bn ^bp ............................................. switch to the other window
^bw ........................................................... list all windows
^b% ^b" ..............[my keybindings: ^v ^h].................... split a window
06 DOCUMENTATION
$ tmux list-commands
$ tmux list-keys
tmux-wiki : github.com/tmux/tmux/wiki
manpages : man.openbsd.org/OpenBSD-current/man1/tmux.1
the tao of tmux : leanpub.com/the-tao-of-tmux/read
05 CONFIGURATION
$ vim ~/.tmux.conf
# remap prefix to
set -g prefix C-a
unbind C-b
bind C-a send-prefix
github.com/samoshkin/tmux-config
04 KEYBINDINGS
^bc ...............................................................create window
^b, .............................................................. rename window
^0 ... 9 ......................................................... switch window
source $ man tmux
03 TMUX
homepage : github.com/tmux/tmux
documentation : github.com/tmux/tmux/wiki
02 INSTALLATION
$ apt-cache search tmux screen
$ apt-cache show tmux
# apt install tmux
homepage : github.com/tmux/tmux
documentation : github.com/tmux/tmux/wiki
01 TUTORIALS
linuxtutorial
linuxtutorial
thoughtbot.com : thoughtbot.com/blog/a-tmux-crash-course