OSDN Git Service

83cccd34c8d3ab1fa4616edb5918afd913cc803e
[linuxjm/LDP_man-pages.git] / draft / man4 / full.4
1 .\" -*- nroff -*-
2 .\"
3 .\" This man-page is Copyright (C) 1997 John S. Kallal
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\" correction, aeb, 970825
26 .\"
27 .\" Japanese Version Copyright (c) 1998
28 .\"         ISHIKAWA Mutsumi, all rights reserved.
29 .\"
30 .\" Translated into Japanese Mon Jan 12 02:59:50 JST 1998
31 .\"         by ISHIKAWA Mutsumi <ishikawa@linux.or.jp>
32 .\" Updated 2006-07-20, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>, LDP v2.34
33 .\"
34 .TH FULL 4 2007-11-24 "Linux" "Linux Programmer's Manual"
35 .\"O .SH NAME
36 .\"O full \- always full device
37 .SH 名前
38 full \- いつも full であるデバイス
39 .\"O .SH CONFIGURATION
40 .SH 設定
41 .\"O If your system does not have \fI/dev/full\fP created already, it
42 .\"O can be created with the following commands:
43 システムに作成済みの \fI/dev/full\fP がない場合、
44 次のコマンドにより作成できる。
45 .nf
46
47         mknod \-m 666 /dev/full c 1 7
48         chown root:root /dev/full
49 .fi
50 .\"O .SH DESCRIPTION
51 .\"O File \fI/dev/full\fP has major device number 1
52 .\"O and minor device number 7.
53 .SH 説明
54 \fI/dev/full\fP は、メジャーデバイス番号 1、
55 マイナーデバイス番号 7 のファイルである。
56 .LP
57 .\"O Writes to the \fI/dev/full\fP device will fail with an
58 .\"O .B ENOSPC
59 .\"O error.
60 .\"O This can be used to test how a program handles disk-full errors.
61 \fI/dev/full\fP デバイスへの書き込みは、
62 .B ENOSPC
63 エラーで失敗する。
64 この動作を使って、プログラムがディスクフルのエラーをどのように
65 処理するかをテストできる。
66
67 .\"O Reads from the \fI/dev/full\fP device will return \\0 characters.
68 \fI/dev/full\fP デバイスからの読み出しでは、\\0 文字(ヌル文字)が返される。
69
70 .\"O Seeks on \fI/dev/full\fP will always succeed.
71 \fI/dev/full\fP のシーク (seek) は常に成功する。
72 .\"O .SH FILES
73 .SH ファイル
74 /dev/full
75 .\"O .SH "SEE ALSO"
76 .SH 関連項目
77 .BR mknod (1),
78 .BR null (4),
79 .BR zero (4)
80 .\"O .SH 翻訳者
81 .\"O 石川 睦 <ishikawa@linux.or.jp>