Reputation: 1772
Hi I am connecting to a remote unix and running a command there that supposed to run in the background.
The problem is that when I am connecting with ssh it works fine but if I am connecting with telnet the program which I run stops running after a few seconds.
the program which I execute is a program that starts another program in the background. It seems (guessing) that the failure happens when the first program is about to run the other program in the background.
has anyone encountered something like that ever?
Upvotes: 1
Views: 572
Reputation: 393039
Job control isn't available over your telnet. This can be
Upvotes: 1