Questions tagged [osxfuse]

OSXFUSE is a successor to MacFUSE, which has been used as a software building block by dozens of products

21 questions
7
votes
3 answers

macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume - Apple M1 macOS 12.3

This issue is driving me crazy. I keep getting an error: "macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume " where ... is my mount point when i run sshfs --version i clearly dont have the correct FUSE version coming up,…
6
votes
0 answers

osxfuse and sshfs on mac sierra. Error - mount_osxfuse: the file system is not available (255)

So this seems to have been discussed on stackoverflow but still it doesn't solve my problem and hence here is the question: 1. Logged into mac NOT as a root user. But I do have administrative privileges. 2. Installed Fuse for macos (3.7.1)…
Singo
  • 83
  • 2
  • 6
3
votes
1 answer

Report case insensitivity in OSX (using OSXFuse)

I created a case-insensitive file system in OSX (using OSXFuse). But when I tried to check the case insensitiveness of my volume, using NSURLVolumeSupportsCaseSensitiveNamesKey, it reported it as case sensitive. My question is, what do I need to do…
trungdinhtrong
  • 2,604
  • 2
  • 17
  • 26
3
votes
1 answer

How to include OSXFUSE and SSHFS into my Cocoa app Distribution?

I'm creating a Cocoa Application using SSHFS but I want to make a package installer when user install, it will install OSXFuse and SSHFS to their macbook. How can I do that?
NTNT
  • 541
  • 1
  • 7
  • 18
2
votes
0 answers

bindfs has started requiring sudo. How can I change it back?

For the projects I'm working on, I need to symlink a bunch of directories from multiple places on the same drive. I'm doing this via osxfuse and bindfs, and I have a startup script on my Mac that automatically runs all of my mount scripts to symlink…
luvcraft
  • 69
  • 1
  • 10
2
votes
1 answer

Compiling NTFS-3G for OS X

After noticing that the recommended installation of NTFS-3G is the five years old 2010.10.2 because it was conveniently available as .pkg, I wanted to give a try at compiling latest 2015.3.14 from official website. Please note that I do not want to…
Cœur
  • 37,241
  • 25
  • 195
  • 267
1
vote
1 answer

brew tap caskroom/cask complains about git

When I run brew tap caskroom/cask I get conflicting error messages. Warning: git 2.15.1 is already installed Error: Git must be installed and in your PATH! Previously I ran brew link --overwrite git when brew asked me too. Git seems to be…
Selah
  • 7,728
  • 9
  • 48
  • 60
1
vote
1 answer

loggedfs on mac with osxfuse stuck

I would like to log every syscall of a specified directory and I've found this repository https://github.com/rflament/loggedfs It creates a virtual filesystem with fuse and log everything in it, just like I want. I tried to port it on mac but it…
edelangh
  • 311
  • 1
  • 12
1
vote
0 answers

Fetch Process Name With runningApplicationWithProcessIdentifier: and OSXFuse

I am using OSXFuse and get the processID of the application that wants to read a file in the FUSE Filesystem on Mac. Using the OSXFuse [GMUserFileSystem currentContext], we fetch the process ID and now I would like to get the application name from…
Anish
  • 390
  • 5
  • 16
1
vote
2 answers

FUSE calls getattr on special paths on Mac

I'm writing my own toy file system with FUSE (OSXFUSE on Mac OS X and libfuse on Linux). Each time I mount the file system, FUSE calls getattr on some special paths, as the log shows: [debug] trfs_getattr: called on path=/ [debug] trfs_getattr:…
pjhades
  • 1,948
  • 2
  • 19
  • 34
1
vote
1 answer

How to build OSXFUSE.framework in Cocoa?

I already installed OSXFUSE from https://github.com/osxfuse/osxfuse but i don't know how to build OSXFUSE.framework to include it in the application. I also download the sample source from OSXFuse but it cannot build and show the error: …
NTNT
  • 541
  • 1
  • 7
  • 18
1
vote
1 answer

OSXFuse - How to distinguish open file from preview in Finder

I'm using OSXFuse https://osxfuse.github.io/ And wanted to know if I can tell apart the following operations: File is opened by the user File is previewed in Finder My problem is that for both cases readFileAtPath is called, and seemingly with the…
Mugen
  • 8,301
  • 10
  • 62
  • 140
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

libimobiledevice ideviceimagemounter iPhone example

I've scoured and cannot find an example of this. The question is how to bundle libimobiledevice into a macOS app and access iPhone photos. I found this answer using osxFuse's CLI but I don't want to try to bundle Brew packages in my app and then run…
Mikeumus
  • 3,570
  • 9
  • 40
  • 65
0
votes
1 answer

Delegate QuickLook preview generation to other QLPlugin

I'm developing a QuickLook Preview Plugin for macOS. I'm trying to generate a preview for remote files (osxfuse Virtual File System) and thus I have registered my QLPreview plugin as public.jpeg extension. Now, macOS asks my QLPreview Plugin for…
mixtly87
  • 1,675
  • 15
  • 32
1
2