full β always full device
| Use Case | Command | Description |
|---|---|---|
| Test diskβfull error handling | echo "test" > /dev/full |
π Write fails with ENOSPC error |
Create /dev/full device |
mknod -m 666 /dev/full c 1 7 |
βοΈ Creates the device if missing |
| Set device ownership | chown root:root /dev/full |
π Sets proper owner and group |
| Read null bytes | cat /dev/full |
π’ Outputs \0 (null) characters indefinitely |
| Seek on device | lseek on /dev/full |
π Seek operations always succeed |
If your system does not have /dev/full created already, it can be created with the following commands:
mknod -m 666 /dev/full c 1 7
chown root:root /dev/full
The file /dev/full has major device number 1 and minor device number 7.
This page is part of release 5.10 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
Generated by phpman v4.10.0-7-g98e9fd5 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-09-19 21:08 @216.73.216.42
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)