- Hacking Robots
- Posts
- Linux (Monday) - Started using TMUX
Linux (Monday) - Started using TMUX
So, for Linux Monday, I have TMUX.
tmux - is a powerful terminal multiplexer—it lets you split your terminal into multiple panes, run multiple programs, and detach/reattach sessions without losing progress.
You start a new tmux session by typing tmux
in the cli.
You know you use tmux by having a green bar at the bottom of the terminal with [0] 0:bash*
- That means you’re now inside a tmux session named 0.
Detach and Reattach session
Detach from the session
Press: Ctrl + b, then press d (This "detaches" the session but keeps it running in the background)
Reattach the session:
Type in the terminal: tmux attach
Next is Python Basics (Tuesday), tomorrow
.Let’s go!