Automount Reiserfs external drive RW

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
telic
Level 3
Level 3
Posts: 188
Joined: Thu Mar 22, 2007 7:48 am

Post by telic »

I put a spare Maxtor IDE HDD into an ADS Tech external USB drive chassis, reformatted it from NTFS to ReiserFS, plugged it in to Mint, and... read only!? Bummer.

Bianca sees my USB HDD as /dev/sda1 and mounts it at /media/usbdisk, so to look at the access permissions...

Code: Select all

cd /media
ls -l usbdisk
Which reveals that only root has write permission...

drwxr-xr-x 4 root root 112 2007-04-20 00:44 usbdisk

So, first I change the Group ID, to my Mint login ID (telic)...

Code: Select all

sudo chown :telic usbdisk
The ls -l command shows the change of Group access...

drwxr-xr-x 4 root telic 112 2007-04-20 00:44 usbdisk

Next I change the Group permissions to include write...

Code: Select all

sudo chmod g+w usbdisk
Now ls -l shows...

drwxrwxr-x 4 root telic 112 2007-04-20 00:44 usbdisk

That's it. Bianca auto-mounts the USB HDD, and I can read and write and all. The mount directory comes and goes as the drive is hot-plugged/unplugged, but my access permissions persist.

Writes are still denied to Other users, but you could also change that using chmod.

Does this process work for you?


------
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 3 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Locked

Return to “MATE”