View Single Post
Posts: 385 | Thanked: 426 times | Joined on Dec 2009 @ Gothenburg, Sweden
#10
@esthreel: This is basic mounting knowledge for linux. You have to give rights to the user (since you run the filemanager as 'user').
you first need the id of your user and users group:

to find out, enter:

Code:
id user
and you will get the user's id. (You will probably get 29999 for both 'user' id and the 'users' group).

now, as root:

Code:
mount -t ntfs /dev/sda1 /media/ntfs -o uid=29999,gid=29999,utf8,dmask=027,fmask=137
Replace the 29999 with the id you got, if it was different of course.
Now, you should be able to access your files from the file manager.
Good luck.
 

The Following 13 Users Say Thank You to Larswad For This Useful Post: