
#layout save default #makes regions saved when you re-attach a session Terminator

C^b D gives you a choice what session you wish to detach.C^p c switch to previous window(aka tab).C^b c create new window(aka tab), creates a full size window on top of your panes.Tmux attach -t 0 #attach to terminal 0 session Managging sessions tmux new -s database #start new session named 'database' Install Tmux Install - Linux via package managerĪuto completion wget -q -O ~/.bash_completion_tmuxĮcho "source ~/.bash_completion_tmux" > ~/.bashrc # currently looking at 'tab 1' of tmux window(tab) '0'. pane - is a rectangular part of a window that runs a specific command, e.g.window(tab) - is a single screen covered with panes, each session may have many separate windows that you can switch between.session - is a set of windows, plus a notion of which window is current,there may be multiple sessions on a server,.The server holds sessions and the windows and panes within them:

This allows you to have multiple terminal commands and applications running visually next to each other without the need to open multiple terminal emulator windows. Each pane will contain its own, independently running terminal instance.

Within one terminal window you can open multiple windows and split-views (called “panes” in tmux lingo). Simply speaking, tmux acts as a window manager within your terminal1 and allows you to create multiple windows and panes within a single terminal window. Tmux is a so-called terminal multiplexer. Tmux Sessions, windows(aka tabs) and panes
