Common questions

  1. Does FUSE mount automatically adds your files?
  2. Are my files distributed along the p2p network?
  3. I’ve added files before running the daemon, and they don’t appear in the WebUI, why?
  4. How can I list all files I’ve already added?
  5. IPNS provides a unique address based on your public key, so when I do ipfs public name <ipfs-hash> I’m publishing a single website at my public address, right? Can I have multiple websites?
1 Like
  • Does FUSE mount automatically adds your files?

For me fuse is not working well (lag a lot)

  • Are my files distributed along the p2p network?

It depends on how your DHT replicates.
You can see it

ipfs swarm peers
ipfs bootstrap list

and control it to give your ipfs swarm data consistency

  • I’ve added files before running the daemon, and they don’t appear in the WebUI, why?

You find your “command line added files” in Files and repository in Companion

  • How can I list all files I’ve already added?

http://127.0.0.1:5001/ipfs/Qmexhq2sBHnXQbvyP2GfUdbnY7HCagH2Mw5vUNSBn2nxip/#/pins
or

ipfs pin ls -q --type recursive
  • IPNS provides a unique address based on your public key, so when I do ipfs public name <ipfs-hash> I’m publishing a single website at my public address, right? Can I have multiple websites?

Each “website” has it’s unique hash, so you have to use IPNS to keep changes updated.

Несколько IPNS

  1. ipfs key gen --type=rsa --size=2048 onemorekey
  2. ipfs name publish --key=onemorekey /ipfs/ipfs-hash
  3. ipfs key gen --type=rsa --size=2048 twomorekey
    ipfs name publish --key= twomorekey /ipfs/ipfs-hash
1 Like