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 best solutions below
Related Questions in COCOA
- How do I customize NSOutlineView to have border color?
- How to generate request format for WCF web service method for Mac and iPhone
- How to Handle Command Line Prompt from a Cocoa App
- Change views inside NSSplitViewController
- CMYK NSImage get pixel data
- Reactive Cocoa Conditional Split ?
- Set background color of NSImageView with proportionally sized image
- Use NSWindow or NSViewController?
- Imports and includes in header files - when is it okay?
- How to prevent the app from automatically open a window when launched?
- Swift NSViewController responds to mouseDown event, but not keyDown event
- "stringByAddingPercentEncodingWithAllowedCharacters" replaces more characters than it should
- cocoa - what happen when close a window (by pressing the red X button)?
- Does it necessary to go back to main thread to update UI?
- WebView not responding to Keyboard input
Related Questions in SSHFS
- How can I mount a folder from an ubuntu virtual machine on ubuntu?
- How to mount and unmount a folder with sshfs and Python Subprocess?
- mounting remote network drive using sshfs
- Mounting remote file-system or directory into local Linux machine
- Can I prevent Mist downloading the blockchain?
- connect to drive through ssh hops
- dumping a mysql table to CSV (stdout) and then tunneling the output to another server
- How to use ssh keys for sshfs automount from mac to ubuntu
- Mercurial: hg-checklinks- recursive symlink over NFS/SAMBA/SSHFS network drive
- Remove filesystem with overlay changed bytes
- Creating Eclipse workspace over SSHFS
- How to bind volumes that were sshfs'd with the right permissions?
- Linux - Pass password inside script shell
- Sshfs, Textmate & Rails project, very slow
- Standard input redirection in "net use" command is not working
Related Questions in OSXFUSE
- Compiling NTFS-3G for OS X
- macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume - Apple M1 macOS 12.3
- Report case insensitivity in OSX (using OSXFuse)
- OSXFuse - How to distinguish open file from preview in Finder
- osxfuse: how to clean cache?
- osxfuse and sshfs on mac sierra. Error - mount_osxfuse: the file system is not available (255)
- brew tap caskroom/cask complains about git
- can not save microsoft office2011 files for mac by using osxfuse for developing
- Fetch Process Name With runningApplicationWithProcessIdentifier: and OSXFuse
- loggedfs on mac with osxfuse stuck
- libimobiledevice ideviceimagemounter iPhone example
- bindfs has started requiring sudo. How can I change it back?
- How to build OSXFUSE.framework in Cocoa?
- Delegate QuickLook preview generation to other QLPlugin
- how to move files from remote server to s3 at the command line
Related Questions in PACKAGEINSTALLER
- Failed to open dex file, unrecognized version number
- Programmatically install an apk in Android 7 / api24
- android 7: NullPointerException on APK installing with Runtime.getRuntime().exec
- How to test for PackageInstaller.STATUS_FAILURE_INCOMPATIBLE
- Issue with in-app update implementation on Android 13 Go without Google Play Services
- Why Android needs the whole package to update?
- Parallel Installation in Android using PackageInstaller
- PackageInstaller does not work on MIUI optimization mode
- Launch application after PackageInstaller finished (self) updating
- Package installer dialog dismissible?
- Restarting self-updating android app following user acceptance of the update
- Package installer doesn't ask to click on "Done" or "Open" after updating app programmatically
- Android PackageInstaller, re-open the app after it updates itself
- Android permission granting keep failing with massage "Package installer has stopped"
- Usage of 'public void uninstall (String packageName, IntentSender statusReceiver)' method of PackageInstaller
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)
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?
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