File: mem.4

package info (click to toggle)
manpages-es 1.24a-6
  • links: PTS
  • area: main
  • in suites: potato
  • size: 4,256 kB
  • ctags: 7
  • sloc: makefile: 66; sh: 62
file content (83 lines) | stat: -rw-r--r-- 2,670 bytes parent folder | download
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.\" Copyright (c) 1993 Michael Haardt (u31b3hs@pool.informatik.rwth-aachen.de), Fri Apr  2 11:32:09 MET DST 1993
.\"
.\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2 of
.\" the License, or (at your option) any later version.
.\"
.\" The GNU General Public License's references to "object code"
.\" and "executables" are to be interpreted as the output of any
.\" document formatting or typesetting system, including
.\" intermediate and printed output.
.\"
.\" This manual is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with this manual; if not, write to the Free
.\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
.\" USA.
.\"
.\" Modified Sat Jul 24 16:59:10 1993 by Rik Faith (faith@cs.unc.edu)
.\" Translated Tue Jul 2 1996 by
.\"   Ignacio Arenaza (Ignacio.Arenaza@studi.epfl.ch)
.\" Translation revised June 16 1998 by Juan Piernas <piernas@dif.um.es>
.\" Translation revised on Tue Apr 6 1999 by Juan Piernas <piernas@ditec.um.es>
.\"
.TH MEM 4 "21 Noviembre 1992" "Linux" "Manual del Programador de Linux"
.SH NOMBRE
mem, kmem, port \- memoria del sistema, memoria del ncleo y puertos
del sistema.
.SH DESCRIPCIN
\fBmem\fP es un fichero de dispositivo de caracteres que representa
a la memoria principal del ordenador. Se puede utilizar, por
ejemplo, para examinar (e incluso parchear) el sistema.
.LP
En \fBmem\fP, las direcciones de bytes se interpretan como direcciones
fsicas de memoria. Las referencias a posiciones no existentes
producen un error.
.LP
El examinar y parchear posiciones de memoria que contienen bits de
slo-lectura o slo-escritura puede conducir a resultados inesperados.
.LP
Normalmente se crea con:
.RS
.sp
mknod -m 660 /dev/mem c 1 1
.br
chown root:mem /dev/mem
.sp
.RE
.LP
El archivo \fBkmem\fP es idntico a \fBmem\fP, excepto que se accede a
la memoria virtual del ncleo, en vez de a la memoria fsica.
.LP
Normalmente se crea con:
.RS
.sp
mknod -m 640 /dev/kmem c 1 2
.br
chown root:mem /dev/kmem
.sp
.RE
.LP
\fBport\fP es similar a \fBmem\fP, pero se accede a los puertos de E/S.
.LP
Normalmente se crea con:
.RS
.sp
mknod -m 660 /dev/port c 1 4
.br
chown root:mem /dev/port
.sp
.RE
.SH FICHEROS
/dev/mem
.br
/dev/kmem
.br
/dev/port
.SH "VASE TAMBIN"
.BR mknod "(1), " chown "(1), " ioperm (2)