You mean on login? Have a look at launchd Agents: http://developer.apple.com/technotes/tn2005/tn2083.html
You'll want something like the following saved at ~/Library/LaunchAgents/com.gmail.baigsabeeh.launchSSHFS.plist: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http:// www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.gmail.baigsabeeh.launchSSHFS</string> <key>ProgramArguments</key> <array> <string>/usr/bin/sshfs</string> <string>[EMAIL PROTECTED]:remote_dir</string> <string>/mountpoint</string> </array> <key>RunAtLoad</key> <true/> </dict> </plist> Hamish On Thu, Jun 5, 2008 at 1:05 AM, tuxdizzle <[EMAIL PROTECTED]> wrote: > > I have installed the latest version of MacFuse and the compiled and > installed the command line version of sshfs. I'm using it to access > my desktop, which has my videos and music files. Everything is over > local network and works fine, except I need it to be mounted on > startup. Is there a way I can mount my home dir on my desktop over > sshfs on my Macbook Pro on startup automatically? (I use public key > verification so password input is not an issue.) > > tux > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "macfuse-devel" group. To post to this group, send email to macfuse-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/macfuse-devel?hl=en -~----------~----~----~----~------~----~------~--~---