Views:
161,117β
Votes: 3β
Tags:
linux
fuse
Link:
π See Original Answer on Stack Overflow β§ π
URL:
https://stackoverflow.com/q/63984397
Title:
What happens if you mount to a non-empty mount point with fuse?
ID:
/2020/09/20/What-happens-if-you-mount-to-a-non-empty-mount-point-with-fuse_
Created:
September 20, 2020
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
For me the error message goes away if I unmount the old mount before mounting it again:
fusermount -u /mnt/point
If itβs not already mounted you get a non-critical error:
$ fusermount -u /mnt/point
fusermount: entry for /mnt/point not found in /etc/mtab
So in my script I just put unmount it before mounting it.