minix man page for mount

Query: mount

OS: minix

Section: 2

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

MOUNT(2)							System Calls Manual							  MOUNT(2)

NAME
mount, umount - mount or umount a file system
SYNOPSIS
#include <unistd.h> #include <sys/mount.h> int mount(char *special, char *name, int flag) int umount(char *name)
DESCRIPTION
Mount() tells the system that the file system special is to be mounted on the file name, effectively overlaying name with the file tree on special. Name may of any type, except that if the root of special is a directory, then name must also be a directory. Special must be a block special file, except for loopback mounts. For loopback mounts a normal file or directory is used for special, which must be seen as the root of a virtual device. Flag is 0 for a read-write mount, 1 for read-only. Umount() removes the connection between a device and a mount point, name may refer to either of them. If more than one device is mounted on the same mount point then unmounting at the mount point removes the last mounted device, unmounting a device removes precisely that device. The unmount will only succeed if none of the files on the device are in use. Both calls may only be executed by the super-user.
SEE ALSO
mount(1), umount(1).
AUTHOR
Kees J. Bot (kjb@cs.vu.nl) MOUNT(2)
Related Man Pages
copyfs-mount(1) - debian
halevt-mount(1) - debian
mount(2) - v7
fstab(5) - minix
umount(8) - ultrix
Similar Topics in the Unix Linux Community
How to detect usb storage arrival and its mount path from C
Filesystem - umount the / (root) file system
Find duplicate filenames and remove in different mount point
What is the right way to mount and umount a usb driver?
Need help with automount.. is not working!!