Questions tagged [macfuse]

27 questions
1
vote
1 answer

FUSE filesystem on Mac (osxfuse) - how to tell OS I don't support exteneded attributes and forks?

Is there any option to set on init that my filesystem doesn't support resource forks and extended attributes? So that I don't get bombarded with getattr for "._*" files requests, as well as getxattr/setxattr requests for all files? Also, is there…
rincewind
  • 1,103
  • 8
  • 29
1
vote
1 answer

FUSE: do I need to check for file/dir existence in create/mkdir?

I'm implementing a FUSE-based filesystem (osxfuse, actually, since it's on Mac), and I noticed that before create or mkdir call getattr is always called, and if a node already exists, create/mkdir does not get called. The question is, can I rely on…
rincewind
  • 1,103
  • 8
  • 29
1
vote
0 answers

Including FUSE sshFS functionality in my PyQt app

I am writing an application that wants to mount a remote file system over SSH. Instead of writing a custom SSH browser, I am tempted to -somehow- bundle MacFUSE (or something) with the application. Then my application could just use the bundled…
dave
  • 572
  • 7
  • 16
0
votes
0 answers

AWS Elastic Beanstalk create failing with brew dependencies

I am attempting to create an AWS Elastic Beanstalk environment using the EB CLI, however I am running into an issue when using the command eb create environment-name the error is ERROR: FileNotFoundError - [Errno 2] No such file or directory:…
0
votes
1 answer

ruby fusefs-osx gem can't mount correctly

I installed the fusefs-osx 0.7.0 gem but the sample scripts don't mount. I tried hello.rb and yamlfs.rb. The script doesn't abort, and the mount point's Finder icon changes to a mounted disk, but I can't access the contents. If I try "ls", I get…
Kelvin
  • 20,119
  • 3
  • 60
  • 68
0
votes
0 answers

Advance Custom field post tile and image url

I am using elementor pro with advanced custom field pro. I have Created Fron end posting for the user. I have created 3 fields Post tile -> Event Name, Post Category - > Day and Event Invitation link, What I want is when user put and submit URL it…
0
votes
1 answer

Is something like MacFUSE possible within iOS apps?

I'd like to have virtual files in an iOS app, so I can use [NSData dataWithContentsOfURL:] to have a NSData (and a pointer to the bytes eventually) of a large table that I do not want to store on disk, but rather compute parts of when needed. Any…
Martijn Thé
  • 4,674
  • 3
  • 29
  • 42
0
votes
1 answer

GCD block triggering EXC_BAD_ACCESS on invoke

I'm making a non-garbage-collected MacFUSE Cocoa application, inside of which I want to use a GCD block as a delegate. However, my program crashes during the invocation of the block, leaving only an EXC_BAD_ACCESS in its trail. My program uses a…
zneak
  • 134,922
  • 42
  • 253
  • 328
0
votes
2 answers

How can I get an account ID from a username on Mac OS X?

I'm using MacFUSE to create a cool filesystem. I'd like to set the NSFileOwnerAccountID and NSFileGroupOwnerAccountID attributes for the files on it, but the underlying framework I use only gives me user names. How can I get an account ID from an…
zneak
  • 134,922
  • 42
  • 253
  • 328
0
votes
1 answer

Mac OS X creating .Spotlight-V100 and .Trashes at MacFUSE mountpoint on root volume

I'm creating a MacFUSE filesystem for adding HFS write support to Mac OS X Snow Leopard, and it mostly works, but the system creates .Spotlight-V100 and .Trashes directories on the mountpoint in /Volumes before the volume is actually mounted, so…
Jesús A. Álvarez
  • 2,958
  • 23
  • 22
0
votes
1 answer

How to associate a 4-char OSType / NSFileHFSTypeCode with a particular UTI

I am writing a MacFuse plugin, and would like finder to use the appropriate icons & launch the appropriate app when a file is opened. It is not possible for me to add an extension to the file, so my only other option in Snow Leopard is the…
Padraig
  • 1,569
  • 2
  • 15
  • 21
0
votes
1 answer

TextMate/Macfusion combo for mounting projects over SSH

Here is my workflow: I use Macfusion to mount a server over SSH, and then edit the root directory of the project in TextMate (using mate /Volumes/server/projectdir). I have a plug in installed that disables refreshing on refresh. This works ALMOST…
Sam Lee
  • 9,913
  • 15
  • 48
  • 56
1
2