From 05aea0871e0f3a6d13743ae471ebd430371e0d26 Mon Sep 17 00:00:00 2001 From: swedneck <40505480+swedneck@users.noreply.github.com> Date: Fri, 14 Jun 2024 15:12:00 +0200 Subject: [PATCH] Add section regarding "error mounting: could not resolve name" 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