Added additional note about killing the daemon

Mounting complained that the daemon was running.
This commit is contained in:
Pretty Please Mark Darkly 2020-04-01 20:40:56 -07:00 committed by GitHub
parent 248153fc71
commit 39510a1ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,21 @@ sudo chown <username> /ipfs
sudo chown <username> /ipns
```
Depending on whether you are using OSX or Linux, follow the proceeding instructions.
Depending on whether you are using OSX or Linux, follow the proceeding instructions.
## Make sure IPFS daemon is not running
You'll need to stop the IPFS daemon if you have it started, otherwise the mount will complain.
```
# Check to see if IPFS daemon is running
ps aux | grep ipfs
# Kill the IPFS daemon
pkill -f ipfs
# Verify that it has been killed
```
## Mounting IPFS