Tagged Questions
3
votes
2answers
66 views
How can I backup a directory to NTFS while preserving Unix file attributes?
I want to make a backup of my home directory to an NTFS partition (an unfortunate limitation). However, when I last tried using just cp, the attributes (owner, etc) went away. How can I make a backup ...
2
votes
1answer
179 views
How do I mount an NTFS partition in /etc/fstab and prevent files/directories from receiving exec permissions when they're created?
I have an NTFS partition that I want to mount using /etc/fstab. I don't want any files to have executable permissions on this drive, so I wrote the following rule:
/dev/sda2 /media/sharedfolder ntfs ...
1
vote
1answer
89 views
Cannot execute files on another partition
On my system I have three partitions: one is shared between W7 and Linux Mint (NTFS), and the other two are OS-specific.
In my home directory I have created a symbolic link to another directory on ...
2
votes
1answer
361 views
Mounting a Windows partition without giving execute permission
How can I mount a Windows partition so that the files within it don't have execution permission? I mount a Windows partition using:
sudo mount /dev/sda3 win
win is a folder in my home dir.
This of ...
2
votes
1answer
434 views
pure-ftpd permission denied on external usb drive
I have a sheevaplug PC (Debian installed) that I'm trying to setup my personal FTP server with. So far I was able to set up auto mounting and installed pure-ftpd. I currently have autofs setup to ...
3
votes
2answers
365 views
How does the Unix file privilege system differ from that of Windows?
Related question: How does the Linux file system/organization differ from Windows?
I am somewhat familiar with how privileges work when it comes to files and directories - each entry has an owner and ...