OSDN Git Service

LDP: Update original to LDP v3.77
[linuxjm/LDP_man-pages.git] / original / man4 / mem.4
1 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
2 .\"     Fri Apr  2 11:32:09 MET DST 1993
3 .\"
4 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
5 .\" This is free documentation; you can redistribute it and/or
6 .\" modify it under the terms of the GNU General Public License as
7 .\" published by the Free Software Foundation; either version 2 of
8 .\" the License, or (at your option) any later version.
9 .\"
10 .\" The GNU General Public License's references to "object code"
11 .\" and "executables" are to be interpreted as the output of any
12 .\" document formatting or typesetting system, including
13 .\" intermediate and printed output.
14 .\"
15 .\" This manual is distributed in the hope that it will be useful,
16 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
17 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 .\" GNU General Public License for more details.
19 .\"
20 .\" You should have received a copy of the GNU General Public
21 .\" License along with this manual; if not, see
22 .\" <http://www.gnu.org/licenses/>.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Modified Sat Jul 24 16:59:10 1993 by Rik Faith (faith@cs.unc.edu)
26 .TH MEM 4 2015-01-02 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 mem, kmem, port \- system memory, kernel memory and system ports
29 .SH DESCRIPTION
30 .B mem
31 is a character device file
32 that is an image of the main memory of the computer.
33 It may be used, for example, to examine (and even patch) the system.
34 .LP
35 Byte addresses in
36 .B mem
37 are interpreted as physical memory addresses.
38 References to nonexistent locations cause errors to be returned.
39 .LP
40 Examining and patching is likely to lead to unexpected results
41 when read-only or write-only bits are present.
42 .LP
43 Since 2.6.26, and depending on the architecture, the
44 .B CONFIG_STRICT_DEVMEM
45 kernel configuration option limits the areas
46 which can be accessed through this file.
47 For example: on x86, RAM access is not allowed but accessing
48 memory-mapped PCI regions is.
49 .LP
50 It is typically created by:
51 .RS
52 .sp
53 mknod \-m 660 /dev/mem c 1 1
54 .br
55 chown root:kmem /dev/mem
56 .RE
57 .LP
58 The file
59 .B kmem
60 is the same as
61 .BR mem ,
62 except that the kernel virtual memory
63 rather than physical memory is accessed.
64 Since 2.6.26, this file is only available if the
65 .B CONFIG_DEVKMEM
66 kernel configuration option is enabled.
67 .LP
68 It is typically created by:
69 .RS
70 .sp
71 mknod \-m 640 /dev/kmem c 1 2
72 .br
73 chown root:kmem /dev/kmem
74 .RE
75 .LP
76 .B port
77 is similar to
78 .BR mem ,
79 but the I/O ports are accessed.
80 .LP
81 It is typically created by:
82 .RS
83 .sp
84 mknod \-m 660 /dev/port c 1 4
85 .br
86 chown root:kmem /dev/port
87 .RE
88 .SH FILES
89 .I /dev/mem
90 .br
91 .I /dev/kmem
92 .br
93 .I /dev/port
94 .SH SEE ALSO
95 .BR chown (1),
96 .BR mknod (1),
97 .BR ioperm (2)
98 .SH COLOPHON
99 This page is part of release 3.77 of the Linux
100 .I man-pages
101 project.
102 A description of the project,
103 information about reporting bugs,
104 and the latest version of this page,
105 can be found at
106 \%http://www.kernel.org/doc/man\-pages/.