larkl
Group: Members
Posts: 177
Joined: Sep. 2005 |
|
Posted: Feb. 18 2006,12:11 |
|
I think I can help with a text option. If you have the folder shared in XP, you should be able to get to it using smbclient. Try this in Xterminal:Code Sample | smbclient //pcname/sharename -Uusername%password | .
I use a script with the following to copy (backup) everything from XP to DSL:Code Sample | smbclient //pcname/sharename -Uusername%password -c "lowercase; prompt;recurse;mask *;mget *" |
This would copy everything with subfolders to whatever location you were in when you ran the script. All the stuff in quotes tellls it to ignore casing, turn off prompting for every file, recurse through sub-folder, and get everything.
|