Active Topics

 


Reply
Thread Tools
Posts: 59 | Thanked: 15 times | Joined on Feb 2008
#1
I was trying to share the data on my removable (ext3) sd card with my computer; in other words, I wanted to be able to read and write to the same files on the sd card from either the tablet or the computer. The problem is with the permissions: files get created with the user "user" on the tablet, and with the user "belanger" on my computer, and that causes problems. Is there some way to get the tablet to use uid and gid 1000? (I think that would take care of the problem. Or is there another workaround?)
 
Posts: 183 | Thanked: 115 times | Joined on Nov 2007 @ Seattle, WA
#2
The easiest way I can think of is to just format it as FAT32, but that's probably not the answer you want.
 
Posts: 59 | Thanked: 15 times | Joined on Feb 2008
#3
Ouch! Not really, but thanks for the thought.
 
Posts: 477 | Thanked: 118 times | Joined on Dec 2005 @ Munich, Germany
#4
You could use the same gid on both computers. Would that be a solution?
 
tso's Avatar
Posts: 4,783 | Thanked: 1,253 times | Joined on Aug 2007 @ norway
#5
optionally, turn on RW for "others".

its not like something like this will stop anyone from getting to the data if they get hold of the SD card anyways...
 
Posts: 59 | Thanked: 15 times | Joined on Feb 2008
#6
How would I change the gid used by user on the tablet? (Or would I have to set up a user with the proper gid on my computer?)

Making everything readable and writable by everyone would work, I suppose. Thanks.
 
Posts: 21 | Thanked: 7 times | Joined on Feb 2008
#7
If you want to read and write on your sd-card as uid:gid 29999:29999 (corresponding to user:users on your tablet) you might want to consider to mount your sd-card indirectly via nfs.

put this into /etc/exports on your pc
Code:
/media/nokiafake 127.0.0.1(rw,sync,no_subtree_check,anonuid=29999,anongid=29999,all_squash)
then you mount the sd-card (assuming it is assigned to /dev/sdc1) to /media/nokiafake

mount /dev/sdc1 /media/nokiafake

you don't have matching access right yet, but if you nfs-mount /media/nokiafake to /media/nokiareal

mount -t nfs localhost:/media/nokiafake /media/nokiareal

the ownership is set to 29999:29999, you can read and write...

ok, this is an ugly workaround but it seems to work here and can be simplified by putting a record into /etc/fstab.
 
Reply


 
Forum Jump


All times are GMT. The time now is 20:28.