TMUX (part-2) Installation and Basics
In the last Article ( tmux-Terminal Multiplexer Intro - Part-1 ), we just discussed what is tmux, comparison with terminals and how this can be helpful in our day to day activities. Today, lets discuss about the Installation and some basics stuff about the tmux. Installation- So, if you are using mac then install tmux as below: $ brew install tmux If using ubuntu then you can install using "apt-get" as below: $ sudo apt-get install -y tmux To verify, if the installation is completed successfully by checking the version- $ tmux -V tmux 2.6 If you want then you can also do the installation using the source code. Starting tmux: Start tmux just typing using command "tmux": $...