- 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