Acho que você está basicamente perguntando como fazer screen -x
in tmux
? Aqui está um exemplo:
# Start a new tmux session (with default session name "0").
tmux
# Start another tmux session (default name "1"), sharing windows with "0".
tmux new-session -t 0
# Start yet another tmux session (default name "2"), sharing windows with "0" (and "1").
tmux new-session -t 0
# Now you can attach to sessions with tmux attach-session -t <0|1|2>.
# Or you can omit the -t, and I think it attaches to one that isn't attached to yet.
# I don't know the exact rules for how it decides which free session to choose.
Se você não gostar dos nomes numéricos padrão ao criar uma nova sessão, poderá passar -s other_name
para nomear outra coisa.