From 11bfb3c93b9a69031cb536b07916d562e680d5e8 Mon Sep 17 00:00:00 2001 From: swedneck <40505480+swedneck@users.noreply.github.com> Date: Fri, 21 Jun 2024 16:56:58 +0200 Subject: [PATCH] docs: "error mounting: could not resolve name" (#10449) based on https://github.com/ipfs/kubo/issues/2383#issuecomment-187867923 and https://github.com/ipfs/kubo/issues/2383#issuecomment-1436069101 --- docs/fuse.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/fuse.md b/docs/fuse.md index 2b64a7856bb..7744a0d457b 100644 --- a/docs/fuse.md +++ b/docs/fuse.md @@ -147,5 +147,15 @@ sudo umount /ipfs sudo umount /ipns ``` +#### Mounting fails with "error mounting: could not resolve name" + +Make sure your node's IPNS address has a directory published: +``` +$ mkdir hello/; echo 'hello' > hello/hello.txt; ipfs add -rQ ./hello/ +QmU5PLEGqjetW4RAmXgHpEFL7nVCL3vFnEyrCKUfRk4MSq + +$ ipfs name publish QmU5PLEGqjetW4RAmXgHpEFL7nVCL3vFnEyrCKUfRk4MSq +``` + If you manage to mount on other systems (or followed an alternative path to one above), please contribute to these docs :D