diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-12-29 21:32:41 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-12-29 21:32:41 +0000 |
commit | a5e6190191848c8fd52ef98a63e9dee6876a0773 (patch) | |
tree | d33ade30427af469e4b8529e1ce5039cc4e3f71a | |
parent | 616c02e3c859a816d94a07ccc323b9b265e27cd8 (diff) | |
download | FreeBSD-src-a5e6190191848c8fd52ef98a63e9dee6876a0773.zip FreeBSD-src-a5e6190191848c8fd52ef98a63e9dee6876a0773.tar.gz |
Add msdosfs.5
-rw-r--r-- | share/man/man5/msdosfs.5 | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/share/man/man5/msdosfs.5 b/share/man/man5/msdosfs.5 new file mode 100644 index 0000000..826e1c1 --- /dev/null +++ b/share/man/man5/msdosfs.5 @@ -0,0 +1,79 @@ +.\" $FreeBSD$ +.\" Written by Tom Rhodes +.\" This file is in the public domain. +.\" +.Dd December 26, 2002 +.Dt MSDOS 5 +.Os +.Sh NAME +.Nm msdosfs +.Nd msdos file system +.Sh SYNOPSIS +.Bd -literal +/dev/ad0sN /dos msdos rw 0 0 +.Ed +.Pp +To link into the kernel: +.Cd "options MSDOSFS" +.Sh DESCRIPTION +.Pp +The +.Nm +driver will permit the +.Fx +kernel to read and write +.Em msdos +based file systems. +.Pp +The most common usage follows: +.Pp +.Dl "# mount_msdosfs /dev/ad0sN /dos +.Pp +where +.Sy N +is the partition number and +.Pa /mnt +is a mount point directory in the root file system. +Some users tend to create a +.Pa /dos +directory for +.Nm +mount points. +This helps to keep better track of the file system, +and make it more easily accessible. +.Pp +It is possible to define an entry in +.Pa /etc/fstab +that looks similar to: +.Bd -literal +/dev/ad0sN /dos msdos rw 0 0 +.Ed +.Pp +This will mount an +.Em msdos +based partition at the +.Pa /dos +mount point during system boot. +Using +.Pa /mnt +as a permanent mount point is not advised as its intention +has always been to be a temporary mount point for floppy and +zip disks. +See +.Xr hier 7 +for more information on +.Fx +directory layout. +.Sh SEE ALSO +.Xr mount 2 , +.Xr unmount 2 , +.Xr mount 8 , +.Xr mount_msdosfs 8 , +.Xr umount 8 , +.Rs +.%T "The FreeBSD Handbook" +.%O "http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/" +.Re +.Sh AUTHORS +This manual page was written by +.An Tom Rhodes Aq trhodes@FreeBSD.org . |