Is there a way to configure MacFUSE to keep a mounted volume alive if the remote host is set to break the connection due to inactivity? If there is no direct way to configure this, would there be a way to write a script to accomplish this?

link|improve this question

feedback

3 Answers

Try Fuse4x. It contains several fixes over MacFUSE. It is possible that this issue with sshfs is fixed there. You might ask fuse4x.org forum as well.

link|improve this answer
feedback

You can use "touch [filename]" just to touch file on the drive. Use this command in Apple script and it should work fine. I have not tested it yet. When i finish writing this script, all edit my post.

link|improve this answer
feedback

Here is something quick and dirty based on Maksim's answer. Copy and paste this code into Scipt Editor and save it as an application. If you need to quit it before the 900 minutes are up you'll have to force quit it.

repeat 900 times
    do shell script "touch path/to/file/dummyfile.txt"
    --sleep for 1 minute
    do shell script "/bin/sleep 60"
end repeat
link|improve this answer
By the way, just want to let you know it does not work. MacFUSE still times out. :( – Maksim May 17 '09 at 18:32
perhaps adding a dummy file then deleting it would work – KevMo May 18 '09 at 7:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.