This is a short guide to multiplexing in your terminal!
Installation
- Install
- $ sudo apt install tmux
- launch
- $ tmux
Core Commands
Here is a small list of the most useful set of commands. Just remember these and you shall be tmuxing around in no time!- Adding panes
- Add panes vertically
- ctl + b %
- Add panes Horizontally
- ctl + b "
- Moving around panes
- Move to the panes to the right
- ctl + b <Right>
- Move to the panes to the left
- ctl + b <LEFT>
- Move to the panes to the up
- ctl + b <UP>
- Move to the panes to the down
- ctl + b <DOWN>
- Closing Window
- Close current panes
- ctl + d
Tip!!!
- You can resize panes by pressing:
- $ ctl + b + <arrow button>
- Scroll:
- $ ctl + b [
- press < UP > or < DOWN >
- Quit
- $ q
Comments
Post a Comment