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
2
kali -t tmux attach -t <target_session_name>

or:

1
2
kali -o RequestTTY=no tmux attach -t <target_session_name>

situation:

1
2
3
$ ssh 192.0.2.125 tmux attach
open terminal failed: not a terminal

The solution is to simply force pseudo-terminal allocation.

1
2
3
$ ssh -t 192.0.2.125 tmux attach
[...]

Define RequestTTY in OpenSSH SSH client configuration file to make this permanent.

1
2
3
4
$ cat ~/.ssh/config
Host 192.0.2.125
RequestTTY yes

Comments