An old chestnut has just cropped up. Trouble with a new USB3.0 Transcend 8GB flash drive, formatted as DOS. Decided to reformat it and picked up instructions by browsing the forums.
This is what I did:
- Code: Select all
dd if=/dev/zero of=/dev/sdc bs=4096
parted /dev/sdc mklabel gpt # just a guess
parted /dev/sdc mkpart primary 2048s 8G
diskdrake # reformatted as ext4 -> ext3
e2label /dev/sdc1 Grumium
So far so good. Unplugged and plugged in the device and ran "df -h" to check that the new partition was visible.
As user lcl:
- Code: Select all
cd /run/media/lcl/Grumium
touch Grumium
Ouch! root access only, for writes. Nothing in fstab for the drive or another mounted USB3.0 drive which has no problems with hot-plugging. mtab shows that the "good" drive has no user option but the "bad" drive has user_xattr in the list.
I changed the disk label from gpt to msdos at some stage without affecting its behaviour.
What to do? How can I enable user write access?