man-pages/man4/full.4

53 lines
1.8 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" -*- nroff -*-
.\"
.\" This man-page is Copyright (C) 1997 John S. Kallal
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" correction, aeb, 970825
.TH FULL 4 1997-08-02 "Linux" "Linux Programmer's Manual"
.SH NAME
full \- always full device
.SH DESCRIPTION
2005-11-02 13:55:25 +00:00
File \fI/dev/full\fP has major device number 1
2004-11-03 13:51:07 +00:00
and minor device number 7.
.LP
2005-11-02 13:55:25 +00:00
Writes to the \fI/dev/full\fP device will fail with an ENOSPC error.
2004-11-03 13:51:07 +00:00
2005-11-02 13:55:25 +00:00
Reads from the \fI/dev/full\fP device will return \\0 characters.
2004-11-03 13:51:07 +00:00
2005-11-02 13:55:25 +00:00
Seeks on \fI/dev/full\fP will always succeed.
2004-11-03 13:51:07 +00:00
.SH CONFIGURING
2005-11-02 13:55:25 +00:00
If your system does not have \fI/dev/full\fP created already, it
2004-11-03 13:51:07 +00:00
can be created with the following commands:
.nf
2005-07-06 12:57:38 +00:00
mknod \-m 666 /dev/full c 1 7
2004-11-03 13:51:07 +00:00
chown root:root /dev/full
.fi
.SH FILES
/dev/full
.SH "SEE ALSO"
.BR mknod (1),
.BR null (4),
.BR zero (4)