summaryrefslogtreecommitdiffstats
path: root/sbin/mdmfs/mdmfs.8
Commit message (Collapse)AuthorAgeFilesLines
* Grammar nits.ceri2007-02-151-2/+2
|
* Add examples for configuring and mounting geom_uzip(4) based disks'matteo2007-02-151-0/+20
| | | | | image and sliced/partitioned memory disks. MFC after: 1 week
* Correct -c and -d description.matteo2007-02-151-11/+10
| | | | | | | Other requests made in the PR were already solved in the past. PR: bin/66763 MFC after: 1 week
* Remove the -C option as it does more harm than good. To be fullyru2006-11-031-39/+7
| | | | | | | | | | | | | | | | | | | | compatible, it would have to (at least): - support the "compat-compat" -T option, - *not* support the -l, -O, and -v options, - default to soft updates being disabled. Worse, the compatibility mode makes it impossible to mount_mfs(8) a file system from fstab(5) with soft updates disabled (-S). [1] Now, the only difference when called as "mount_mfs" or "mfs" (as opposed to "mdmfs") is that the file mode of the mount point is set by default to 01777. All options available to mdmfs(8) are also available to mount_mfs(8); the -C option is still recognized but ignored for backward compatibility. PR: bin/98860 [1] MFC after: 2 weeks
* Fix .Dd arguments.ru2006-10-211-1/+1
|
* The UFS filesystem get created only if -P was not specified.matteo2006-10-011-2/+4
| | | | | | Specify this on the description MFC after: 3 days
* Markup fixes.ru2006-09-181-2/+2
|
* Add new -E option, which allows to specify location of the mdconfig(8)sobomax2006-02-161-0/+8
| | | | | | utility instead of using default _PATH_MDCONFIG (/sbin/mdconfig). MFC after: 1 week
* Add a -P option to allow skipping newfs when using a vnode-backeddd2006-01-021-2/+9
| | | | | | | | | | | | | | | | | disk. Apparently some people want to use mdmfs as mount_* as a shortcut for mounting existing file-based file systems. Note that unlike in the patches from the submitters, this option is not available in compat mode. Compat mode was supposed to support only things that mount_mfs used to support. To use this option from fstab, mdmfs should be called mount_md, not mount_mfs. This distinction has not always upkept for new options, and those can't be fixed now without breaking people's systems, but new options should not usually be allowed in compat mode. (Not sure why -F is allowed there at all.) PR: 57641 Submitted by: Ruben de Groot Submitted independently by: Wojciech A. Koszek, for Urzad Miasta Czestochowa
* Assorted markup, grammar, and spelling fixes.ru2004-05-171-5/+4
|
* Add a "-l" parameter to mdmfs so that memory file systems can berwatson2004-02-261-0/+3
| | | | | | | | created with the multilabel flag from inception. This simply passes the "-l" flag on to newfs(8). Obtained from: TrustedBSD Project Sponsored by: DARPA, McAfee Research
* Don't reinvent the wheel: Use setmode(3) to interpretyar2003-08-051-0/+11
| | | | | | a file mode specification from the command line. This approach is more flexible and less error-prone than using a mere strtoul(3).
* mdoc(7) fix: Add the forgotten paragraph command.ru2003-05-171-0/+1
| | | | Approved by: re (blanket)
* Add an example of how to create an fstab entry.dougb2003-05-051-0/+4
|
* Also MLINK the man page for mount_mfs.dougb2003-04-271-2/+3
|
* english(4) police.schweikh2002-12-271-1/+1
|
* Teach mdmfs how to pass UFS version numbers through to newfs. Becauserwatson2002-12-011-0/+11
| | | | | | | | | | | | of an argument name collision with -O, use -v, and default to whatever the newfs default is for the platform (generally, UFS1). This is required to support diskless workstations that use UFS2 for their mdmfs file systems. Reviewed by: dd, bmah Approved by: re (bmah) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Don't disklabel(8) the md(4) device, it is not needed, and we don't wantphk2002-09-221-3/+0
| | | | | | to propagete BSD disklabels to architectures not already so polluted. Sponsored by: DARPA & NAI Labs.
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-211-10/+10
|
* The .Nm utilitycharnier2002-07-061-4/+6
|
* Enable bug-for-bug compatibility with mount_mfs when the programiedowse2001-09-301-3/+4
| | | | | | | | | | name is "mount_mfs" or "mfs". Previously, the condition was that the program name must start with "mount_", but this both missed the case where mount(8) invokes mdmfs with argv[0] = "mfs", and it included cases such as "mount_md" where compatibility is not required. Reviewed by: dd
* mdoc(7) police: Section cross-references are marked with .Sx.ru2001-08-161-3/+2
| | | | -compat is not a valid keyword.
* Implement a better compatibility mode with mount_mfs. It is thedd2001-08-161-2/+72
| | | | | | | | | | | | | | | | | default if the executable is named (called as) "mount_*", or can be enabled with the -C option. This allows users to leave their old fstab entires unchanged (modulo symlink'ing mdmfs to mount(md|mfs)) and have things behave the way they should (by emulating mount_mfs silliness), while still allowing mdmfs to be used as a generic make-an-md-and-mount-it type thing. Right now, the only effects of this option is to set the mount-point mode to 01777 as if "-p 1777" was given, and to complain about getting command-line options that mount_mfs didn't take (e.g., -X, -L, et al). The latter is mostly to try to catch operator errors. Also implement -U, which turns on soft-updates. It's redundant (since softdep is the default), but implement it anyway for compatibility.
* Document -X.dd2001-07-301-0/+3
| | | | Submitted by: kris
* Nuke my e-mail address since it seems out of place here.dd2001-07-301-2/+1
|
* Add a missing word.dd2001-06-201-1/+1
| | | | Submitted by: Alexander Leidinger <Alexander@Leidinger.net>
* Add a SEE ALSO section.dd2001-06-201-0/+6
|
* Miscellaneous mdoc(7) fixes; also expand contractions.dd2001-06-201-22/+19
| | | | Submitted by: ru
* Introduce mdmfs(8), a wrapper around mdconfig(8), disklabel(8),dd2001-06-181-0/+262
newfs(8), and mount(8) that mimics the command line option set of the deprecated mount_mfs(8). Approved by: jkh, phk, -hackers
OpenPOWER on IntegriCloud