On 6/2/07, Cameron Simpson <cs@xxxxxxxxxx> wrote:
| I connect to a MS Windows network server with Konqueror at an address | like the following: | | smb://myusername@xxxxxxxxxxxxxx/myuser$ | | How can I create a mirror of a local directory in the remote server? I | tried rsync, but I was unsuccessful. Rsync will want filesystem access. Try (untested): mkdir /mnt/uni mount -t cifs -o user=myusername //server.uni.edu/myuser\$ /mnt/uni and then: rsync ... localdir/. /mnt/uni/foo/bah/. adjust as you find necessary.
Thanks, Cameron. It works fine! Paul