summaryrefslogtreecommitdiff
path: root/sys/man/4
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-08-21 19:51:03 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2015-08-21 19:51:03 +0200
commitcb474632d3f23de10fea2d70a4b4c98d8f3a3755 (patch)
tree06c0c53b4a32032388e3ced67ed327667c510a6e /sys/man/4
parent3db2012126385e19923ecf742315b62c0b4b4ff8 (diff)
remove kfs references from manual
Diffstat (limited to 'sys/man/4')
-rw-r--r--sys/man/4/cwfs3
-rw-r--r--sys/man/4/dossrv2
-rw-r--r--sys/man/4/fs4
-rw-r--r--sys/man/4/kfs135
4 files changed, 3 insertions, 141 deletions
diff --git a/sys/man/4/cwfs b/sys/man/4/cwfs
index beb800c7e..7d0c69cfa 100644
--- a/sys/man/4/cwfs
+++ b/sys/man/4/cwfs
@@ -180,8 +180,7 @@ on a combination of disks and
write-once-read-many (WORM) magneto-optical disks.
.TP
.B other
-is a simple disk-based file system similar to
-.IR kfs (4) .
+is a simple disk-based file system not backed by worm.
.TP
.B main
is a worm-based file system with a disk-based
diff --git a/sys/man/4/dossrv b/sys/man/4/dossrv
index 249c0a648..99363809c 100644
--- a/sys/man/4/dossrv
+++ b/sys/man/4/dossrv
@@ -162,8 +162,6 @@ If the floppy drive has an ejection motor,
will spit out the floppy from drive
.IR n ,
default 0.
-.SH "SEE ALSO"
-.IR kfs (4)
.SH SOURCE
.B /sys/src/cmd/dossrv
.br
diff --git a/sys/man/4/fs b/sys/man/4/fs
index 808dd9720..014f55e3b 100644
--- a/sys/man/4/fs
+++ b/sys/man/4/fs
@@ -45,8 +45,8 @@ on a combination of disks and
write-once-read-many (WORM) magneto-optical disks.
.TP
.B other
-is a simple disk-based file system similar to
-.IR kfs (4) .
+is a simple disk-based file system not backed by
+the worm.
.TP
.B main
is a worm-based file system with a disk-based
diff --git a/sys/man/4/kfs b/sys/man/4/kfs
deleted file mode 100644
index f386ecbc5..000000000
--- a/sys/man/4/kfs
+++ /dev/null
@@ -1,135 +0,0 @@
-.TH KFS 4
-.SH NAME
-kfs \- disk file system
-.SH SYNOPSIS
-.B disk/kfs
-[
-.B -rc
-] [
-.B -b
-.I n
-] [
-.B -f
-.I file
-] [
-.B -n
-.I name
-] [
-.B -p
-.I perm
-] [
-.B -s
-] [
-.B -B
-.I nbuf
-]
-.SH DESCRIPTION
-.I Kfs
-is an old, local user-level file server for a Plan 9 terminal with a disk.
-It maintains a hierarchical Plan 9 file system on the disk
-and offers
-9P (see
-.IR intro (5))
-access to it.
-.I Kfs
-begins by
-checking the file system for consistency,
-rebuilding the free list, and placing a file descriptor in
-.BI /srv/ name\f1,
-where
-.I name
-is the service name (default
-.BR kfs ).
-If the file system is inconsistent,
-the user is asked for permission to ream
-.RI ( q.v. )
-the disk.
-The file system is not checked if it is reamed.
-.PP
-The options are
-.TF "n name"
-.TP
-.BI "b " n
-If the file system is reamed, use
-.I n
-byte blocks.
-Larger blocks make the file system faster
-and less space efficient.
-.B 1024
-and
-.B 4096
-are good choices.
-.I N
-must be a multiple of 512.
-.TP
-.B c
-Do not check the file system.
-.TP
-.BI "f " file
-Use
-.I file
-as the disk.
-The default is
-.BR /dev/sdC0/fs .
-.TP
-.BI "n " name
-Use
-.RI kfs. name
-as the name of the service.
-.TP
-.BI "p " perm
-Use
-.I perm
-as the initial permissions for the
-command channel
-.BI /srv/ service .cmd\fR;
-the default is 660.
-.TP
-.B r
-Ream the file system, erasing all of the old data
-and adding all blocks to the free list.
-.TP
-.B s
-Post file descriptor zero in
-.BI /srv/ service
-and read and write protocol messages on file descriptor one.
-.TP
-.B B
-Allocate
-.I nbuf
-in-memory file system blocks.
-The default is as many as will fit in 10% of memory
-or two megabytes, whichever is smaller.
-.PD
-.SH EXAMPLES
-Create a file system with service name
-.I kfs.local
-and mount it on
-.BR /n/kfs .
-.IP
-.EX
-% disk/kfs -rb4096 -nlocal
-% mount -c /srv/kfs.local /n/kfs
-.EE
-.PP
-.SH FILES
-.TF /dev/sdC0/fs
-.TP
-.B /dev/sdC0/fs
-Default file holding blocks.
-.SH SOURCE
-.B /sys/src/cmd/disk/kfs
-.SH "SEE ALSO"
-.IR kfscmd (8),
-.IR mkfs (8),
-.IR prep (8),
-.IR sd (3)
-.SH BUGS
-For the moment,
-.I kfs
-serves both the old (third edition) and new (fourth
-edition) versions of 9P, deciding which to serve by sniffing the first packet on each
-connection.
-.LP
-.I Kfs
-doesn't allow creating files with component names longer than 28 bytes.