0

I installed yumi on ubuntu 13.04.When i run YUMI,it shows the following error.

Drive /dev/sdb1(New\\x20vo) is not mounted in /media.
please mount usb via file manager and restart YUMI.
Avinash Raj
  • 80,446

1 Answers1

1

I had the same issue with YUMI on openSUSE. It's a bug in YUMI. Workaround is to remount drive (as a root, use sudo or su) to /media subfolder as YUMI expects:

umount /dev/sdb1
mkdir /media/usbdisk
mount /dev/sdb1 /media/usbdisk

And then launch YUMI again.

Read about GNU/Linux command mount for more details.

rominf
  • 128