I am working on using ROXTerm as a terminal for GNS3 (http://www.gns3.net). I have created a wrapper script to open ROXTerm and auto-press the Return key.
1 2 3 4 5 6 7 8 9 | #!/bin/bash #$1 = Device Name %d (R1) #$2 = Device Server %h (127.0.0.1) #$3 = Device Port %p (2101) roxterm --tab -n $1 -e telnet $2 $3 >/dev/null 2>&1 & xdotool sleep 0.4 #Wait for terminal to open and telnet to connect xdotool key Return #Send Return key to terminal |
When this script is executed from a terminal (gnome-terminal), it executes fine and ROXTerm opens fine. When I try and run the script from within the GNS3 Application, I am presented with the following error.
Error connecting to dbus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
The same error also appears if I call ROXTerm direct from within GNS3 (bypassing the wrapper script).
Any ideas on what would be causing this.
Many Thanks
Last edit: Daniel Lintott 2013-03-05