Y
Hacker News
new
|
ask
|
show
|
jobs
by
noloblo
754 days ago
how do you attach to a tmux session via ssh?
4 comments
CaptainOfCoit
754 days ago
Other answers tell you how to attach, but vital missing piece is that beforehand, don't "quit"/"exit" the session but "detach" from it instead, so you can attach later. By default the command is $PREFIX + D
link
n_jd
754 days ago
You SSH in and run `tmux attach`
link
praptak
754 days ago
ssh -t -A yourhost.com "tmux attach -d"
link
bpanon
754 days ago
tmux a
link