@cryptotaxi247 / kubo / commits / 39510a1ad

Added additional note about killing the daemon

Mounting complained that the daemon was running.

Pretty Please Mark Darkly committed Apr 1, 2020 at 20:40 UTC 39510a1ad1f212af336a6f6adb92bd05659370e3
1 file changed +15 -1
docs/fuse.md
+15 -1
@@ -62,7 +62,21 @@ sudo chown <username> /ipfs
62 sudo chown <username> /ipns
63 ```
64
65 -Depending on whether you are using OSX or Linux, follow the proceeding instructions.
65 +Depending on whether you are using OSX or Linux, follow the proceeding instructions.
66 +
67 +## Make sure IPFS daemon is not running
68 +
69 +You'll need to stop the IPFS daemon if you have it started, otherwise the mount will complain.
70 +
71 +```
72 +# Check to see if IPFS daemon is running
73 +ps aux | grep ipfs
74 +
75 +# Kill the IPFS daemon
76 +pkill -f ipfs
77 +
78 +# Verify that it has been killed
79 +```
80
81 ## Mounting IPFS
82