wok diff afuse/description.txt @ rev 24893
Update some web_site
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 07 17:00:12 2022 +0000 (2022-04-07) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/afuse/description.txt Thu Apr 07 17:00:12 2022 +0000 1.3 @@ -0,0 +1,12 @@ 1.4 +Afuse is an automounting file system implemented in user-space using FUSE. 1.5 +Afuse currently implements the most basic functionality that can be expected by 1.6 +an automounter; that is it manages a directory of virtual directories. If one 1.7 +of these virtual directories is accessed and is not already automounted, afuse 1.8 +will attempt to mount a filesystem onto that directory. If the mount succeeds 1.9 +the requested access proceeds as normal, otherwise it will fail with an error. 1.10 + 1.11 +The advantage of using afuse over traditional automounters is afuse runs 1.12 +entirely in user-space by individual users. Thus it can take advantage of the 1.13 +invoking users environment, for example allowing access to an ssh-agent for 1.14 +password-less sshfs mounts, or allowing access to a graphical environment to 1.15 +get user input to complete a mount such as asking for a password.