> I want to back up my personal web pages that are on the earthlink server. I
> figure if I can mount them, then psync can do the rest.
>>I want to back up my personal web pages that are on the earthlink
>>server. I figure if I can mount them, then psync can do the rest.
[quoted text clipped - 3 lines]
> $ mkdir /tmp/debian
> $ mount_ftp ftp://ftp.us.debian.org/debian/
That's kind of the hard way unless you really want to do it from the Terminal.
In the Finder, just choose Go -> Connect to Server, paste in the URL
and hit return and the FTP disk is mounted.
From the Terminal, just use osascript -e 'tell app "Finder" to geturl
"ftp://ftp.us.debian.org/debian/"', except for reasons known only to
Apple, the Finder does not admit to support the geturl suite,
although it must do to since it can be configured as the Internet
Config FTP helper.
>The only catches seem to be that:
>
[quoted text clipped - 6 lines]
>
>Aside from that little wrinkle, this seems to work well...
Neither of these are an issue if the Finder mounts it.
BTW, one little catch is that it is read-only.
Enjoy,
Peter.

Signature
<http://www.stairways.com/> <http://download.stairways.com/>
Chris Devers - 10 Sep 2004 03:40 GMT
>>> I want to back up my personal web pages that are on the earthlink server.
>>> I figure if I can mount them, then psync can do the rest.
[quoted text clipped - 6 lines]
> That's kind of the hard way unless you really want to do it from the
> Terminal.
Right, be he implies that he's trying to script it, so it seemed like a
two-word shell command was the approach he was looking for. Getting the
Finder seems cumbersome in this context.
>> * it seems like the Finder can't browse this directory
>> * I can't figure out how to unmount it... :-)
>
> Neither of these are an issue if the Finder mounts it.
Right, but again, I'm working on the assumption that he's trying to get
this done with shell tools, not the GUI. If you can mount a filesystem
by poking at a command line tool, intuitively it seems like it should be
much less overhead than bringing in the Finder & AppleScript machinery.
> BTW, one little catch is that it is read-only.
For backups, that's probably okay though.

Signature
Chris Devers cdevers@pobox.com
http://devers.homeip.net:8080/blog/
np: 'Bank Of Boston Beauty Queen'
by The Dresden Dolls
from 'A Is For Accident'
> Looks like this will work:
>
> $ mkdir /tmp/debian
> $ mount_ftp ftp://ftp.us.debian.org/debian/
> /tmp/debian/
> $ ls -la /tmp/debian/
Thanks Chris and Peter for the help.
I couldn't get this to work on ftp-www.earthlink.net. I think it is a
login id problem. mount_ftp uses the same login id that you have on
the mac which in my case is not my email.
mount_ftp seems to finish but then drops out with server not
responding. I made a directory and used ftp on the command line to
login and mget to copy everything. Then I ran psync.
Thank again,
Joe.
Chris Devers - 10 Sep 2004 19:16 GMT
> $ mkdir /tmp/debian
>> $ mount_ftp ftp://ftp.us.debian.org/debian/ /tmp/debian/
[quoted text clipped - 5 lines]
> id problem. mount_ftp uses the same login id that you have on the mac which
> in my case is not my email.
Have you tried embedding the login in the URI ?
$ mount_ftp ftp://user:pass@ftp-www.earthlink.net /Local/path
It seems like that ought to work ...
If this is a dead end & you're looking for a better approach, ncftp is
also nice...

Signature
Chris Devers