MOUNT.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. MOUNT(2)                  Minix Programmer's Manual                   MOUNT(2)
  2. NAME
  3.      mount, umount - mount or umount a file system
  4. SYNOPSIS
  5.      #include <unistd.h>
  6.      #include <sys/mount.h>
  7.      int mount(char *special, char *name, int flag)
  8.      int umount(char *name)
  9. DESCRIPTION
  10.      Mount() tells the system that the file system special is to be mounted on
  11.      the file name, effectively overlaying name with the file tree on special.
  12.      Name may of any type, except that if the root of special is a  directory,
  13.      then  name  must  also  be  a directory.  Special must be a block special
  14.      file, except for loopback mounts.  For loopback mounts a normal  file  or
  15.      directory  is  used  for  special,  which  must  be seen as the root of a
  16.      virtual device.  Flag is 0 for a read-write mount, 1 for read-only.
  17.      Umount() removes the connection between a device and a mount point,  name
  18.      may  refer  to either of them.  If more than one device is mounted on the
  19.      same mount point then unmounting at the  mount  point  removes  the  last
  20.      mounted  device,  unmounting a device removes precisely that device.  The
  21.      unmount will only succeed if none of the files on the device are in use.
  22.      Both calls may only be executed by the super-user.
  23. SEE ALSO
  24.      mount(1), umount(1).
  25. AUTHOR
  26.      Kees J. Bot (kjb@cs.vu.nl)
  27.                                                                              1