Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的.bashrc我有
.bashrc
function bindfs () { mkdir -p ~/$1 sudo /usr/bin/bindfs -u $(id -u) -g $(id -g) $1 ~/$1 }
为了能够作为普通用户在下面自动挂载的 ext3 文件系统上读取、写入、执行文件/media/。这工作正常。
/media/
但是,我想知道 的逆运算bindfs。否则我无法在拔出之前卸载 USB 存储介质。
bindfs
你可以使用卸载
sudo umount ~/$1
bindfs 是 FUSE 文件系统,可以从非特权用户使用
user_allow_other
在 /etc/fuse.conf 中设置。
它的自然对应部分是
fusermount -u
也可以由标准用户运行