mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-17 23:16:11 +08:00
Added additional note about killing the daemon
Mounting complained that the daemon was running.
This commit is contained in:

committed by
GitHub

parent
248153fc71
commit
39510a1ad1
16
docs/fuse.md
16
docs/fuse.md
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user