DEV Community

Discussion on: How To Code On Your Smartphone (With A Terminal)

Collapse
 
josiasaurel profile image
Josias Aurel

I already have it installed . It won't work

Thread Thread
 
khauri profile image
Khauri

Hey I did some testing and can confirm that tcpsvd doesn't seem to come with newer installations of termux, but it is still available form busybox.

After installing busybox you're meant to run tcpsvd (and any of its other commands) by putting busybox in front of it.

busybox tcpsvd [...options]

If you prefer you can also run this command

ln -s busybox $PREFIX/bin/tcpsvd

Which will allow you to run tcpsvd without prefixing it with busybox like normal.

Thread Thread
 
josiasaurel profile image
Josias Aurel

Thanks for your help anyway