Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.

SSH on jevois.

0 votes
Hi,

Can i do ssh on jevois?

If yes then can i build orbslam after ssh on it?

Thanks
asked Aug 9, 2018 in Programmer Questions by sharmarahul98 (320 points)

1 Answer

0 votes

no ssh, but you can either:

- login using the 4-pin serial port, see http://jevois.org/doc/Debugging.html about BOOT:login

- execute unix commands using the jevois command-line interface 'shell' command; for example, in the console of JeVois inventor, sending the command:

shell ls /usr

will run 'ls /usr' on jevois

But note that there is no compiler installed on JeVois. The main reason is that native compiling is very slow, and cross-compiling is much faster.

so, see our other answer regarding compiling orbslam.

answered Aug 20, 2018 by JeVois (46,580 points)
...