View previous topic :: View next topic |
Author |
Message |
bLu3 n00b
Joined: 17 Aug 2004 Posts: 37 Location: vienna, austria /*.eu
|
Posted: Wed Feb 22, 2006 8:21 am Post subject: [solved] mouting - ownership and permissions |
|
|
hi!
i have got a ntfs sata disk in my system from a previous windows installation.
i mount it with
Code: | mount -t ntfs /dev/sdb1 /home/bluefoxx/win |
i am logged on with my user (which i added to every possible group for testing whether this is the problem)
as root i made a
Code: | chmod 666 /home/bluefoxx/win |
as long as the disk is not mounted to the mentioned dir i can access the folder. as soon as i mount it kde says "permission denies, no acces... bla bla" - whats wrong?!
also i have a sony cdrom drive which is not recognized (i can only fdisk it as /dev/hda in the shell) allthough its connected to an IDE port of my mainboard
Last edited by bLu3 on Thu Feb 23, 2006 9:56 am; edited 1 time in total |
|
Back to top |
|
|
Monkeh Veteran
Joined: 06 Aug 2005 Posts: 1656 Location: England
|
Posted: Wed Feb 22, 2006 10:08 am Post subject: |
|
|
-o umask=002 |
|
Back to top |
|
|
PaveQ Apprentice
Joined: 11 Feb 2005 Posts: 225 Location: Finland
|
Posted: Wed Feb 22, 2006 10:15 am Post subject: |
|
|
You have to give some permissions at mount-time, better to use fstab. |
|
Back to top |
|
|
bLu3 n00b
Joined: 17 Aug 2004 Posts: 37 Location: vienna, austria /*.eu
|
Posted: Thu Feb 23, 2006 9:40 am Post subject: |
|
|
thx i solved it with
Code: | mount -t ntfs -o umask=222 /dev/sdb1 /mnt/win" |
|
|
Back to top |
|
|
|