summaryrefslogtreecommitdiffstats
path: root/sbin/mount/mount.8
Commit message (Collapse)AuthorAgeFilesLines
* Clarify devfs manpages slightly.jilles2010-05-291-0/+1
| | | | | | | | | | mount(8): add xref to devfs(5) devfs(5): change example to something more likely to be useful (it is not necessary to mount a devfs on /dev manually, but for chroots/jails it is often needed), mention since when devfs is preferred to device nodes on ufs PR: 146600 MFC after: 2 weeks
* mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to theuqs2010-05-131-5/+5
| | | | | | | | | | | bottom of the manpages and order them consistently. GNU groff doesn't care about the ordering, and doesn't even mention CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put them. Found by: mdocml lint run Reviewed by: ru
* - Remove reference to nfs4. mount_nfs4(8) was removed in r192578.jh2010-02-101-2/+2
| | | | - Add newnfs.
* Implement NFSv4 ACL support for UFS.trasz2009-12-211-1/+13
| | | | Reviewed by: rwatson
* Add links to zfs(8) and zpool(8) to mount(8) manual page.trasz2009-11-111-1/+3
|
* Modify mount(8) to skip MNT_IGNORE file systems by default, just like df(1)pjd2009-09-141-0/+6
| | | | | | | | | does. This is not POLA violation, because there is no single file system in the base that use MNT_IGNORE currently, although ZFS snapshots will be mounted with MNT_IGNORE after next commit. Reviewed by: kib MFC after: 3 days
* Add a -o mountprog parameter to mount which explicitly allowsrodrigc2009-03-051-0/+9
| | | | | | | | | | | | | | | | | | | an alternative program to be used for mounting a file system. Ideally, all file systems should be converted to pass string arguments to nmount(), so that /sbin/mount can handle them. However, certain file systems such as FUSE have not done this, and want to have their own userland mount programs. For example, to mount an NTFS file system with the FUSE NTFS driver: mount -t ntfs -o mountprog=/usr/local/bin/ntfs-3g /dev/acd0 /mnt or via an fstab entry: /dev/acd0 /mnt ntfs ro,noauto,mountprog=/usr/local/bin/ntfs-3g 0 0 PR: 120784 Requested by: Dominic Fandrey
* Fix markup.ru2008-06-031-4/+6
|
* Add note about a reason to use mount(8) instead of mount_somefs.kib2008-06-031-0/+11
| | | | | | Reported and proof-readed by: pho Discussed with: rodrigc MFC after: 3 days
* - Update with a better example which shows that options specific to atmclaugh2008-03-121-3/+3
| | | | | | file system may be passed using -o. Approved by: remko, rodrigc
* - Also change the /sbin/mount_unionfs line I managed to miss just twotmclaugh2008-03-101-1/+1
| | | | | | | | lines down to '-o below'. Approved by: remko Noticed by: rodrigc Pointyhat by: me
* - unionfs -b option is deprecated in favor of '-o below' as pertmclaugh2008-03-101-2/+2
| | | | | | mount_unionfs(8). Approved by: remko
* Properly sort 'sync' in the list of options passed to -o.jhb2007-11-271-4/+4
| | | | MFC after: 3 days
* Remove stale reference to mount_std.rodrigc2007-10-191-1/+0
|
* - Remove UMAP filesystem. It was disconnected from build three years ago,rafan2007-06-251-2/+0
| | | | | | | and it is seriously broken. Discussed on: freebsd-arch@ Approved by: re (mux)
* Markup fixes.ru2006-09-181-25/+25
|
* Fix markup snafu.des2006-09-141-1/+2
| | | | Spotted by: ru
* Re-word the description of the "async" flag.danger2006-09-081-3/+6
| | | | | | Suggested by: Milos Vyletel (mv@rulez.sk) Reviewed by: ru Approved by: keramida (mentor), trhodes (mentor)
* Teach mount(8) about a 'late' keyword, which means the file system shoulddes2006-07-121-3/+20
| | | | | | | | | | | | | | | | | | not be mounted unless the -l flag was specified. Add an rc script, mountlate, which basically runs 'mount -a -l'. It runs after DAEMON but before LOGIN. This is useful for things like loopback mounts, because mountcritremote runs before mountd / nfsd (since /usr might be a remote file system), so an attempt to mount a loopback network file system in mountcritremote will fail. Also add a progress message to mountcritlocal, for the sake of symmetry with similar messages in mountcritremote and mountlate. Reviewed by: freebsd-rc MFC after: 3 weeks
* Remove reference to mount_procfs(8), add reference to procfs(5).rodrigc2006-05-191-1/+1
| | | | | mount(8) doesn't use mount_procfs(8), and instead passes an fstype of "procfs" directly to nmount().
* Remove reference to mount_ext2fs(8), add reference to ext2fs(5).rodrigc2006-05-171-1/+1
| | | | | mount no longer invokes mount_ext2fs, it calls nmount() directly with fstype "ext2fs".
* Update text to reflect that:rodrigc2006-02-251-9/+31
| | | | | | | | - mount(8) now calls the nmount(2) system call directly, not mount(2) - specifying a filesystem type with -t will not automatically invoke an external /sbin/mount_XXXX program....this only happens for certain file system types. For all other file system types, nmount(2) is called directly.
* - Xref mount_reiserfs(8)pav2006-01-101-0/+1
| | | | | | PR: docs/90902 Submitted by: Scott Robbins <scottro@nyc.rr.com> MFC after: 3 days
* Remove Xref to mount_hpfs(8), it's not hooked up to the build.brueffer2005-06-161-1/+0
| | | | | Approved by: re (blanket) MFC after: 3 days
* Add verbiage to the description of the noexec mount option clarifyingcperciva2005-03-231-0/+5
| | | | | | | that it really wasn't intended as a security feature. Wording mostly by: simon Discussed with: secteam
* Sort sections.ru2005-01-181-12/+12
|
* Fix typo.josef2004-12-261-1/+1
| | | | Noticed by: clement
* Fix the mount(8) status reporting, now that MNT_NODEV is a no-op (zero).ru2004-11-291-7/+1
| | | | Asked to commit by: phk
* Assorted markup, grammar, and spelling fixes.ru2004-05-171-2/+2
|
* Remove advertising clause from University of California Regent's license,markm2004-04-091-4/+0
| | | | | | per letter dated July 22, 1999. Approved by: core, imp
* Correct the definition of the multilabel flag: it enables multilabelrwatson2004-03-261-3/+8
| | | | | | | MAC support on the file system, if supported, which causes MAC to treat each object as having its own label, rather than using a single label for all objects on the file system. This doesn't have to be used in combination with the tunefs/newfs flags -- it's an alternative.
* s/considred/considered/brueffer2004-03-041-1/+1
|
* Reorder Xrefs in SEE ALSO.trhodes2004-02-101-5/+5
|
* Update to inform users of acls and multilabel options. Add Xrefs to thetrhodes2004-02-101-1/+20
| | | | | | | more relevant manual pages. PR: 62394 Submitted by: Marc Silver <marcs@draenor.org>
* Style(9) option sortingguido2004-01-291-1/+1
| | | | Submitted by: Ruslan Ermilov <ru@FreeBSD.org>
* Fix manpage and usage() to reflect that -a can be used in combinationguido2004-01-291-0/+1
| | | | | | | with -o Submitted by: Ruslan Ermilov <ru@FreeBSD.org> Pointed out by: Ceri Davies <ceri@submonkey.net
* Reduce fstab(5)/mount(8) confusion by changing the man pages to say "ro"seanc2003-10-221-2/+2
| | | | | instead of "rdonly". "rdonly" works for mount(8) and mount_std(8) but not from /etc/fstab, whereas "ro" works for all mount_*(8) commands.
* Fixed the markup in the recently added ENVIRONMENT section.ru2003-05-171-6/+6
|
* Bump the date for recent commits.mdodd2003-04-071-1/+1
|
* Clarify the behavior of PATH_FSTAB with regard to 'tainted' execution.mdodd2003-04-071-0/+7
| | | | Requested by: ru
* Implement the '-F' option for mount & umount which allows the user tomdodd2003-04-071-0/+12
| | | | specify an alternate fstab file.
* mdoc(7) police: kill unnecessary xref.ru2003-02-231-1/+0
|
* Mention the oddities and requirements for mount operations executed byjoerg2003-01-131-0/+4
| | | | | | | | non-root users. PR: docs/42651 Submitted by: Thomas Seck <tmseck@netcologne.de> MFC after: 3 days
* Remove the incorrect information about dump(8) and snapshots. All thetrhodes2002-12-131-6/+0
| | | | | | | | dump(8) issues are assumed to be fixed. PR: 46224 Submitted By: Chris Knight <chris@aims.com.au> Approved By: re (murray)
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-211-55/+55
|
* mdoc(7) police: missing markup bits.ru2002-08-131-6/+12
|
* Update the manpage to match the code. The mount utilitiesmux2002-08-111-24/+2
| | | | | now don't try to load the filesystem module, the kernel takes care of this.
* Add a bit of information on FFS snapshots to the mount(8) manual page.trhodes2002-07-111-0/+67
| | | | | | PR: 30139 Submitted by: Chris Knight <chris@aims.com.au? MFC after: 3 days
* The .Nm utilitycharnier2002-07-061-3/+2
|
* more file system > filesystemtrhodes2002-05-161-20/+20
|
OpenPOWER on IntegriCloud