Commit Graph

398 Commits

Author SHA1 Message Date
ugen
b115df49dc Fixed manpage..ldeny,lreject and log options are there
and others not..
Submitted by:	torstenb@FreeBSD.ORG
1995-02-27 10:52:22 +00:00
phk
5d9bd5b56a The things you have to go through some times! Add a minimal program to
read a termcap entry, since tset is picky about filedescriptors...
1995-02-26 20:39:40 +00:00
phk
892a7ad162 oops. 1995-02-26 02:00:35 +00:00
phk
db0922b876 Add a '-p' option to md5. This will save some time in generation of the
ctm deltas.
1995-02-26 01:55:31 +00:00
ache
c334f2853b configure_network() if carrier already present
Submitted by: serg@opus.opu.odessa.ua
1995-02-25 18:06:23 +00:00
ugen
f3de1631fc Change utility to accept interface name
along with IP as "via" argument
1995-02-24 14:32:45 +00:00
phk
580692df64 Fix -Wall warnings.
Yes I have better things to do, but just now I'm waiting...
1995-02-23 07:05:01 +00:00
bde
65444b86b5 Don't clobber d_secperunit in disklabel -e'. disklabel -e' replaces all
the values that it doesn't print by defaults.  This seems wrong.  I want
to be able to see the total number of sectors more than edit it.  The
default d_secperunit of (sectors/track * tracks/cylinder * cylinders) is
bogus if sectors/track is only an approximation and more bogus if
sectors/track and tracks/cylinder are dummy values such as 4096 and 1
to defeat ufs's pessimizations.
1995-02-22 23:21:29 +00:00
ats
babe77cee4 Document the mountdtab file in the man page. 1995-02-22 21:42:48 +00:00
wollman
4d90fd7141 Use POSIX.2 regular expressions, get rid of libcompat. 1995-02-21 04:05:20 +00:00
guido
c8660b50b6 Implement maxprocperuid and maxfilesperproc. They are tunable
via sysctl(8). The initial value of maxprocperuid is maxproc-1,
that of maxfilesperproc is maxfiles (untill maxfile will disappear)

Now it is at least possible to prohibit one user opening maxfiles

-Guido

Submitted by:
Obtained from:
1995-02-20 19:42:42 +00:00
phk
fa66c973d8 Clean this file up so it is readable... 1995-02-20 00:48:50 +00:00
jkh
541a543c39 ipfirewall.4 is obviously not here anymore! Adjust the Makefile. 1995-02-18 16:36:23 +00:00
ugen
8b940520b7 Finally document "via" feature.. 1995-02-17 15:44:08 +00:00
jkh
38ea135171 fstab is in section 5, not section 8.
Obtained from: NetBSD
1995-02-17 03:37:33 +00:00
bde
d6ee5e56b1 Fix another bogon in the change before the last. 1995-02-16 11:23:25 +00:00
wollman
ffc5acb7aa Allow the user access to net.inet.igmp, even though there's nothing
sysctl(8) can interpret there.  (Someday there might be.)
1995-02-16 00:28:42 +00:00
ache
23fc8dcfb6 Changes for new _menu interface 1995-02-15 19:48:10 +00:00
dg
6e6d9b50f5 Woops, last change wasn't done quite right...fixed. 1995-02-15 14:45:08 +00:00
dg
924afc8ee9 Yanked out (now obsolete) support for 'fastboot'. 1995-02-15 14:35:29 +00:00
dg
a65847afd2 Include the special device in the error output so that it makes sense. 1995-02-15 14:29:26 +00:00
dg
5fd0c3dcf7 Verify that the last component of the mount point path exists and is
a directory - allows for better error reporting.
1995-02-15 14:20:50 +00:00
dg
e2ffa8f52b Slight change of wording on clean flag not set message to appease some
complaints.
1995-02-15 00:23:56 +00:00
dg
315a3f5ea7 >The fix for the missing ".." in the root directory is enclosed below.
Submitted by:	Kirk McKusick
1995-02-15 00:17:56 +00:00
ugen
542d463109 Ppl asked to make ipfw smarter..ok..
here it is..
1995-02-14 09:34:04 +00:00
ugen
be7680c494 Fix for rather stupid bug by which you couldn't set
ports for the destination IP addr/port.
Nobody reported this btw , while a lot of other things reported-
probably ppl does not use destination ports at all????
1995-02-14 08:28:27 +00:00
phk
cbb5ea605f Made the changes needed here to install from a CDrom.
Cleaned some cruft in the process.
This program becomes curiouser curiouser...
1995-02-13 06:52:16 +00:00
martin
b520145b47 Added FIFO restore capability. 1995-02-10 21:57:02 +00:00
jkh
5a22617dae Prepare for 950210-SNAP 1995-02-10 01:13:27 +00:00
wollman
2a0e704e47 Implement TCP MIB variables. 1995-02-09 23:16:17 +00:00
bde
d5e93687ca Don't allow the alternate superblock block number for one file system
to apply to others (except when it is given on the command line).
1995-02-09 15:58:31 +00:00
ugen
61934342c6 Ok..at least this man page is up to date now
To be continued..
1995-02-09 13:13:18 +00:00
phk
b173ece05e Allow zero as value for certain arguments to indicate "take from disklabel". 1995-02-05 18:03:37 +00:00
phk
d19bc1f311 Change the defaults for newfs to disregard the geometry in the disklabel.
We pretend we have one head with two megabyte worth of sectors per cylinder.

