Link to home
Create AccountLog in
Avatar of learningunix
learningunix

asked on

unix mount

I have unix server ABC.corp.com

I enabled "NFS for Client" under control panel and mounted the NFS on s:

mount -o fileaccess=777  \\ABC.corp.emc.com\dir1\dir2  s:

I can go to s: and access the files but I cannot modify it. looks like they are read only files after mounting it. How can I have write access
Avatar of Wolfhere
Wolfhere
Flag of United States of America image

load the smbclient. Check out the man page. You will be able to authenticate to the windows machine, otherwise, you only get read rights.
Avatar of learningunix
learningunix

ASKER

what do you mean by load smbclient?
here's what I get

'smbclient' is not recognized as an internal or external command,
operable program or batch file.
ASKER CERTIFIED SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
You need to make sure that the location is exported with read write access for your client's hostname on the unix server side.
Thx