Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
729e50d3
Commit
729e50d3
authored
9 years ago
by
Marcin Rataj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse.md: Added troubleshooting instructions for #813
parent
8ad4d503
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
docs/fuse.md
docs/fuse.md
+23
-1
No files found.
docs/fuse.md
View file @
729e50d3
...
...
@@ -44,7 +44,29 @@ sudo chown <username>:<groupname> /etc/fuse.conf
## Troubleshooting
If the mount command crashes and your mountpoint gets stuck:
### Getting `Permission denied` or `fusermount: user has no write access to mountpoint` error
Verify that the config file can be read by your user:
```
sh
ls
-l
/etc/fuse.conf
-rw-r-----
1 root fuse 216 Jan 2 2013 /etc/fuse.conf
```
In most distributions group named
`fuse`
will be created during installation.
If that is the case, just add your regular user to the
`fuse`
group:
```
sh
usermod
-G
fuse
-a
<username>
```
If not, create
`fuse`
group (add your regular user to it) and set necessary permissions, for example:
```
sh
sudo chgrp
fuse /etc/fuse.conf
sudo chmod
g+r /etc/fuse.conf
sudo chgrp
fuse /ipfs /ipns
sudo chmod
g+rw /ipfs /ipns
```
### Mount command crashes and mountpoint gets stuck
```
sudo umount /ipfs
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment