osrf / srcsim

Space Robotics Challenge
Other
9 stars 3 forks source link

CloudSim - SSH File Listing Not Same as SimpleHTTPServer #227

Closed osrf-migration closed 7 years ago

osrf-migration commented 7 years ago

Original report (archived issue) by Rud Merriam (Bitbucket: rmerriam).


Am running CloudSim.

The web server shows:

#!c++

.catkin_tools/
build/
console.bash
devel/
install/
logs/
mystic.bash
mystic.log
mystic_console
mystic_mars
src/

An ls from SSH shows:

#!c++

drwxrwxr-x 8 ubuntu ubuntu 4096 May 23 22:30 ./
drwxr-xr-x 5 ubuntu ubuntu 4096 Jun  7 00:08 ../
drwxrwxr-x 4 ubuntu ubuntu 4096 May 23 22:30 build/
drwxrwxr-x 3 ubuntu ubuntu 4096 May 23 22:30 .catkin_tools/
drwxrwxr-x 6 ubuntu ubuntu 4096 May 23 22:30 devel/
drwxrwxr-x 6 ubuntu ubuntu 4096 May 23 22:30 install/
drwxrwxr-x 4 ubuntu ubuntu 4096 May 23 22:30 logs/
drwxrwxr-x 3 ubuntu ubuntu 4096 May 23 22:29 src/

My mystic* files are not appearing. 'Docker top' shows my code running so the file is there.

Stopped and started but got same results.

Downloaded all the keys again, grasping at straws.

Am I looking in the wrong place: ~/code/srcsim_ws

osrf-migration commented 7 years ago

Original comment by Rud Merriam (Bitbucket: rmerriam).


Oh, just thought. Maybe I need to do "docker exec -it bash

Getting overwhelmed by all the steps and tricks needed. Another 6 hours burned.

osrf-migration commented 7 years ago

Original comment by Ian Chen (Bitbucket: Ian Chen, GitHub: iche033).


yes I guess you figured it out. You'll need to do:

docker exec -it team_container bash 

in order to attach to your running docker container

osrf-migration commented 7 years ago

Original comment by Rud Merriam (Bitbucket: rmerriam).