0

I copied a PDF file on Ubuntu to my Windows-formatted flashdrive with

sudo cp file.pdf /mnt/sdb4/

(I am not sure if /mnt/sdb4/ was the path though).

Now I can't access the drive neither from Windows nor from Linux(it doesn't appear in My Computer). I don't want to format it as there were some important files on it. How can I fix it?

Alan
  • 255

1 Answers1

0

Run the below commands on terminal(ctrl+Alt+T) to mount your USB drive manually,

sudo mkdir /media/usb
sudo mount /dev/sdb1 /media/usb

Now the files in your USB would be found on /media/usb directory.

Avinash Raj
  • 80,446