I cannot copy films from NTFS partition on my computer (with Ubuntu) to ext2 hard drive installed in player "Dune". Please help.
|
I suspect your NTFS partition gets automatically mounted at boot. If we were speaking about i.e. a USB disk you attach to your computer, the permissions would be set correctly when you click on the volume in your file manager. So there is probably an entry in your ... someWeirdId /media/name ntfs auto,stuff,stuff,stuff 0 0 change this to: ... someWeirdId /media/name ntfs auto,stuff,stuff,stuff,uid=1000,gid=1000,umask=0000 0 0 This gives ownership of the mounted volume to the user with uid 1000, which would be the first user in your system. Enter Setting umask to 0000 should grant all permissions to every user anyway. NTFS and FAT cannot store posix permissions, like they are used by Linux (actually i'am not sure about NTFS, but I wouldn't know how). However you can use the program fuse-posixovl to mount a directory (!) on any partition (regardless if posix permissions are suipported or not) to another directory (or the same directory if you feel like it). posixovl will create a file on the real filesystem storing the posix permissions you set in the other mountpoint. This way you get full posix functionality on any non-posix file system. To be able to change file ownership, etc. you should run posixovl as root (via sudo).
As I said source and target directories can theoretically be the same, but try it with different directorys first, just to be sure. The permissions will not be effective unless posixovl is used. So you can't protect your data when you attach the disk to friends computer or something. The files will be accessible anyway. |
||||
|
|
|
You can
run |
|||||||||
|