View Single Post
esthreel's Avatar
Posts: 259 | Thanked: 55 times | Joined on Apr 2010 @ Vilnius, Lithuania
#11
Originally Posted by Larswad View Post
@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.
Thanks, I will try this later. I am new to Linux (My goal if this works would be making this into QBW button.)

Update
It does work! Nice one Larswad.

Update 2
I have a working queen beecon mount button. Thanks again for the script.

P.S This is a killer feature, no, really battery dies faster than it takes to charge
__________________
Mobile History: Nokia N900, 6300, Siemens CX75, SX1, CX65, Nokia 3100, 8210.

Last edited by esthreel; 2010-11-13 at 23:13.