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?
How to include OSXFUSE and SSHFS into my Cocoa app Distribution?
141 views Asked by NTNT At
1
There are 1 answers
Related Questions in COCOA
- In what context can we use an unqualified #selector() expression in Swift?
- How can I trigger macOS system gamepad API based on a value received from iOS app through core bluetooth
- Using sort descriptors in Outline View
- NSTableView to NSOutlineView Drag & Drop not accepting drop
- How to remove horizontal line in bottom of section NSTableView?
- CGSRegionRef: How is an arbitrary region represented as union of rects?
- Listen for Touch Events on MacOS (Trackpad)
- Window "yanks" when moving
- Writing NSFilePromiseProviders to pasteboard blocks app on quit
- Basic ImGui program doesn't render, leaks memory and crashes
- NSTokenField suggestion using context menu in swift
- How to link multiple text views to a single text storage in TextKit 2
- I would like to know why I’m not getting IBOutlets connected in an App’s window
- How to make a custom event loop in Cocoa?
- Why is restoreWindow(withIdentifier:state:) called after applicationDidFinishLaunching(_:)?
Related Questions in SSHFS
- How might a VSCode extension expose a remote repo to the local filesystem?
- Is there any project that enables YouCompleteMe to connect to a ycmd running on a remote server?
- sshfs does not seem to work in Colab Enterprise notebook
- Windows sript to automate SSHFS connection at user login login
- sshfs metrics.sock: bind: operation not permitted
- Standard input redirection in "net use" command is not working
- git - git status slow on remote machine after executing git status on local machine which mounts remote using sshfs
- Sending a password to sshfs inside a GUI front end
- Permission denied for writing in sshfs with Docker
- Autocreate folder for sshfs mount without root permissions
- How to make wildcards take effect when to mount mobile phone with sshfs?
- Script to automatically mount sshfs shares is not executed by KDE autostart
- ssh, remote file, docker
- Trying to send passwrod via expect script in sshfs
- Unable to mount SSHFS directory with rw permission
Related Questions in OSXFUSE
- macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume - Apple M1 macOS 12.3
- libimobiledevice ideviceimagemounter iPhone example
- Delegate QuickLook preview generation to other QLPlugin
- osxfuse cgofuse mkdir input/output error
- brew tap caskroom/cask complains about git
- Report case insensitivity in OSX (using OSXFuse)
- osxfuse and sshfs on mac sierra. Error - mount_osxfuse: the file system is not available (255)
- osxfuse: how to clean cache?
- bindfs has started requiring sudo. How can I change it back?
- loggedfs on mac with osxfuse stuck
- Fetch Process Name With runningApplicationWithProcessIdentifier: and OSXFuse
- FUSE calls getattr on special paths on Mac
- can not save microsoft office2011 files for mac by using osxfuse for developing
- how to move files from remote server to s3 at the command line
- How to include OSXFUSE and SSHFS into my Cocoa app Distribution?
Related Questions in PACKAGEINSTALLER
- How can I install python packages in a virtual environment?
- Package Installer on Samsung crashes when updating my app
- "Package installer keeps stopping" Error on android 14 when installing my .apk
- Not getting status updates from PackageInstaller
- Issue with in-app update implementation on Android 13 Go without Google Play Services
- How to test for PackageInstaller.STATUS_FAILURE_INCOMPATIBLE
- Background execution not allowed receiving intent action package added - Packageinstalledreceiver
- Package Installer not working in Android 12
- Installing app with android.permission.INSTALL_PACKAGES permission and root
- What Is packageappinstaller for android? What other kind of apps are available?
- Restarting self-updating android app following user acceptance of the update
- Package installer dialog dismissible?
- Android PackageInstaller and Debug APKs
- Android package installer failed silently
- Making an "Uninstall app" button in android?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Installing OSXFuse means simply copying several files go global locations, which requires admin privileges. Its not that simple actually, since there's a handful of stuff to copy, but its very doable.
What you need to do is hold a copy of the following files with your app, and copy it to the destination using the installer (you must have it before running your app itself or it may crash).
List of files/folders to copy:
Note that you will also have to create some symbolic links in
/usr/local/lib/and in/usr/local/lib/pkgconfig/. If you actually get to doing it and need help, let me know.Using PackageMaker that is rather simple.
In order to get a copy of the mentioned files and folders, you could install OSXFuse and copy it yourself from the mentioned locations.
Reference: https://github.com/osxfuse/osxfuse/wiki/FAQ#12-what-is-osxfuse-versiondmg