|
console_ioctl(4) -- ioctl's for console terminal and virtual consoles
|
WARNING: If you use the following information you are going to burn yourself. WARNING: ioctl's are undocumented Linux internals, liable to be changed without warning. Use POSIX functions. The followi... |
console_ioctls(4) -- 0console ioctl's- ioctl's for console terminal and virtual consoles
|
WARNING: If you use the following information you are going to burn yourself. WARNING: ioctl's are undocumented Linux internals, liable to be changed without warning. Use POSIX functions where availa... |
dsp56k(4) -- DSP56001 interface device
|
The Motorola DSP56001 is a fully programmable 24-bit digital signal processor found in Atari Falcon030-compatible computers. The dsp56k special file is used to control the DSP56001, and to send and re... |
fd(4) -- floppy disk device
|
fd special files access the floppy disk drives in raw mode. The following ioctl(2) calls are supported by fd devices: FDCLRPRM [Toc] [Back] clears the media information of a drive (geometry of d... |
fifo(4) -- first-in first-out special file, named pipe
|
A FIFO special file (a named pipe) is similar to a pipe, except that it is accessed as part of the file system. It can be opened by multiple processes for reading or writing. When processes are exchan... |
full(4) -- always full device
|
File /dev/full has major device number 1 and minor device number 7. Writes to the /dev/full device will fail with an ENOSPC error. Reads from the /dev/full device will return \0 characters. Seeks on ... |
hd(4) -- MFM/IDE hard disk devices
|
The hd* devices are block devices to access MFM/IDE hard disk drives in raw mode. The master drive on the primary IDE controller (major device number 3) is hda; the slave drive is hdb. The master driv... |
initrd(4) -- boot loader initialized RAM disk
|
The special file /dev/initrd is a read-only block device. Device /dev/initrd is a RAM disk that is initialized (e.g. loaded) by the boot loader before the kernel is started. The kernel then can use th... |
intro(4) -- Introduction to special files
|
This chapter describes special files. |
lp(4) -- line printer devices
|
The following ioctl(2) calls are supported: int ioctl(int fd, LPTIME, int arg) Sets the amount of time that the driver sleeps before rechecking the printer when the printer's buffer appears to be fil... |
mem(4) -- system memory, kernel memory and system ports
|
Mem is a character device file that is an image of the main memory of the computer. It may be used, for example, to examine (and even patch) the system. Byte addresses in mem are interpreted as physic... |
mouse(4) -- serial mouse interface
|
Introduction The pinout of the usual 9 pin plug as used for serial mice is: pin name used for 2 RX Data 3 TX -12 V, Imax = 10 mA 4 DTR +12 V, Imax = 10 mA 7 RTS +12 V, Imax = 10 mA 5 GND Ground This i... |
null(4) -- data sink
|
Data written on a null or zero special file is discarded. Reads from the null special file always return end of file, whereas reads from zero always return \0 characters. null and zero are typically ... |