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.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

/media directory on my machine

0 votes
Hi,

With no camera and no other devices connected I have a /media/jack/JEVOIS entry in my system.

When I plug the camerea in I get a /media/jack/JEVOIS1 entry,  Is that correct?

I ask this because when I run jevois-usbsd stop.  I get an error messages as below.

Any ideas what to do?

Jack

jack@jack-ubuntu:~$ jevois-usbsd start

Cannot access /dev/ttyACM0 -- is JeVois plugged in? -- ABORT

jack@jack-ubuntu:~$ jevois-usbsd start

Camera usbsd command ok but /media//JEVOIS not found -- ABORT

jack@jack-ubuntu:~$ sudo jevois-usbsd start

Camera usbsd command ok but /media//JEVOIS not found -- ABORT

jack@jack-ubuntu:~$ sudo jevois-usbsd stop

eject: unable to find or open device for: `cdrom'

Error releasing /media//JEVOIS -- ABORT
asked Oct 9, 2018 in Programmer Questions by jack.johnson.pub (230 points)

1 Answer

0 votes

something went wrong, maybe you tried to save to SD when there was no SD and so now a regular directory /media/jack/JEVOIS was created. You should delete it, usually in /media you only want directories created on the fly by the system as you insert hardware. For that:

- disconnect flash card, jevois camera, etc

- rmdir /media/jack/JEVOIS       (may need sudo)

- you may have to reboot your host so it won't want to use JEVOIS1 anymore

from this error you mentioned: "Error releasing /media//JEVOIS -- ABORT"

it looks like your username is not being detected by our scripts. It should have your username (jack) between "media" and "JEVOIS". We used the unix command logname to get the user name, but maybe we shoud use variable $USER instead. Can you please report what you get when you type, in a terminal:

logname

and

echo $USER

answered Oct 11, 2018 by JeVois (46,580 points)
...