From 37fe6d56e5ff5f7dd0b41f9466ea7492d588fdfc Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 30 Jan 2017 18:16:53 +0000 Subject: [PATCH] mount: fix docs for umount flags - fixes #1036 --- cmd/mount/mount.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cmd/mount/mount.go b/cmd/mount/mount.go index 88c177836..bbccfbb97 100644 --- a/cmd/mount/mount.go +++ b/cmd/mount/mount.go @@ -73,7 +73,7 @@ This is **EXPERIMENTAL** - use with care. First set up your remote using ` + "`rclone config`" + `. Check it works with ` + "`rclone ls`" + ` etc. -Start the mount like this +Start the mount like this (note the & on the end to put rclone in the background). rclone mount remote:path/to/files /path/to/local/mount & @@ -81,9 +81,13 @@ Stop the mount with fusermount -u /path/to/local/mount +Or if that fails try + + fusermount -z -u /path/to/local/mount + Or with OS X - umount -u /path/to/local/mount + umount /path/to/local/mount ### Limitations ###