p Both .Ar target and .Ar mount-point are converted to absolute paths before use.
p The options are as follows: l -tag -width indent t Fl g Ar gid-mapfile Use the group ID mapping specified in .Ar gid-mapfile . This flag is required. t Fl i Ar fsid Use the specified .Ar fsid for the file system ID, rather than choosing one at random. This is useful if the file system is to be exported. t Fl o Options are specified with a .Fl o flag followed by a comma separated string of options. See the .Xr mount 8 man page for possible options and their meanings. t Fl u Ar uid-mapfile Use the user ID mapping specified in .Ar uid-mapfile . This flag is required. .El
p The .Nm command uses a set of files provided by the user to make correspondences between uids and gids in the sub-tree's original environment and some other set of ids in the local environment. For instance, user smith might have uid 1000 in the original environment, while having uid 2000 in the local environment. The .Nm command allows the subtree from smith's original environment to be mapped in such a way that all files with owning uid 1000 look like they are actually owned by uid 2000.
p .Em target should be the current location of the sub-tree in the local system's name space. .Em mount-point should be a directory where the mapped subtree is to be placed. .Em uid-mapfile and .Em gid-mapfile describe the mappings to be made between identifiers.
p The format of the user and group ID mapping files is very simple. The first line of the file is the total number of mappings present in the file. The remaining lines each consist of two numbers: the ID in the mapped subtree and the ID in the original subtree.
p For example, to map uid 1000 in the original subtree to uid 2000 in the mapped subtree: d -unfilled -offset indent 1 2000 1000 .Ed
p For user IDs in the original subtree for which no mapping exists, the user ID will be mapped to the user .Dq nobody . For group IDs in the original subtree for which no mapping exists, the group ID will be mapped to the group .Dq nobody .
p There is a limit of 64 user ID mappings and 16 group ID mappings.
p The mapfiles can be located anywhere in the file hierarchy, but they must be owned by root, and they must be writable only by root. .Nm will refuse to map the sub-tree if the ownership or permissions on these files are improper. It will also report an error if the count of mappings in the first line of the map files is not correct. .Sh SEE ALSO .Xr mount 8 , .Xr mount_null 8 .Sh HISTORY The .Nm utility first appeared in x 4.4 . .Sh BUGS The implementation is not very sophisticated.