Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I formatted a USB flash drive as FAT in Ubuntu, copied some files, made it bootable, and now it only mounts as read-only.

If I stick the same drive in Windows or Mac, it is writable, so it's not the hardware switch on the drive itself.

  • How do I make this permanently mount as writable.
  • What could have caused this bizarre behavior (so it doesn't happen again)?
share|improve this question

2 Answers

up vote 2 down vote accepted

No idea what was the cause. Reformatted (from Linux) and all works well now.

share|improve this answer

Double check the file system on the device (preferably chkdsk in Windows, or dosfschk under *nix). It would also help to see the output of #mount so we can see how the filesystem is mounted. You could also try this:

sudo umount /path/to/device
sudo mount -t <type> -w /path/to/device /mount/path
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.