The code try to access another head in what it belives to the same
physical cylinder, because it belives that it would be faster than
waiting for the next free sector under this head to come around.

Most modern drives doesn't have a "classical" geometry, and thus
we end up fooling ourselves doing the above optimization.  With this
change we will fill a cylinder sequentially if we can, and thus get
much more mileage from the track-buffer/cache built into the drives.

As a result a lot of seeks to the next or previous track should be
avoided by this.

(My disk is a lot less noisy actually...)

You can still get the old behaviour, by specifying zero for the
numbers.

This will also solve the problem with newfs barfing at really big
drives.

Obtained from:	adult advice from Kirk.
1995-02-05 08:42:31 +00:00
jkh
57d08d82d5 Bump the date to February 2nd. 1995-02-02 08:32:11 +00:00
jkh
89a929976d Mkdir() now takes two flags. 1995-02-02 05:49:06 +00:00
phk
99e7eb248e Make dirs for msdos fs's. 1995-02-02 05:35:36 +00:00
jkh
b6d51ebcc2 Do what I think Poul *intended* to do, rather than what he did.. :-) 1995-02-01 11:15:45 +00:00
jkh
f17ea47e1d Bump snap date. Our current version numbering scheme loses.
How can we get ONE canonical version string into everything?
1995-02-01 11:03:35 +00:00
phk
d9bb293a04 I have taken sysinstall out of the normal SUBDIR rule. There are too
many build problems just now, and it isn't that general after all.
1995-01-31 19:41:08 +00:00
dfr
35bca936c2 Add support for kerberised NQNFS.
Reviewed by:
Submitted by:
Obtained from:
1995-01-30 19:18:11 +00:00
dfr
36afe918b7 Add support for kerberised NQNFS. 1995-01-30 18:56:06 +00:00
phk
187ae2a428 Move the real kernel onto the cpio.flp and read this from the boot.flp
make debug handling with serial console obnoxious, but present.
1995-01-30 03:19:58 +00:00
phk
c593483b57 Some cleanup done.
Include bteasy, bootsd, sdboot and termcap entries using file2.c

Remove all traces of "termcap.small".

The policy in this program regarding termcap is:

| If $TERM is set
| 	do nothing special, rely on usual termcap.
| else
| 	use compiled in (via file2c) termcap entries
1995-01-29 02:31:38 +00:00
ats
8c528bd61a fix another bug in the MAKEDEV cludge :-). The x-bit permission are not
necessarly copied over. So better call it explicit with a sh ./MAKEDEV .
1995-01-29 01:45:54 +00:00
ats
816a3911bb Correct the relative path for the etc directory in the makedev cludge :-). 1995-01-29 01:25:17 +00:00
jkh
a6b0684759 Less kludge dev. 1995-01-28 09:17:58 +00:00
jkh
d199501222 A different kludge for /dev 1995-01-28 09:16:41 +00:00
jkh
e03772c8b6 Poul lost his copy of K&R again - add a semicolon to the end of the
preceeding statement..
1995-01-28 05:00:50 +00:00
phk
57ce067962 Update to BTEASY 1.7
Submitted by:	vak
1995-01-28 04:42:08 +00:00