Questions tagged [osxfuse]

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

19 questions
5
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
  • 63
  • 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,276
  • 2
  • 15
  • 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
  • 59
  • 1
  • 7
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
  • 6,562
  • 6
  • 44
  • 51
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
  • 169
  • 8
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
  • 290
  • 4
  • 15
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:…
PJ.Hades
  • 1,788
  • 2
  • 18
  • 31
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
  • 5,490
  • 3
  • 47
  • 97
1
vote
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
  • 32,421
  • 21
  • 173
  • 232
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
  • 2,440
  • 5
  • 32
  • 54
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,445
  • 15
  • 26
0
votes
1 answer

osxfuse cgofuse mkdir input/output error

while using cgofuse i cant create dir inside mounted fs with os.Mkdir: panic: mkdir mp/testDir: input/output error Code: import ( "fmt" "os" "path/filepath" "syscall" "github.com/billziss-gh/cgofuse/fuse" ) type Ptfs struct…
0
votes
1 answer

osxfuse: how to clean cache?

How to clean cache in OSXFUSE? I'm using it to mount custom remote filesystem. And OSXFUSE caching file content. It is great to fast access for the same file - but sometimes I need to re-read file content from remote server.
denys
  • 2,227
  • 6
  • 27
  • 53
1
2