Results 1 to 6 of 6
Thread: File Permissions Slax6
|
Enjoy an ad free experience by logging in. Not a member yet? Register.
|
|
-
01-13-2010 #1
- Join Date
- Dec 2009
- Posts
- 53
File Permissions Slax6
I've tried chmod'ing them.. chmod o=rwx /mnt/folder I used 'o' because I can't seem to change the group permission for the folder.
The shared folder I am mounting is formatted in NTFS and the other in ext3, I can't change the permissions of either.
Can someone shed some light on this please?
Thanks!
-
01-14-2010 #2
- Join Date
- Dec 2009
- Posts
- 53
bump please.
-
01-14-2010 #3
You have to give ownership of ext3 mount point to Regular User.
Code:chown -R user_id:group_id mount_point
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
-
01-14-2010 #4
- Join Date
- Dec 2009
- Posts
- 53
Thanks!
I tried remounting the ntfs share with the option you suggested but still the same issue.
when they are not mounted; i can take ownership of the mount points, but as soon as i remount, they default back to owner:root group:root; and that includes the ext3 share mount point.
these are the lines in my fstab
Refills_Shared /mnt/Refills vboxsf rw umask=0 0 0
Personal_Share /mnt/My_Share vboxsf rw 0 0
Thank you.
-
01-15-2010 #5
- Join Date
- Dec 2009
- Posts
- 53
bump
-
01-15-2010 #6
- Join Date
- Dec 2009
- Posts
- 53
well as you guys can probably tell im a bit of a noob atm, so i did a bit of reading on mounting here .. tuxfiles[dot]org/linuxhelp/fstab.html
turns out i need to mount the volume as a user as it defaults to root, to do that i needed to specify the owner uid and gid.
the above lines should look like so..
Code:Refills_Shared /mnt/Refills vboxsf rw,uid=1000,gid=100 0 0 Personal_Share /mnt/My_Share vboxsf rw,uid=1000,gid=100 0 0
if you are googling and come across this thread (like i was doing franticly) then you are probably a noob like me.
open a shell and to find your group id and user id of the current shell session do..
Code:id -g id -u