Tmux Terminal
Tmux Key Bindings
Tmux Terminal WindowTmux is a particular terminal window that allows you to manage multiple windows in your current terminal session. The best way to explain it is through examples. Starting TmuxTo start Tmux, you just type Tmux in your terminal window. At the bottom of your terminal window, you’ll notice that a number and a name have been assigned to your opened window tab. Let’s say you’re in an engagement and you want to run Nmap in one window, plus run Metasploit in another one, and so on. This is where Tmux is handy because you can work on multiple windows/sessions at the same time
root@kali:/# touch /etc/tmux.conf
root@kali:/# echo unbind C-b >> /etc/tmux.conf
root@kali:/# echo set -g prefix C-a >> /etc/tmux.conf
root@kali:/# echo bind C-a send-prefix >> /etc/tmux.conf
Comments
Post a Comment