diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-10-31 01:44:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-10-31 01:44:00 +0000 |
commit | 373ccae3f7cdc5374406b004cee032ebdb762c81 (patch) | |
tree | d5d9728dee63e532a58a062f52d9a5faabeb4701 /share | |
parent | 1609dfceafe370c4bf19a548ef833601ae5388d4 (diff) |
There's no point in using a small block size when creating a swap
partition, it just slows down dd.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man8/diskless.8 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man8/diskless.8 b/share/man/man8/diskless.8 index 34094df6951..1439b188017 100644 --- a/share/man/man8/diskless.8 +++ b/share/man/man8/diskless.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: diskless.8,v 1.19 2002/08/29 07:34:31 wcobb Exp $ +.\" $OpenBSD: diskless.8,v 1.20 2002/10/31 01:43:59 millert Exp $ .\" $NetBSD: diskless.8,v 1.7.4.1 1996/05/30 18:58:10 cgd Exp $ .\" .\" @@ -241,7 +241,7 @@ Build the swap file for myclient: .Bd -literal -offset indent -compact # mkdir /export/myclient # cd /export/myclient -# dd if=/dev/zero of=swap bs=16k count=1024 +# dd if=/dev/zero of=swap bs=1m count=16 .Ed This creates a 16 Megabyte swap file. .Pp |