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\di r2 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
I enabled "NFS for Client" under control panel and mounted the NFS on s:
mount -o fileaccess=777 \\ABC.corp.emc.com\dir1\di
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
load the smbclient. Check out the man page. You will be able to authenticate to the windows machine, otherwise, you only get read rights.
ASKER
what do you mean by load smbclient?
ASKER
here's what I get
'smbclient' is not recognized as an internal or external command,
operable program or batch file.
'smbclient' is not recognized as an internal or external command,
operable program or batch file.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
You need to make sure that the location is exported with read write access for your client's hostname on the unix server side.
ASKER
Thx