mkdir /mnt/shareNext either...
Mount the share with user/pass:
smbmount //winpc/shared /mnt/share -o username=user,password=pass,rwOr mount the share without a user/pass (this is true if Everyone is still set)
smbmount //winpc/shared /mnt/share -o rwHopefully thats it. Now you can use the share. You cannot create symbolic links or chmod the system (this is restriction on the WinXP side).
If you wish to allow users on the linux side access to the share then you will need to alter the options. Adding in uid= or gid= to allow access to users or groups respectively by mounting the drive with there permissions. Here's an example:
smbmount //winpc/shared /mnt/share -o rw,uid=znxThis will mount the drive as if user znx had done it. Thus he will have rw access to the shared.
No comments:
Post a Comment