Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
When working on a server, you may want to run code that continues executing even after you disconnect. tmux
is a powerful terminal multiplexer that allows you to do just that. This tutorial will guide you through using tmux
to run your code, detach, and check back later.
tmux
Sessionssh user@your-server-address
tmux
Session Start a new tmux
session with a specific name:tmux new -s mysession
Replace mysession
with a descriptive name for your session.Inside the tmux
session, navigate to the directory containing your code and run your script as usual. For example:
python my_script.py
For a Julia module, you can start the Julia REPL and include your script:
julia
Then, run your module or script inside the Julia REPL, e.g.:
include("my_script.jl")
tmux
SessionTo leave the tmux
session without stopping your script:
Ctrl+b
, then d
. This detaches the session but keeps it running in the background.[detached from session mysession]
Now, you can safely close your terminal or disconnect from the server.
tmux
SessionWhen you reconnect to the server, you can reattach to your tmux
session to check on your script:
tmux list-sessions
Example output:mysession: 1 windows (created Thu Jan 19 10:00:00 2025) [80x24]
This command shows all active tmux
sessions along with their names and statuses.tmux attach -t mysession
tmux
Commandstmux kill-session -t mysession
tmux
sessions simultaneously by giving each a unique name when starting:tmux new -s another_session
tmux switch -t session_name
tmux
session, you can split the screen into multiple panes:
Ctrl+b
, then "
Ctrl+b
, then %
Ctrl+b
followed by the arrow keys to navigate between panes.tmux
?tmux
is an essential tool for any developer working on remote servers. With this tutorial, you’re now equipped to run your code efficiently and without interruption!