[TxMt] howto disabe automatic file backup
Allan Odgaard
throw-away-1 at macromates.com
Mon Apr 3 22:42:36 UTC 2006
On 4/4/2006, at 0:30, Trevor Harmon wrote:
>> More likely a file system specific setting, as that would make
>> more sense.
> Hmm, would that actually solve the problem in my case? That is, it
> appears to be an issue with the mount protocol, not the actual file
> system.
But the file system is unlikely going to report itself as hfs. Try
change the path below to a file on your mounted remote file system
and paste it in Terminal:
gcc -x c <<EOF - && ./a.out
#include <sys/mount.h>
main () {
struct statfs sfsb;
statfs("/Volumes/Macintosh HD", &sfsb);
puts(sfsb.f_fstypename);
}
EOF
You may want to “rm a.out” afterwards.
More information about the textmate
mailing list