You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// start a tmux session
tmux new-session -s session_name
// attach to the most recently created session
tmux attach
// Once in a session, you can run a program as normal. To detach from the session, press ctrl and b at the same time. Then, press d.
You can now safely log off the server and your program will continue executing. When logging back into the server, run "tmux attach" again to access your most recently created session.
// Deleting a tmux session
tmux kill-session -t session_name
The text was updated successfully, but these errors were encountered:
// start a tmux session
tmux new-session -s session_name
// attach to the most recently created session
tmux attach
// Once in a session, you can run a program as normal. To detach from the session, press ctrl and b at the same time. Then, press d.
You can now safely log off the server and your program will continue executing. When logging back into the server, run "tmux attach" again to access your most recently created session.
// Deleting a tmux session
tmux kill-session -t session_name
The text was updated successfully, but these errors were encountered: