aboutsummaryrefslogtreecommitdiff
path: root/man/man4/ramfs.4
blob: 794519810dd2d8c7926c497a8d2e88ae476632cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.TH RAMFS 4
.SH NAME
ramfs  \- memory file system
.SH SYNOPSIS
.B ramfs
[
.B -i
]
[
.B -S
.I service
]
.SH DESCRIPTION
.I Ramfs
starts a 9P file server 
keeping all files in memory.
Initially the file tree is empty.
.PP
By default
.I ramfs
posts its service as
.B ramfs
using
.MR 9pserve (4) .
.PP
The
.B -S
flag specifies an alternate service name for ramfs to use.
.PP
The
.B -i
flag tells
.I ramfs
to use file descriptors 0 and 1 for its communication channel
rather than create a pipe.
This makes it possible to use
.I ramfs
as a file server on a remote machine: the file descriptors 0
and 1 will be the network channel from
.I ramfs
to the client machine.
.PP
This program is useful mainly as an example of how
to write a user-level file server.
It can also be used to provide high-performance temporary files.
.SH SOURCE
.B \*9/src/cmd/ramfs.c
.SH "SEE ALSO"
.MR 9p (3) ,
.MR 9pserve (4)