[gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Jerônimo Backes
I googled a lot but wasn't able to find any answer on how to do this. umask=000 doesn't work with reiserfs. Thanks in advance. ___ Você quer respostas para suas perguntas? Ou você sabe muito e quer

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Boris Fersing
2006/9/12, Jerônimo Backes [EMAIL PROTECTED]: I googled a lot but wasn't able to find any answer on how to do this. umask=000 doesn't work with reiserfs. Thanks in advance. Hi, reiserfs handles *nix permissions, just chmod 777 -R /your/mountpoint/ while your partition is mounted HTH.

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Mark
On 12/09/06, Jerônimo Backes [EMAIL PROTECTED] wrote: I googled a lot but wasn't able to find any answer on how to do this. umask=000 doesn't work with reiserfs. Thanks in advance. Hi, Simply use chmod on the mounted partition. chmod 777 /path/to/something It will be retained on the next

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread karsten
I think personally the best is to use the pmount package, but I am not sure how secure that is, for *public* machines. You would only have to enter the drive in fstab, and the pmount.allow file, and mount the partition with pmount /dev/$DEV greets, k On Tue, 2006-09-12 at 14:27 -0300, Jerônimo

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Neil Bothwick
On Tue, 12 Sep 2006 19:33:56 +0200, Boris Fersing wrote: reiserfs handles *nix permissions, just chmod 777 -R /your/mountpoint/ Don't use -R, that will alter permissions on every file in the filesystem. -- Neil Bothwick ALZHEIMER.COM found . . . Out of . . . something . . signature.asc

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Jerônimo Backes
Simply use chmod on the mounted partition. chmod 777 /path/to/something Thanks a lot, it worked as you said. It will be retained on the next mount. I thought this wouldn't happen, so I made this noob question. Thanks again.

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Boris Fersing
2006/9/12, Neil Bothwick [EMAIL PROTECTED]: On Tue, 12 Sep 2006 19:33:56 +0200, Boris Fersing wrote: reiserfs handles *nix permissions, just chmod 777 -R /your/mountpoint/ Don't use -R, that will alter permissions on every file in the filesystem. Isn't that exactly what he wants ?

Re: [gentoo-user] How to mount a reiserfs partition with write permissions to all users?

2006-09-12 Thread Neil Bothwick
On Tue, 12 Sep 2006 21:47:51 +0200, Boris Fersing wrote: reiserfs handles *nix permissions, just chmod 777 -R /your/mountpoint/ Don't use -R, that will alter permissions on every file in the filesystem. Isn't that exactly what he wants ? (something like umask=000) I thought he