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?
lsblk
command. Finally post it's output on your question. – Avinash Raj May 05 '14 at 10:09lsblk
command from the OP's question? – Avinash Raj May 05 '14 at 10:35sudo mount /dev/sdb1 /media/usb
command in your question along with the input. – Avinash Raj May 05 '14 at 10:45sudo mount/dev/sdb1 /media/usb
, output:mount: you must specify the filesystem type
– Alan May 05 '14 at 10:46sudo mount/dev/sdb1 /media/usb
, it'ssudo mount /dev/sdb1 /media/usb
– Avinash Raj May 05 '14 at 10:47