summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix behaviour of "ipfw pipe show" -- previous code gaveluigi2000-06-141-6/+6
| | | | | ambiguous data to the userland program (kernel operation was safe, anyways).
* Fixed style bugs of rev 1.66.ru2000-06-121-35/+81
|
* 0x39 == plan9brian2000-06-122-0/+2
| | | | Obtained from: OpenBSD
* Fix memory leak in mount_nfs's background (-b) mode which occurs whendillon2000-06-111-2/+3
| | | | | | the mount is not available. Submitted-by: Jonathan Hanna <pangolin@home.com>
* Handle minors like ls(1) does it.phk2000-06-101-2/+8
| | | | | PR: 19179 Submitted by: Kelly Yancey <kbyanc@posi.net>
* Add QNX 4 partitions to fdisk's list.ghelmer2000-06-092-2/+8
| | | | | | PR: bin/8809 Submitted by: "John C. Place" <jcplace@ibm.net> Prompted by: <nrahlstr@winternet.com>
* Add MLINK init.8 --> securelevel.8alex2000-06-091-0/+1
| | | | | | Requested by: Brett Glass <brett@lariat.org> PR: 13792 Submitted by: nik
* Fix occurences of nos_tun to nos-tun, this improves internalasmodai2000-06-091-6/+6
| | | | | | | | consistency as well as an usage printout. PR: 10538 Submitted by: piazza Nudged by: nrahlstr
* Add tcpoptions to ipfw. This works much in the same way as ipoptions do.dan2000-06-082-5/+88
| | | | | | | | | | It also squashes 99% of packet kiddie synflood orgies. For example, to rate syn packets without MSS, ipfw pipe 10 config 56Kbit/s queue 10Packets ipfw add pipe 10 tcp from any to any in setup tcpoptions !mss Submitted by: Richard A. Steenbergen <ras@e-gerbil.net>
* Document new dummynet functionality, namely WF2Q+ and REDluigi2000-06-081-11/+105
|
* userland side of WF2Q+ support in dummynet.luigi2000-06-081-102/+315
| | | | Manpage coming later...
* Clarify which bit of the daemon config disables configuration saves.grog2000-06-081-2/+2
| | | | | | This is still terrible. I need to finally implement variables. Reported-by: jmg
* Update description of checkparity and rebuildparity commands.grog2000-06-071-5/+57
|
* continue_revive: Set the revive blocksize correctly in the ioctl request.grog2000-06-071-0/+6
|
* vinum_start: Set the revive blocksize correctly.grog2000-06-071-1/+3
| | | | checkparity: Allow the -v flag to display progress.
* o Mention kern.suser_permittedrwatson2000-06-051-0/+1
| | | | Obtained from: TrustedBSD Project
* Sync with sbin/i386/fdisk/fdisk.c revision 1.37.nyan2000-06-052-2/+2
| | | | (Don't try to open the /dev/rXXX device.)
* Eliminate the default device name (da) and unit number (0) in camcontrol.ken2000-06-042-17/+15
| | | | | | | | This may break some scripts, but with the number of ways users can damage a system with this tool, it's important to make sure they specify which device they want to talk to. Suggested by: joerg
* Use the Ic (Internal command) mdoc macro to denote camcontrol subcommands.ken2000-06-031-44/+51
| | | | Submitted by: sheldonh
* Send 'camcontrol help' usage output to stdout instead of stderr, so itken2000-06-031-2/+2
| | | | | | | | | can be viewed more easily with a pager. Regular (i.e. short) usage output is still sent to stderr. PR: bin/12358 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Fix memory leak when route addition fails.jlemon2000-06-021-0/+1
| | | | Obtained from: NetBSD
* Add new function declarations.grog2000-06-021-1/+6
|
* Change the default command history file from /var/tmp/vinum_history togrog2000-06-021-3/+50
| | | | | | | | | | /var/log/vinum_history. Also check that any existing history file is a regular file. Admonished-by: imp Allow stopping long-running commands with ^C (well, SIGINTR). Previously this would stop the program.
* Add new function dumpconfig: dump the configuration informationgrog2000-06-022-0/+237
| | | | | | | | | directly off the drives. This command shows a minor problem: it requires that the device nodes exist, whereas kernel Vinum does not. Thus dumpconfig may show no configuration for certain drives which are up and happily running. This is documented in the man page.
* attach command: allow attaching striped or parity plexes if the -fgrog2000-06-021-1/+2
| | | | option is given. This will break the data in the plex.
* Don't try to do anything with the /dev/rXXX device.msmith2000-05-311-4/+2
|
* Don't try to open the /dev/rXXX device.msmith2000-05-312-2/+2
|
* add common.c to SRCS to fix compile problemsdarrenr2000-05-243-3/+3
|
* Fix a small grammar nit, with the maintainer's implicit approval.sheldonh2000-05-221-3/+3
|
* Implement a new camcontrol function, 'camcontrol format'.ken2000-05-212-31/+393
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libcam/Makefile: Add scsi_da.c to libcam for the new scsi_format_unit() function. camcontrol.8: Update the man page for the new format functionality, and take out the examples section describing how to do it with 'camcontrol cmd'. camcontrol.c: New format functionality. Note that unlike the rest of the camcontrol subcommands, this one is interactive by default. Because of the potential destructiveness of the format command, I thought it necessary to get confirmation from the user before spamming a disk. You can disable the interactive behavior, and the status meter with command line arguments. scsi_da.c: Add the new scsi_format_unit() cdb building function and use #ifdef _KERNEL to make this file compile in both the kernel and userland. The format unit function is currently only defined in the non-kernel case, because nothing in the kernel is using it. If that changes, it should be un-ifdefed and compiled in both cases. scsi_da.h: New function declaration, CDB structure and format data structures. Thanks to Nick Hibma for providing some valuable input on these changes.
* Document "-alias".obrien2000-05-201-7/+9
|
* Add new option (-target_addr) to control how to deal with incoming packetsru2000-05-182-1/+34
| | | | | | not associated with any pre-existing link. Submitted by: brian
* Fix a bunch of typos.hoek2000-05-152-14/+20
| | | | Some Submitted by: docs/18543 (Anatoly Vorobey)
* Typo: "ealgo" -> "aalgo"hoek2000-05-151-1/+1
| | | | PR: docs/18547 (OKAZAKI Tetsurou <okazaki@be.to>)
* .Xr boot0cfg 8 ,hoek2000-05-131-0/+1
| | | | PR: misc/18267 (Usov Alexander <[3]usov@ups.kiev.ua>)
* Add external for -i option.grog2000-05-111-1/+2
|
* Remove description of the -v option for init and start.grog2000-05-111-40/+43
| | | | | | | | | | Describe -i option for start. Update description of start command (will now work on plexes). Update discussion of choice of stripe size (don't use power of 2). Remove references to raw devices.
* Add -i (interval) option, for use with start command.grog2000-05-111-2/+15
|
* vinum_info: Use the correct field to determine whether trace entriesgrog2000-05-111-16/+11
| | | | | | | | | are read or write. Bug-introduced-in: Revision 1.26 Show percentage complete in brief status of reviving and initializing subdisks.
* start plex/subdisk:grog2000-05-111-57/+31
| | | | | | | | | | | | Add -i option to delay between blocks copied, to reduce performance impact. Remove -v option, things work now. Rewrite parity maintenance functions. Rebuildparity: Add -v option to check whether it was broken before rebuilding each block.
* Supply only one author name per instance of %A, as per mdoc.samples(7).sheldonh2000-05-101-1/+2
| | | | | PR: 18465 Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
* Tidy up the offset calculations.ps2000-05-091-5/+4
| | | | Submitted by: bde
* Add '-DPC98' to CFLAGS if MACHINE == pc98.nyan2000-05-092-0/+10
|
* Read the correct size into kdumplo.ps2000-05-091-1/+1
| | | | Botched/Noticed by: peter
* Allow savecore to work on > 2GB partitions.ps2000-05-081-2/+4
| | | | Submitted by: peter
* Update device name.kris2000-05-071-1/+1
|
* Update references to disk and tape devices.kris2000-05-071-5/+5
|
* Update device names in examples.kris2000-05-071-3/+3
|
* Fix typophantom2000-05-062-2/+3
| | | | Noticed by: hoek
* Correct an xref.mpp2000-05-051-1/+3
| | | | | PR: doc/13218 Submitted by: phantom
OpenPOWER on IntegriCloud