Does anyone have a tutorial or how-to for mounting a Windows network share of a directory with full read/write privileges? I am running Ubuntu 10.04.
I want to be able to back-up data from my linux box to a share on a Windows machine. I need something that is mounted so I can use rsync from the command prompt.
I've followed how-to's at
http://industriousone.com/blog/mount...s-shares-linux and
https://wiki.ubuntu.com/MountWindowsSharesPermanently. If I attempt
I receive
Code:
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
I have successfully amended the hosts file for if I perform
all of my shares for that PC are listed
A credentials file is present in the form of
username=daniel
password=remainsAsecret
the path to that file is properly stated in my fstab entry
For either of the tutorials mentioned above, my fstab entry is correct. I use
Code:
//xp2/music /mnt/music_xp2 cifs credentials=/home/daniel/.smbcredentials,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
or
Code:
//xp2/Music /mnt/music_xp2 cifs exec,credentials=/home/daniel/.smbcredentials 0 0
In either case I am still receiving permission denied.
Can anyone lend assistance?