-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unmount (fix) fuse after unclean shutdown #1248
Comments
On linux, one of these works for me:fusermount -u /ipfs
fusermount -u /ipns
sudo fusermount -u /ipfs
sudo fusermount -u /ipns
umount /ipfs
umount /ipns
umount -f /ipfs
umount -f /ipns
sudo umount -f /ipfs
sudo umount -f /ipns On osx, one of these works for me:umount /ipfs
umount /ipns
umount -f /ipfs
umount -f /ipns
sudo umount -f /ipfs
sudo umount -f /ipns
diskutil unmount /ipfs
diskutil unmount /ipns
diskutil unmount force /ipfs
diskutil unmount force /ipns
sudo diskutil unmount force /ipfs
sudo diskutil unmount force /ipns |
On Mon, May 18, 2015 at 05:18:28PM -0700, Juan Batiz-Benet wrote:
But only one of them is servicing the FUSE requests for a given |
On Mon, May 18, 2015 at 05:22:43PM -0700, Juan Batiz-Benet wrote:
If you have something currently working on the mounted filesystem |
Lazy unmounts leave the server process alive -> file locks are still held, can't run a new ipfs command, etc. |
👍 this needs some more UX work |
But issue #1092 is related, and its marked resolved: things do get unmounted... |
These are two separate issues. In that case, we weren't unmounting on |
Sometimes when ipfs shuts down it fails to unmount fuse. (may have been killed early, crashed, etc).
We need:
ipfs mount clean [ <path> ]
oripfs mount --fix [ <path> ]
I think we need to think through this one for a bit.
cc @whyrusleeping @tv42
The text was updated successfully, but these errors were encountered: