Force Pty Allocation When Spinning Up Tmux Over Ssh
This article discusses two different approaches to fixing the ‘not a terminal’ error when attaching to a tmux session. Comment A offers alternative command options specific to Kali Linux, while Comment B provides instructions on how to configure the OpenSSH SSH client for pseudo-terminal allocation.
1 | kali -t tmux attach -t <target_session_name> |
or:
1 | kali -o RequestTTY=no tmux attach -t <target_session_name> |
situation:
1 | $ ssh 192.0.2.125 tmux attach |
The solution is to simply force pseudo-terminal allocation.
1 | $ ssh -t 192.0.2.125 tmux attach |
Define RequestTTY in OpenSSH SSH client configuration file to make this permanent.
1 | $ cat ~/.ssh/config |