Link to home
Start Free TrialLog in
Avatar of adamant40
adamant40

asked on

How do I mount a NTFS share in Centos 6.2

Below novice linux guy. Trying to get NTFS share to mount in Centos 6.2 with write permission.
I have CentOS 5.7 working using the following method, can't get it to work in 6.2.
1. On CentOS vm, created user "pusher" set password to "password"
2. On W2K server 2003, created local user "pusher" set password to "password". Set as Administrator
3. On CentOS vm, as pusher I ran mkdir /mnt/SHARE
4. On Centos 5.7 vm, logged in as "pusher", in command line I type mount -t cifs -o username=puser,password=password //server/C$ /mnt/SHARE
5. I can then read and write to /mnt/SHARE

When I try this same thing in 6.2 I get read only. WHen I look at permissions it shows drwx-rx-x.  

Again, barely know what I'm doing. Just trying to copy an existing setup. If you could provide full solution using account names etc, it would be much appreciated.

End goal is to have user "pusher" on linux box able to read/write to mounted NTFS directory. again this is working as above in centos 5.7.

Greatly appreciate any help as I'm tearing what little hair I have left out.
Avatar of arnold
arnold
Flag of United States of America image

Try using rw option on the mount command
The share you are mounting appears to be an admin mount.

Drwx what username is reflected as the owner of the /mnt/share?
Run chmod 777 /mnt/share after the mount.
Avatar of ThomasMcA2
ThomasMcA2

The d in drwx means "directory." The rwx means the permissions are read/write/execute for the owner - that's why Arnold asked who is the owner. The rx means it's read/execute for the group that owns the file/directory. Running chmod as Arnold suggests will change it to read/write/execute for everyone.
ASKER CERTIFIED SOLUTION
Avatar of adamant40
adamant40

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
use the below command


mount -t cifs //shareip/sharename -o username=username,password='yourpassword' /your/mountpint
Avatar of adamant40

ASKER

My answer, although guess work, provided a working solution to my problem. Linux system can now write files into mounted NTFS directory. Could not get experts solutions to work, maybe implementation issue on my end. Appreciate their input as I learned something.