Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

umfuse(1viewos) [debian man page]

VIEW-OS(1viewos)														  VIEW-OS(1viewos)

NAME
umfuse - User Mode FUSE implementation for umview SYNOPSIS
um_add_service umfuse.so umview ... --preload umfuse.so DESCRIPTION
umfuse is the user-mode implementation of virtual FUSE filesystems for umfuse. When this service module is loaded it is possible to mount umfuse file systems. FUSE and umfuse are source level compatible, it is possible to compile a FUSE file system implementation as a dynamic library. The name of umfuse file system implementation libraries must begin with umfuse. Umfuse implemented file system are mounted and umounted by the standard utilities mount(8) and umount(8). Example: $ mount -t umfuseext2 /path/to/file.img /mount/point ... $ umount /mount/point The mount command for umfuse file systems allows some specific options: debug give a verbose feedback of each operation on the virtual file system. fuseuid=uid specify the effective uid for the operation on the virtual file system fusegid=gid specify the effective gid for the operation on the virtual file system human umfuse is default mode is omnipotent, i.e. the user acts as root in the mounted file system. When a file system gets mounted with the human option, access control is enforced. umfuse modules main program invocation options. umfuse calls the main program of the module with the standard syntax: umfusexxxx -o options source mountpoint Sometimes FUSE modules have been designed to accept a different syntax. It is possible to match the calling syntax by using the follwing options. nosource No image file should be specified. pre=string The string contains parameters that must be put before "-o options" post=string The string contains parameters that must be added at the end format=string This is the most powerful rewriting rule. If the main needs a completely different structure format can be used: the format string is similar to that used in printf. %O %S %M descriptors are substituted in the call as follows: %O=-o options, %S=source, %M=mountpoint. showcall Show the call syntax before the actual call. Use it for debugging. SEE ALSO
umview(1) um_add_service(1) um_del_service(1) um_ls_service(1) um_mov_service(1) AUTHORS
View-OS is a project of the Computer Science Department, University of Bologna. Project Leader: Renzo Davoli. <http://www.sourceforge.net/projects/view-os> Howto's and further information can be found on the project wiki <wiki.virtualsquare.org>. VIEW-OS: a process with a view June 10, 2006 VIEW-OS(1viewos)

Check Out this Related Man Page

mount(8)						      System Manager's Manual							  mount(8)

Name
       mount, umount - mount or unmount file systems

Syntax
       /etc/mount [ options ] [ device ] [ directory ]

       /etc/umount [ options ] [ device ] [ directory ]

Description
       This  is  a  general description of the command.  Additional descriptions are provided to define the syntax and options for the NFS and UFS
       file systems.

       Each invocation of the command announces to the system that a file system is present on the device device.  The file system may be local or
       remote.	File directory must exist as a directory file.	It becomes the name of the newly mounted file system root.

       If invoked without arguments, prints the list of mounted file systems.

       Physically write-protected disks and magnetic tape file systems must be mounted read-only or an error will occur at mount time.

       General users can only mount file systems with certain restrictions.  For example, the user, other than the superuser, performing the mount
       must own the directory directory.  Furthermore, no users other than the superuser can execute or programs on the mounted file systems.	In
       addition, users other than the superuser cannot access block or special character devices such as on the mounted file systems.

       The  command  announces	to the system that the removable file system previously mounted on the specified directory is to be removed.  Only
       the person who mounted a particular file system or the superuser can unmount the file system again.

Options
       -a	   Reads the file and mounts, or unmounts, all file systems listed there.

       -f	   Fast unmount.  The option has no meaning for local file systems and directories.  However, for remote file system  types  (such
		   as  NFS),  the  option  causes  the	client	to unmount the remotely mounted file systems and directories without notifying the
		   server.  This can avoid the delay of waiting for acknowledgment from a server that is down.

       -o options  Specifies a string that is passed to the kernel and used by the specific file system's mount routine in the kernel.	 For  spe-
		   cific options, refer to the file system-specific description, such as

       -r	   Indicates  that  the  file system is to be mounted read only. To share a disk, each host must mount the file system with the -r
		   option.

       -t type	   Specifies the type of file system is being mounted.	When used with the option, the option mounts all file systems of the given
		   type found in the file.  For specific file system types, refer to the file system-specific description, such as

       -v	   Tells what did or did not happen.  (Verbose flag)

       The options for are:

       -a	   Unmounts all mounted file systems.  It may be necessary to execute twice to accomplish unmounting of all mounted file systems.

       -v	   Tells what did or did not happen.  (Verbose flag)

Restrictions
       Mounting corrupted file systems will crash the system.

Files
       File systems information table

See Also
       getmnt(2), mount(2), fstab(5), fsck(8), mount(8nfs), mount(8ufs)

																	  mount(8)
Man Page