- Does FUSE mount automatically adds your files?
- Are my files distributed along the p2p network?
- I’ve added files before running the daemon, and they don’t appear in the WebUI, why?
- How can I list all files I’ve already added?
- 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
- ipfs key gen --type=rsa --size=2048 onemorekey
- ipfs name publish --key=onemorekey /ipfs/ipfs-hash
- ipfs key gen --type=rsa --size=2048 twomorekey
ipfs name publish --key= twomorekey /ipfs/ipfs-hash
1 Like