Useful Qnx Tips : [ssh] [scp] [ddd] [libraries]
Downloads

USEFULL QNX TIPS:

SSH:
Using the SSH protocol you can log into storm.
ssh storm -l[username]
[top

SCP:
Using the SCP protocol you can securely copy file to and from storm.
Copy files to storm:
scp [file] [username]@storm.ee.ucr.edu:[directory on storm]
// if [directory on storm] is left blank the file is copied to your default (~) directory
Copy a directory to storm:
scp -r [directory] [username]@storm.ee.ucr.edu:[directory on storm]
// if [directory on storm] is left blank the file is copied to your default (~) directory
Copy files from storm:
scp [username]@storm.ee.ucr.edu:[path to file/file] [local directory]

// if [local directory] = . the file is copied to your current directory
Copy a directory from storm:
scp -r [username]@storm.ee.ucr.edu:[path to directory] [local directory]

// if [local directory] = . the file is copied to your current directory
[top]

DDD Debugger:
In order to use this powerful graphical front end to the gdb dubbuger you must execute the following commands:
ln -s ../opt/X11R6 /usr
XPhoton &
ddd &

For more information about gdb for QNX (the backend to ddd).
[top]

Libraries:
Use the following command to see what libraries a particular executable needs:
objdump -x <binaryname> | grep "NEEDED"
[top]

DOWNLOADS:
File Splitter
If your data is too large you can use this freeware tool to chop your files up, you can also chop your files for transport on floppy disk.
Ce-Cert Testing Procedure
Please email me any revisions you may have to this document.

[top]