Things I Needed To Know
2009-Dec-19, Saturday 01:56 pmProblem: USB flash drive is mounting as read-only, making it useless.
Solution:
0. get root permissions, su root, or run everything through sudo
1.
2.
3.
4.
Be happy, you can write again!
Solution:
0. get root permissions, su root, or run everything through sudo
1.
umount
the drive2.
df -h
to find your drive3.
fsck -a /dev/sdb
4.
mount -t vfat /dev/sdb /home/user/folder
Be happy, you can write again!