| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
- Sort xrefs
- FreeBSD.ORG -> FreeBSD.org
- Be consistent with section names as outlines in mdoc(7)
- Other misc mdoc cleanup.
PR: doc/13144
Submitted by: Alexy M. Zelkin <phantom@cris.net>
|
| |
|
| |
|
|
|
|
|
|
|
| |
Removed POSIX.1/NetBSD markup (braces) for NAME_MAX, etc. We don't
define this. Most FreeBSD man pages hard-code the limits; in fact,
utimes.2 recently became the only file in libc/sys/*.2 that mentions
NAME_MAX. There probably should be mandoc macros for this.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Text is a compromise based on messages from Wes Peters, Ville-Pertti
Keinonen, and Matt Dillon.
PR: docs/10512
Submitted by: Howard Goldstein <hgoldst@mpcs.com>
|
|
|
|
|
|
| |
Note: you need to install the current groff tmac macros for these
man pages to format correctly. Specifically, rev 1.21 of
contrib_groff/tmac/doc-syms in -current, or rev 1.17.24 for 3.2-stable
|
|
|
|
|
|
| |
added to the getdirentries(2) man page because 95%+ of that
man page comprised the text of the getdents(2) man page
I obtained from NetBSD.
|
|
|
|
| |
Pointed-out-by: bde
|
|
|
|
|
|
|
|
| |
still needs some cleanup which is why it hasn't been added to the
Makefile yet.
Obtained from: NetBSD
Pointed-out-by: bde
|
|
|
|
|
| |
PR: kern/11213
Obtained from: NetBSD w/some minor changes by me
|
| |
|
|
|
|
|
| |
PR: 12810
Submitted by: Alex Perel <veers@disturbed.net>
|
|
|
|
|
| |
PR: 12634 (partial)
Submitted by: Julian H. Stacey jhs@FreeBSD.ORG
|
|
|
|
|
|
|
| |
uintfptr_t may be better for offset, but we must wait until
the definition of uintfptr_t moves from machine/profile.h.
Reviewed by: bde
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
track.
The $Id$ line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;
.\" $Id$
.\"
If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.
Approved by: bde
|
| |
|
| |
|
| |
|
|
|
|
| |
and "corrected" statement of Posix conformance.
|
| |
|
|
|
|
|
|
|
| |
kldunload. Add proper cross-references to the whole family.
PR: 12472
Submitted by: Chris Costello <chris@calldei.com>
|
|
|
|
| |
Submitted by: Alfred Perlstein <bright@rush.net>
|
|
|
|
|
|
|
| |
caller is not the super-user. Also document that we do not
currently support the per-process RLIMIT_MEMLOCK limit.
PR: doc/11607
|
| |
|
| |
|
| |
|
|
|
|
| |
Prompted by (and thanks to): W Richard Stevens
|
|
|
|
|
|
|
| |
Documentation Project <http://home.wxs.nl/~asmodai/pdp.html>
Submitted by: Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
PR: docs/12030
|
|
|
|
|
| |
PR: docs/11832
Submitted by: Ralf S. Engelschall <rse@engelschall.com>
|
| |
|
|
|
|
|
|
|
| |
UNIX domain socket on which connect(2) had been used to set a destination
address and the destination goes away.
PR: docs/10451
|
|
|
|
|
|
| |
PAGE_SIZE for sys/shm.h.
PR: docs/8464
|
|
|
|
| |
PR: docs/3522
|
|
|
|
| |
PR: docs/8858
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a seriously beefed up chroot kind of thing. The process
is jailed along the same lines as a chroot does it, but with
additional tough restrictions imposed on what the superuser can do.
For all I know, it is safe to hand over the root bit inside a
prison to the customer living in that prison, this is what
it was developed for in fact: "real virtual servers".
Each prison has an ip number associated with it, which all IP
communications will be coerced to use and each prison has its own
hostname.
Needless to say, you need more RAM this way, but the advantage is
that each customer can run their own particular version of apache
and not stomp on the toes of their neighbors.
It generally does what one would expect, but setting up a jail
still takes a little knowledge.
A few notes:
I have no scripts for setting up a jail, don't ask me for them.
The IP number should be an alias on one of the interfaces.
mount a /proc in each jail, it will make ps more useable.
/proc/<pid>/status tells the hostname of the prison for
jailed processes.
Quotas are only sensible if you have a mountpoint per prison.
There are no privisions for stopping resource-hogging.
Some "#ifdef INET" and similar may be missing (send patches!)
If somebody wants to take it from here and develop it into
more of a "virtual machine" they should be most welcome!
Tools, comments, patches & documentation most welcome.
Have fun...
Sponsored by: http://www.rndassociates.com/
Run for almost a year by: http://www.servetheweb.com/
|
|
|
|
| |
mknod(2).
|
|
|
|
|
|
|
| |
filesystems with the "nosuid" option. Mention that syscall tracing
is disabled sometimes.
PR: misc/11328
|
|
|
|
| |
Obtained from: NetBSD (mostly)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Unlike other filesystem objects, symbolic links do not have an owner,
group, access mode, times, etc. Instead, these attributes are taken from
the directory that contains the link. The only attributes returned from
an lstat() that refer to the symbolic link itself are the file type
(S_IFLNK), size, blocks, and link count (always 1).
This is bogus, and disagrees with the implementation and symlink(7).
Removed it.
PR: docs/10269
Submitted by: Tolik <tolik@sibptus.tomsk.ru>
|
|
|
|
| |
Fixed some mdoc usage errors.
|
| |
|
| |
|
|
|
|
|
| |
PR: docs/10412
Submitted by: Chris Costello <chris@calldei.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
kern.chroot_allow_open_directories = 0
chroot(2) fails if there are open directories.
kern.chroot_allow_open_directories = 1 (default)
chroot(2) fails if there are open directories and the process
is subject of a previous chroot(2).
kern.chroot_allow_open_directories = anything else
filedescriptors are not checked. (old behaviour).
I'm very interested in reports about software which breaks when
running with the default setting.
|
| |
|
|
|
|
|
| |
PR: docs/10530
Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
|