Question:

  • Is it possible to debug, when the target is on a remote host?

Example:

 # ddd --debugger /usr/bin/bashdb <sript-name> (on remote host)
link|improve this question

You might get a better answer on stackoverflow – Nathan Fellman Feb 21 '10 at 9:58
How can I migrate this question to stackoverflow? – Aaron Feb 21 '10 at 10:51
feedback

migrated from superuser.com Feb 22 '10 at 4:40

This question came from our site for computer enthusiasts and power users.

2 Answers

up vote 4 down vote accepted

Use gdbserver on the target (remote) machine as explained there. Then follow the config steps for gdb remote debugging (look up the gdb doc), typing the commands in the ddd console window (it's a pass through to the gdb prompt).

This could be something like this (if your link to the target were an USB to serial link, for instance):

(gdb) set remotebaud 115200
(gdb) target remote /dev/ttyUSB0

or

(gdb) target remote the-target:2345

to debug the gdbserver on IP the-target,using TCP port 2345.

link|improve this answer
feedback

What you can do is ssh into the remote host, and set the $DISPLAY variable to point to your local host, so that ddd's GUI opens there:

First lookup your current $DISPLAY:

mylocalhost:~> echo $DISPLAY
mylocalhost:1

Assuming that your current X-client is on port 1.

Now setup the remote $DISPLAY to point to your local machine:

mylocalhost:~> ssh remotehost
remotehost:~> setenv DISPLAY mylocalhost:1    

Now fire up ddd:

remotehost:~> ddd <whatever parameters you want>

Note that you may have to open up your local X-client to remote connections before you do this. This is how:

mylocalhost:~> xhost +
link|improve this answer
2  
this would be running ddd remotely, as opposed to running ddd locally and debugging a remote program. (just to clarify what this does. it may be a suitable alternative for the OP's purpose, whatever that may be.) – quack quixote Feb 22 '10 at 0:00
2  
ssh can also be set up to tunnel the X connection securely back to your display server. You can do this on the command line by specifying -o ForwardX11=yes – R Samuel Klatchko Feb 22 '10 at 8:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.