Setting up TMUX
1. Install TMUX
sudo apt install tmux -y
1.1 Configuring TMUX
Session creation:
tmux new -s session1
Where the session name session1
can be written any.
Exit from the session using the keys:
CTRL+B->D
Return to session:
tmux attach -t session1
View working sessions:
tmux ls
Deleting a session:
tmux kill-session -t session1
Last updated
Was this helpful?