OESF Portables Forum

General Forums => General Discussion => Topic started by: ShiroiKuma on July 04, 2006, 11:45:59 am

Title: Root Owns Sda1
Post by: ShiroiKuma on July 04, 2006, 11:45:59 am
I think I've seen the solution somewhere already, but can't figure it out.

When I mount a USB stick, or a CF that is vfat formatted, it's owned by root, so I can't delete any files/directories as a zaurus user, only via su.

In fstab I have
Code: [Select]
/dev/sda1   /mnt/sda1   auto    noauto,owner      0    0I've also tried
Code: [Select]
/dev/sda1   /mnt/sda1   auto    noauto,user     0    0Doesn't seem to make a difference.

How can I mount it, so that the regular user can change content?
Title: Root Owns Sda1
Post by: Da_Blitz on July 05, 2006, 03:44:49 am
Code: [Select]
/dev/sda1   /mnt/sda1   auto    noauto,uid=1000,gid=1000     0    0
or
/dev/sda1   /mnt/sda1   auto    noauto,umask=000     0    0
Title: Root Owns Sda1
Post by: ShiroiKuma on July 05, 2006, 08:21:51 am
Thanks.