- Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Install prerequisites
brew install git hg
brew install osxfuse
(see Mac issues to troubleshoot common errors)- Install Go
- Follow go-ipfs installation instructions
go get github.com/jbenet/go-ipfs/cmd/ipfs
cd $GOPATH/src/github.com/jbenet/go-ipfs/cmd/ipfs
go install
ipfs init
(default configuration location is ~/.go-ipfs)
ipfs add <path to file or directory>
- note the resulting object hash
When running in mount mode, go-ipfs attempts to mount IPFS inside directories on your system with FUSE. This allows for referencing and accessing objects as if they were a part of your local filesystem.
ipfs mount
- see General Issues to troubleshoot common errors
- when working correctly, you should see
mounting ipfs at <mount path>
andmounting ipns at <mount path>
, followed by a blank line. This means it's running! Subsequent commands will need to be run at a separate terminal prompt
- Verify your object is available:
ls <mount point>/<object hash>
- This uses the system directory listing command NOT go-ipfs
- Running
ls
against a bad hash should result in "No such file or directory"
TODO
When running ipfs mount
, you may get errors similar to the following:
ipfs mount: exit status 64: mount_osxfusefs: /ipfs: No such file or directory
- Make sure the mounting directory exists
- Default values are
/ipfs
and/ipns
- Supply custom values with flags:
ipfs mount -f="/Users/myaccountname/ipfs" -n="/Users/myaccountname/ipns"
ipfs mount: exit status 71: mount_osxfusefs: failed to mount /ipfs@/dev/osxfuse0: Operation not permitted
- Make sure the mounting directory has correct permissions. For exmaple, mount in a location in your user directory
- System crash when using
ipfs mount
- Install the latest Fuse with
brew install osxfuse
- Install the latest Fuse with
- Brew error
osxfuse: osxfuse is already installed from the binary distribution and conflicts with this formula.
- Fuse may have been installed as part of another binary package
- Install latest Fuse for OS X including Preferences Pane. After installation is complete, navigate to System Preferences -> FUSE for OS X -> Click "Remove OSXFUSE"
- Try to
brew install osxfuse
again
getting started #1: say: "note the resulting hash value" or similar