summaryrefslogtreecommitdiffstats
path: root/sbin/mount
Commit message (Collapse)AuthorAgeFilesLines
* When mount(8) is invoked with the `-v' flag, display the filesystemiedowse2003-07-181-1/+4
| | | | | | | | | | | | ID for each file system in addition to the normal information. In umount(8), accept filesystem IDs as well as the usual device and path names. This makes it possible to unambiguously specify which file system is to be unmounted even when two or more file systems share the same device and mountpoint names (e.g. NFS mounts from the same export into different chroots). Suggested by: Dan Nelson <dnelson@allantgroup.com>
* Convert fsck and mount to using execvP to find fsck_foo and mount_foo.gordon2003-06-292-26/+6
| | | | | | | This simplifies the code path and makes the default path easy to override in the /rescue case. Submitted by: Tim Kientzle <kientzle@acm.org>
* Fixed the markup in the recently added ENVIRONMENT section.ru2003-05-171-6/+6
|
* Use __FBSDID() to quiet GCC 3.3 warnings.obrien2003-05-032-7/+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-072-2/+17
| | | | 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)
* Teach mount(8) about MNT_ACLS for the purposes of mount options andrwatson2002-10-142-1/+5
| | | | | | | mount option printing. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-213-60/+60
|
* 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.
* Now that the kernel is able to load modules itself,mux2002-08-031-17/+1
| | | | | | | | | | remove all the code which was trying to do so. This code was nasty in several ways, it was hiding the kernel bug where the kernel was unable to properly load a module, and it was quitting if it wasn't able to load the module. The consequence is that an ABI breakage of the vfsconf API would have broken *every* mount utility.
* Introduce support for Mandatory Access Control and extensiblerwatson2002-08-022-1/+5
| | | | | | | | | | | | | | kernel access control. Teach mount(8) to understand the MNT_MULTILABEL flag, which is used to determine whether a file system operates with individual per-vnode labels, or treats the entire file system as a single object with a single (mount) label. The behavior here will probably evolve some now that nmount(2) is available and can more flexibly support mount options. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* 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-162-23/+23
|
* Fix a typo : ".Xr mount_udf 8," -> ".Xr mount_udf 8 ,".mux2002-05-111-1/+1
|
* Unbreak NFS mounts when mount(8) is invoked as : mount path@server.mux2002-04-231-1/+5
| | | | Reviewed by: obrien
* Do our best to determine if the user is attempting an NFS mount whenmux2002-04-221-6/+19
| | | | | | | | | | | the filesystem type isn't given in the command line. In the case of an IPv6 address containing ':', one must use the '@' separator for it to be properly parsed (mount_nfs(8) still needs fixing at the moment though). PR: bin/37230 Reviewed by: obrien MFC after: 1 week
* Add mount_udf and mount_smbfs to crossrefs.dwmalone2002-04-211-0/+2
| | | | | PR: 37200 Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>
* o __P removedimp2002-03-214-22/+21
| | | | o main prototype removed
* Default to WARNS=2.obrien2001-12-041-0/+1
| | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
* <mntopts.h> -> "mntopts.h" in SYNOPSIS.ru2001-10-041-1/+1
| | | | Submitted by: bde
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-011-1/+1
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-102-2/+2
|
* Include missing header files which define functions for which gcc hasdd2001-06-241-0/+1
| | | | builtins (e.g., exit, strcmp).
* - VFS_SET(msdos) -> VFS_SET(msdosfs)ru2001-06-012-1/+5
| | | | | | - msdos.ko -> msdosfs.ko - mount_msdos(8) -> mount_msdosfs(8) - "msdos" -> "msdosfs" compatibility glue in mount(8)
* Remove vestiges of MFS.ru2001-06-011-5/+4
|
* Rename (after a repo-copy) some mount(8) programs:ru2001-05-231-5/+5
| | | | | | | | mount_fdesc -> mount_fdescfs mount_null -> mount_nullfs mount_portal -> mount_portalfs mount_umap -> mount_umapfs mount_union -> mount_unionfs
* Implement the -r and -w options as `-o ro' and `-o noro', respectively. Atdd2001-05-021-2/+2
| | | | | | | | | | least in -w's case, simply unsetting the correct bit in init_flags was not enough. The bit may be reset later if, say, the filesystem is marked `ro' in fstab. The command line option should override the fstab setting, but did not. The implementation of -r was changed for consistency. PR: 26886 Reviewed by: archie
* mdoc(7) police: fix markup.ru2001-04-261-22/+23
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for sbin/ to 8.ru2001-03-201-1/+0
|
* Add an xref for mount_ntfs.nik2001-02-021-0/+1
| | | | | PR: docs/24693 Submitted by: Etienne Vidal <hallik@libertysurf.fr>
* Always print out the target device when the mount fails, not just onbsd2001-01-251-4/+1
| | | | ENOENT.
* Provide a better error message when the /dev entry is non-existant.bsd2001-01-251-0/+3
| | | | | Due to the old message, I spent way more time debugging a diskless root problem than it should have taken.
* Retire kernfs (userland part).des2000-12-281-1/+0
|
* Prepare for mdoc(7)NG.ru2000-12-181-0/+1
|
* mdoc(7) police: misc minor fixes.ru2000-11-231-44/+57
|
* o get rid lfs mentionsphantom2000-11-221-3/+3
| | | | o remove non-mdoc groff's instructions
* We do not support lfs. Remove it from list of remountable fs'es.phantom2000-11-221-1/+1
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-202-8/+8
|
* .Xr to mount_ext2fs, mount_hpfs, mount_linprocfs, mount_nwfs, andnik2000-10-291-0/+5
| | | | | | | mount_std. PR: docs/20369 Submitted by: bmah
* Explain the notion that additional mount options may be describedsheldonh2000-08-281-6/+11
| | | | | | | in mount_XXX manual pages. Remove explicit mention of NFS mount options, since they are accurately described by this rule. PR: 20814
* Only print information about reads and writes when the -v flag (forsheldonh2000-08-231-6/+8
| | | | | | | | verbose mode) is specified. This should really have been the case when this extra cruft was first introduced in rev 1.23. PR: 20710 Reported by: Mike Meyer <mwm@mired.org>
* optreset is declared in unistd.h now.imp2000-08-161-1/+0
|
* Add the snapshot option to mount_ufs.mckusick2000-07-062-0/+2
|
OpenPOWER on IntegriCloud