in reply to Issuing commands to the background with telnet

As tachyon mentioned, nohup should work... I have used it before.. sample...
@lines = $t->cmd('nohup sleep 300 &'); print @lines; @lines = $t->cmd('jobs'); print @lines; $t->close;
output:
[1] 6962 [1] + Running nohup sleep 300 &