NavigationUser loginSpam?See spam posts on this site? If so, please don't reply to the spam! Instead, just report the URL to the webmaster. |
Can't access mounted NTFS partitionHey i tried as normal user: mkdir /windows and then as root: mount /dev/hdb5 /windows/music the drive is mounted but i cannot access it. The folder contents could not be displayed With: Desktop > Administration > Disks I would like to auto mount the drive on boot, but if don't know how, and i even can't access it. greetings |
Can't access mounted NTFS
man mount
Then look at the options for ntfs. By default, only root can access it. The 'owner' (uid) should probably be left alone (0 = root), but you may want to alter the gid (group ID) to make it a group that you want to access the partition, then change the 'umask' to give read permission to that group. Unless you're using the latest 'ntfs-3g' drivers, I wouldn't recommend activating write access. On UNIX systems, you need 'execute' permission on the directories to be able to see what's in them.
Usually 'umask' is set to 022 (you need to type the first 0 so the machine interprets it as an octal number). That leaves root's permissions alone, but removes write permission from group/others.