bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1 | \input texinfo @c -*- texinfo -*- |
| 2 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 3 | @iftex |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 4 | @settitle QEMU CPU Emulator User Documentation |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 5 | @titlepage |
| 6 | @sp 7 |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 7 | @center @titlefont{QEMU CPU Emulator User Documentation} |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 8 | @sp 3 |
| 9 | @end titlepage |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 10 | @end iftex |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 11 | |
| 12 | @chapter Introduction |
| 13 | |
bellard | 322d0c6 | 2003-06-15 23:29:28 +0000 | [diff] [blame] | 14 | @section Features |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 15 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 16 | QEMU is a FAST! processor emulator using dynamic translation to |
| 17 | achieve good emulation speed. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 18 | |
| 19 | QEMU has two operating modes: |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 20 | |
| 21 | @itemize @minus |
| 22 | |
| 23 | @item |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 24 | Full system emulation. In this mode, QEMU emulates a full system (for |
| 25 | example a PC), including a processor and various peripherials. It can |
| 26 | be used to launch different Operating Systems without rebooting the |
| 27 | PC or to debug system code. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 28 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 29 | @item |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 30 | User mode emulation (Linux host only). In this mode, QEMU can launch |
| 31 | Linux processes compiled for one CPU on another CPU. It can be used to |
| 32 | launch the Wine Windows API emulator (@url{http://www.winehq.org}) or |
| 33 | to ease cross-compilation and cross-debugging. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 34 | |
| 35 | @end itemize |
| 36 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 37 | As QEMU requires no host kernel driver to run, it is very safe and |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 38 | easy to use. |
bellard | 322d0c6 | 2003-06-15 23:29:28 +0000 | [diff] [blame] | 39 | |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 40 | For system emulation, the following hardware targets are supported: |
| 41 | @itemize |
| 42 | @item PC (x86 processor) |
| 43 | @item PREP (PowerPC processor) |
| 44 | @end itemize |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 45 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 46 | For user emulation, x86, PowerPC, ARM, and SPARC CPUs are supported. |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 47 | |
bellard | 5b9f457 | 2003-10-28 00:49:54 +0000 | [diff] [blame] | 48 | @chapter Installation |
| 49 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 50 | @section Linux |
| 51 | |
bellard | 5b9f457 | 2003-10-28 00:49:54 +0000 | [diff] [blame] | 52 | If you want to compile QEMU, please read the @file{README} which gives |
| 53 | the related information. Otherwise just download the binary |
| 54 | distribution (@file{qemu-XXX-i386.tar.gz}) and untar it as root in |
| 55 | @file{/}: |
| 56 | |
| 57 | @example |
| 58 | su |
| 59 | cd / |
| 60 | tar zxvf /tmp/qemu-XXX-i386.tar.gz |
| 61 | @end example |
| 62 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 63 | @section Windows |
bellard | 8cd0ac2 | 2004-05-12 19:09:16 +0000 | [diff] [blame] | 64 | |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 65 | @itemize |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 66 | @item Install the current versions of MSYS and MinGW from |
| 67 | @url{http://www.mingw.org/}. You can find detailed installation |
| 68 | instructions in the download section and the FAQ. |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 69 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 70 | @item Download |
| 71 | the MinGW development library of SDL 1.2.x |
| 72 | (@file{SDL-devel-1.2.x-mingw32.tar.gz}) from |
| 73 | @url{http://www.libsdl.org}. Unpack it in a temporary place, and |
| 74 | unpack the archive @file{i386-mingw32msvc.tar.gz} in the MinGW tool |
| 75 | directory. Edit the @file{sdl-config} script so that it gives the |
| 76 | correct SDL directory when invoked. |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 77 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 78 | @item Extract the current version of QEMU. |
| 79 | |
| 80 | @item Start the MSYS shell (file @file{msys.bat}). |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 81 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 82 | @item Change to the QEMU directory. Launch @file{./configure} and |
| 83 | @file{make}. If you have problems using SDL, verify that |
| 84 | @file{sdl-config} can be launched from the MSYS command line. |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 85 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 86 | @item You can install QEMU in @file{Program Files/Qemu} by typing |
| 87 | @file{make install}. Don't forget to copy @file{SDL.dll} in |
| 88 | @file{Program Files/Qemu}. |
bellard | 1eb8725 | 2003-04-11 01:12:28 +0000 | [diff] [blame] | 89 | |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 90 | @end itemize |
| 91 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 92 | @section Cross compilation for Windows with Linux |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 93 | |
| 94 | @itemize |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 95 | @item |
| 96 | Install the MinGW cross compilation tools available at |
| 97 | @url{http://www.mingw.org/}. |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 98 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 99 | @item |
| 100 | Install the Win32 version of SDL (@url{http://www.libsdl.org}) by |
| 101 | unpacking @file{i386-mingw32msvc.tar.gz}. Set up the PATH environment |
| 102 | variable so that @file{i386-mingw32msvc-sdl-config} can be launched by |
| 103 | the QEMU configuration script. |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 104 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 105 | @item |
| 106 | Configure QEMU for Windows cross compilation: |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 107 | @example |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 108 | ./configure --enable-mingw32 |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 109 | @end example |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 110 | If necessary, you can change the cross-prefix according to the prefix |
| 111 | choosen for the MinGW tools with --cross-prefix. You can also use |
| 112 | --prefix to set the Win32 install path. |
bellard | 168485b | 2003-03-29 16:57:34 +0000 | [diff] [blame] | 113 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 114 | @item You can install QEMU in the installation directory by typing |
| 115 | @file{make install}. Don't forget to copy @file{SDL.dll} in the |
| 116 | installation directory. |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 117 | |
| 118 | @end itemize |
| 119 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 120 | Note: Currently, Wine does not seem able to launch |
| 121 | QEMU for Win32. |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 122 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 123 | @section Mac OS X |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 124 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 125 | Mac OS X is currently not supported. |
bellard | df0f11a | 2003-05-28 00:27:57 +0000 | [diff] [blame] | 126 | |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 127 | @chapter QEMU PC System emulator invocation |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 128 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 129 | @section Introduction |
| 130 | |
| 131 | @c man begin DESCRIPTION |
| 132 | |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 133 | The QEMU System emulator simulates a complete PC. |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 134 | |
| 135 | In order to meet specific user needs, two versions of QEMU are |
| 136 | available: |
| 137 | |
| 138 | @enumerate |
| 139 | |
| 140 | @item |
bellard | 285dc33 | 2003-10-27 23:58:04 +0000 | [diff] [blame] | 141 | @code{qemu-fast} uses the host Memory Management Unit (MMU) to simulate |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 142 | the x86 MMU. It is @emph{fast} but has limitations because the whole 4 GB |
| 143 | address space cannot be used and some memory mapped peripherials |
| 144 | cannot be emulated accurately yet. Therefore, a specific Linux kernel |
| 145 | must be used (@xref{linux_compile}). |
| 146 | |
| 147 | @item |
bellard | 285dc33 | 2003-10-27 23:58:04 +0000 | [diff] [blame] | 148 | @code{qemu} uses a software MMU. It is about @emph{two times |
| 149 | slower} but gives a more accurate emulation. |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 150 | |
| 151 | @end enumerate |
| 152 | |
| 153 | QEMU emulates the following PC peripherials: |
| 154 | |
| 155 | @itemize @minus |
| 156 | @item |
| 157 | VGA (hardware level, including all non standard modes) |
| 158 | @item |
| 159 | PS/2 mouse and keyboard |
| 160 | @item |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 161 | 2 IDE interfaces with hard disk and CD-ROM support |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 162 | @item |
| 163 | Floppy disk |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 164 | @item |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 165 | up to 6 NE2000 network adapters |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 166 | @item |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 167 | Serial port |
| 168 | @item |
| 169 | Soundblaster 16 card |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 170 | @end itemize |
| 171 | |
| 172 | @c man end |
| 173 | |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 174 | @section Quick Start |
| 175 | |
bellard | 285dc33 | 2003-10-27 23:58:04 +0000 | [diff] [blame] | 176 | Download and uncompress the linux image (@file{linux.img}) and type: |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 177 | |
| 178 | @example |
bellard | 285dc33 | 2003-10-27 23:58:04 +0000 | [diff] [blame] | 179 | qemu linux.img |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 180 | @end example |
| 181 | |
| 182 | Linux should boot and give you a prompt. |
| 183 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 184 | @section Invocation |
| 185 | |
| 186 | @example |
| 187 | @c man begin SYNOPSIS |
| 188 | usage: qemu [options] [disk_image] |
| 189 | @c man end |
| 190 | @end example |
| 191 | |
| 192 | @c man begin OPTIONS |
| 193 | @var{disk_image} is a raw hard disk image for IDE hard disk 0. |
| 194 | |
| 195 | General options: |
| 196 | @table @option |
| 197 | @item -fda file |
| 198 | @item -fdb file |
| 199 | Use @var{file} as floppy disk 0/1 image (@xref{disk_images}). |
| 200 | |
| 201 | @item -hda file |
| 202 | @item -hdb file |
| 203 | @item -hdc file |
| 204 | @item -hdd file |
| 205 | Use @var{file} as hard disk 0, 1, 2 or 3 image (@xref{disk_images}). |
| 206 | |
| 207 | @item -cdrom file |
| 208 | Use @var{file} as CD-ROM image (you cannot use @option{-hdc} and and |
| 209 | @option{-cdrom} at the same time). |
| 210 | |
| 211 | @item -boot [a|c|d] |
| 212 | Boot on floppy (a), hard disk (c) or CD-ROM (d). Hard disk boot is |
| 213 | the default. |
| 214 | |
| 215 | @item -snapshot |
| 216 | Write to temporary files instead of disk image files. In this case, |
| 217 | the raw disk image you use is not written back. You can however force |
| 218 | the write back by pressing @key{C-a s} (@xref{disk_images}). |
| 219 | |
| 220 | @item -m megs |
| 221 | Set virtual RAM size to @var{megs} megabytes. |
| 222 | |
| 223 | @item -initrd file |
| 224 | Use @var{file} as initial ram disk. |
| 225 | |
| 226 | @item -nographic |
| 227 | |
| 228 | Normally, QEMU uses SDL to display the VGA output. With this option, |
| 229 | you can totally disable graphical output so that QEMU is a simple |
| 230 | command line application. The emulated serial port is redirected on |
| 231 | the console. Therefore, you can still use QEMU to debug a Linux kernel |
| 232 | with a serial console. |
| 233 | |
bellard | a8c490c | 2004-04-26 20:59:17 +0000 | [diff] [blame] | 234 | @item -enable-audio |
| 235 | |
| 236 | The SB16 emulation is disabled by default as it may give problems with |
| 237 | Windows. You can enable it manually with this option. |
| 238 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 239 | @end table |
| 240 | |
| 241 | Network options: |
| 242 | |
| 243 | @table @option |
| 244 | |
| 245 | @item -n script |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 246 | Set TUN/TAP network init script [default=/etc/qemu-ifup]. This script |
| 247 | is launched to configure the host network interface (usually tun0) |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 248 | corresponding to the virtual NE2000 card. |
| 249 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 250 | @item -macaddr addr |
| 251 | |
| 252 | Set the mac address of the first interface (the format is |
| 253 | aa:bb:cc:dd:ee:ff in hexa). The mac address is incremented for each |
| 254 | new network interface. |
| 255 | |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 256 | @item -tun-fd fd |
| 257 | Assumes @var{fd} talks to a tap/tun host network interface and use |
| 258 | it. Read @url{http://bellard.org/qemu/tetrinet.html} to have an |
| 259 | example of its use. |
| 260 | |
| 261 | @item -user-net |
| 262 | (Experimental) Use the user mode network stack. This is the default if |
| 263 | no tun/tap network init script is found. |
| 264 | |
| 265 | @item -dummy-net |
| 266 | Use the dummy network stack: no packet will be received on the network |
| 267 | cards. |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 268 | |
| 269 | @end table |
| 270 | |
| 271 | Linux boot specific. When using this options, you can use a given |
| 272 | Linux kernel without installing it in the disk image. It can be useful |
| 273 | for easier testing of various kernels. |
| 274 | |
| 275 | @table @option |
| 276 | |
| 277 | @item -kernel bzImage |
| 278 | Use @var{bzImage} as kernel image. |
| 279 | |
| 280 | @item -append cmdline |
| 281 | Use @var{cmdline} as kernel command line |
| 282 | |
| 283 | @item -initrd file |
| 284 | Use @var{file} as initial ram disk. |
| 285 | |
| 286 | @end table |
| 287 | |
| 288 | Debug options: |
| 289 | @table @option |
| 290 | @item -s |
| 291 | Wait gdb connection to port 1234 (@xref{gdb_usage}). |
| 292 | @item -p port |
| 293 | Change gdb connection port. |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 294 | @item -S |
| 295 | Do not start CPU at startup (you must type 'c' in the monitor). |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 296 | @item -d |
| 297 | Output log in /tmp/qemu.log |
| 298 | @end table |
| 299 | |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 300 | During the graphical emulation, you can use the following keys: |
| 301 | @table @key |
bellard | 10d315a | 2004-05-08 21:00:00 +0000 | [diff] [blame] | 302 | @item Ctrl-Shift |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 303 | Toggle mouse and keyboard grab. |
bellard | 10d315a | 2004-05-08 21:00:00 +0000 | [diff] [blame] | 304 | @item Ctrl-Shift-f |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 305 | Toggle full screen |
| 306 | @end table |
| 307 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 308 | During emulation, if you are using the serial console, use @key{C-a h} |
| 309 | to get terminal commands: |
| 310 | |
| 311 | @table @key |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 312 | @item Ctrl-a h |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 313 | Print this help |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 314 | @item Ctrl-a x |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 315 | Exit emulatior |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 316 | @item Ctrl-a s |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 317 | Save disk data back to file (if -snapshot) |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 318 | @item Ctrl-a b |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 319 | Send break (magic sysrq in Linux) |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 320 | @item Ctrl-a c |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 321 | Switch between console and monitor |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 322 | @item Ctrl-a Ctrl-a |
| 323 | Send Ctrl-a |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 324 | @end table |
| 325 | @c man end |
| 326 | |
| 327 | @ignore |
| 328 | |
| 329 | @setfilename qemu |
| 330 | @settitle QEMU System Emulator |
| 331 | |
| 332 | @c man begin SEEALSO |
| 333 | The HTML documentation of QEMU for more precise information and Linux |
| 334 | user mode emulator invocation. |
| 335 | @c man end |
| 336 | |
| 337 | @c man begin AUTHOR |
| 338 | Fabrice Bellard |
| 339 | @c man end |
| 340 | |
| 341 | @end ignore |
| 342 | |
| 343 | @end ignore |
| 344 | |
| 345 | |
| 346 | @section QEMU Monitor |
| 347 | |
| 348 | The QEMU monitor is used to give complex commands to the QEMU |
| 349 | emulator. You can use it to: |
| 350 | |
| 351 | @itemize @minus |
| 352 | |
| 353 | @item |
| 354 | Remove or insert removable medias images |
| 355 | (such as CD-ROM or floppies) |
| 356 | |
| 357 | @item |
| 358 | Freeze/unfreeze the Virtual Machine (VM) and save or restore its state |
| 359 | from a disk file. |
| 360 | |
| 361 | @item Inspect the VM state without an external debugger. |
| 362 | |
| 363 | @end itemize |
| 364 | |
| 365 | @subsection Commands |
| 366 | |
| 367 | The following commands are available: |
| 368 | |
| 369 | @table @option |
| 370 | |
| 371 | @item help or ? [cmd] |
| 372 | Show the help for all commands or just for command @var{cmd}. |
| 373 | |
| 374 | @item commit |
| 375 | Commit changes to the disk images (if -snapshot is used) |
| 376 | |
| 377 | @item info subcommand |
| 378 | show various information about the system state |
| 379 | |
| 380 | @table @option |
| 381 | @item info network |
| 382 | show the network state |
| 383 | @item info block |
| 384 | show the block devices |
| 385 | @item info registers |
| 386 | show the cpu registers |
| 387 | @item info history |
| 388 | show the command line history |
| 389 | @end table |
| 390 | |
| 391 | @item q or quit |
| 392 | Quit the emulator. |
| 393 | |
| 394 | @item eject [-f] device |
| 395 | Eject a removable media (use -f to force it). |
| 396 | |
| 397 | @item change device filename |
| 398 | Change a removable media. |
| 399 | |
| 400 | @item screendump filename |
| 401 | Save screen into PPM image @var{filename}. |
| 402 | |
| 403 | @item log item1[,...] |
| 404 | Activate logging of the specified items to @file{/tmp/qemu.log}. |
| 405 | |
| 406 | @item savevm filename |
| 407 | Save the whole virtual machine state to @var{filename}. |
| 408 | |
| 409 | @item loadvm filename |
| 410 | Restore the whole virtual machine state from @var{filename}. |
| 411 | |
| 412 | @item stop |
| 413 | Stop emulation. |
| 414 | |
| 415 | @item c or cont |
| 416 | Resume emulation. |
| 417 | |
| 418 | @item gdbserver [port] |
| 419 | Start gdbserver session (default port=1234) |
| 420 | |
| 421 | @item x/fmt addr |
| 422 | Virtual memory dump starting at @var{addr}. |
| 423 | |
| 424 | @item xp /fmt addr |
| 425 | Physical memory dump starting at @var{addr}. |
| 426 | |
| 427 | @var{fmt} is a format which tells the command how to format the |
| 428 | data. Its syntax is: @option{/@{count@}@{format@}@{size@}} |
| 429 | |
| 430 | @table @var |
| 431 | @item count |
| 432 | is the number of items to be dumped. |
| 433 | |
| 434 | @item format |
| 435 | can be x (hexa), d (signed decimal), u (unsigned decimal), o (octal), |
| 436 | c (char) or i (asm instruction). |
| 437 | |
| 438 | @item size |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 439 | can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86, |
| 440 | @code{h} or @code{w} can be specified with the @code{i} format to |
| 441 | respectively select 16 or 32 bit code instruction size. |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 442 | |
| 443 | @end table |
| 444 | |
| 445 | Examples: |
| 446 | @itemize |
| 447 | @item |
| 448 | Dump 10 instructions at the current instruction pointer: |
| 449 | @example |
| 450 | (qemu) x/10i $eip |
| 451 | 0x90107063: ret |
| 452 | 0x90107064: sti |
| 453 | 0x90107065: lea 0x0(%esi,1),%esi |
| 454 | 0x90107069: lea 0x0(%edi,1),%edi |
| 455 | 0x90107070: ret |
| 456 | 0x90107071: jmp 0x90107080 |
| 457 | 0x90107073: nop |
| 458 | 0x90107074: nop |
| 459 | 0x90107075: nop |
| 460 | 0x90107076: nop |
| 461 | @end example |
| 462 | |
| 463 | @item |
| 464 | Dump 80 16 bit values at the start of the video memory. |
| 465 | @example |
| 466 | (qemu) xp/80hx 0xb8000 |
| 467 | 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42 |
| 468 | 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41 |
| 469 | 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72 |
| 470 | 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73 |
| 471 | 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20 |
| 472 | 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720 |
| 473 | 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 |
| 474 | 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 |
| 475 | 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 |
| 476 | 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 |
| 477 | @end example |
| 478 | @end itemize |
| 479 | |
| 480 | @item p or print/fmt expr |
| 481 | |
| 482 | Print expression value. Only the @var{format} part of @var{fmt} is |
| 483 | used. |
| 484 | |
| 485 | @end table |
| 486 | |
| 487 | @subsection Integer expressions |
| 488 | |
| 489 | The monitor understands integers expressions for every integer |
| 490 | argument. You can use register names to get the value of specifics |
| 491 | CPU registers by prefixing them with @emph{$}. |
| 492 | |
| 493 | @node disk_images |
| 494 | @section Disk Images |
| 495 | |
| 496 | @subsection Raw disk images |
| 497 | |
| 498 | The disk images can simply be raw images of the hard disk. You can |
| 499 | create them with the command: |
| 500 | @example |
bellard | a1b74fe | 2004-05-08 13:26:35 +0000 | [diff] [blame] | 501 | dd of=myimage bs=1024 seek=mysize count=0 |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 502 | @end example |
| 503 | where @var{myimage} is the image filename and @var{mysize} is its size |
| 504 | in kilobytes. |
| 505 | |
| 506 | @subsection Snapshot mode |
| 507 | |
| 508 | If you use the option @option{-snapshot}, all disk images are |
| 509 | considered as read only. When sectors in written, they are written in |
| 510 | a temporary file created in @file{/tmp}. You can however force the |
| 511 | write back to the raw disk images by pressing @key{C-a s}. |
| 512 | |
| 513 | NOTE: The snapshot mode only works with raw disk images. |
| 514 | |
| 515 | @subsection Copy On Write disk images |
| 516 | |
| 517 | QEMU also supports user mode Linux |
| 518 | (@url{http://user-mode-linux.sourceforge.net/}) Copy On Write (COW) |
| 519 | disk images. The COW disk images are much smaller than normal images |
| 520 | as they store only modified sectors. They also permit the use of the |
| 521 | same disk image template for many users. |
| 522 | |
| 523 | To create a COW disk images, use the command: |
| 524 | |
| 525 | @example |
| 526 | qemu-mkcow -f myrawimage.bin mycowimage.cow |
| 527 | @end example |
| 528 | |
| 529 | @file{myrawimage.bin} is a raw image you want to use as original disk |
| 530 | image. It will never be written to. |
| 531 | |
| 532 | @file{mycowimage.cow} is the COW disk image which is created by |
| 533 | @code{qemu-mkcow}. You can use it directly with the @option{-hdx} |
| 534 | options. You must not modify the original raw disk image if you use |
| 535 | COW images, as COW images only store the modified sectors from the raw |
| 536 | disk image. QEMU stores the original raw disk image name and its |
| 537 | modified time in the COW disk image so that chances of mistakes are |
| 538 | reduced. |
| 539 | |
| 540 | If the raw disk image is not read-only, by pressing @key{C-a s} you |
| 541 | can flush the COW disk image back into the raw disk image, as in |
| 542 | snapshot mode. |
| 543 | |
| 544 | COW disk images can also be created without a corresponding raw disk |
| 545 | image. It is useful to have a big initial virtual disk image without |
| 546 | using much disk space. Use: |
| 547 | |
| 548 | @example |
| 549 | qemu-mkcow mycowimage.cow 1024 |
| 550 | @end example |
| 551 | |
| 552 | to create a 1 gigabyte empty COW disk image. |
| 553 | |
| 554 | NOTES: |
| 555 | @enumerate |
| 556 | @item |
| 557 | COW disk images must be created on file systems supporting |
| 558 | @emph{holes} such as ext2 or ext3. |
| 559 | @item |
| 560 | Since holes are used, the displayed size of the COW disk image is not |
| 561 | the real one. To know it, use the @code{ls -ls} command. |
| 562 | @end enumerate |
| 563 | |
bellard | 9d4fb82 | 2004-04-26 20:55:38 +0000 | [diff] [blame] | 564 | @section Network emulation |
| 565 | |
| 566 | QEMU simulates up to 6 networks cards (NE2000 boards). Each card can |
| 567 | be connected to a specific host network interface. |
| 568 | |
| 569 | @subsection Using tun/tap network interface |
| 570 | |
| 571 | This is the standard way to emulate network. QEMU adds a virtual |
| 572 | network device on your host (called @code{tun0}), and you can then |
| 573 | configure it as if it was a real ethernet card. |
| 574 | |
| 575 | As an example, you can download the @file{linux-test-xxx.tar.gz} |
| 576 | archive and copy the script @file{qemu-ifup} in @file{/etc} and |
| 577 | configure properly @code{sudo} so that the command @code{ifconfig} |
| 578 | contained in @file{qemu-ifup} can be executed as root. You must verify |
| 579 | that your host kernel supports the TUN/TAP network interfaces: the |
| 580 | device @file{/dev/net/tun} must be present. |
| 581 | |
| 582 | See @ref{direct_linux_boot} to have an example of network use with a |
| 583 | Linux distribution. |
| 584 | |
| 585 | @subsection Using the user mode network stack |
| 586 | |
| 587 | This is @emph{experimental} (version 0.5.4). You must configure qemu |
| 588 | with @code{--enable-slirp}. Then by using the option |
| 589 | @option{-user-net} or if you have no tun/tap init script, QEMU uses a |
| 590 | completely user mode network stack (you don't need root priviledge to |
| 591 | use the virtual network). The virtual network configuration is the |
| 592 | following: |
| 593 | |
| 594 | @example |
| 595 | |
| 596 | QEMU Virtual Machine <------> Firewall/DHCP server <-----> Internet |
| 597 | (10.0.2.x) | (10.0.2.2) |
| 598 | | |
| 599 | ----> DNS |
| 600 | (10.0.2.3) |
| 601 | @end example |
| 602 | |
| 603 | The QEMU VM behaves as if it was behind a firewall which blocks all |
| 604 | incoming connections. You can use a DHCP client to automatically |
| 605 | configure the network in the QEMU VM. |
| 606 | |
| 607 | In order to check that the user mode network is working, you can ping |
| 608 | the address 10.0.2.2 and verify that you got an address in the range |
| 609 | 10.0.2.x from the QEMU virtual DHCP server. |
| 610 | |
bellard | b415a40 | 2004-05-23 21:04:06 +0000 | [diff] [blame^] | 611 | Note that @code{ping} is not supported reliably to the internet as it |
| 612 | would require root priviledges. It means you can only ping the local |
| 613 | router (10.0.2.2). |
| 614 | |
bellard | 9d4fb82 | 2004-04-26 20:55:38 +0000 | [diff] [blame] | 615 | @node direct_linux_boot |
| 616 | @section Direct Linux Boot |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 617 | |
| 618 | This section explains how to launch a Linux kernel inside QEMU without |
| 619 | having to make a full bootable image. It is very useful for fast Linux |
| 620 | kernel testing. The QEMU network configuration is also explained. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 621 | |
| 622 | @enumerate |
| 623 | @item |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 624 | Download the archive @file{linux-test-xxx.tar.gz} containing a Linux |
| 625 | kernel and a disk image. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 626 | |
| 627 | @item Optional: If you want network support (for example to launch X11 examples), you |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 628 | must copy the script @file{qemu-ifup} in @file{/etc} and configure |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 629 | properly @code{sudo} so that the command @code{ifconfig} contained in |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 630 | @file{qemu-ifup} can be executed as root. You must verify that your host |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 631 | kernel supports the TUN/TAP network interfaces: the device |
| 632 | @file{/dev/net/tun} must be present. |
| 633 | |
| 634 | When network is enabled, there is a virtual network connection between |
| 635 | the host kernel and the emulated kernel. The emulated kernel is seen |
| 636 | from the host kernel at IP address 172.20.0.2 and the host kernel is |
| 637 | seen from the emulated kernel at IP address 172.20.0.1. |
| 638 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 639 | @item Launch @code{qemu.sh}. You should have the following output: |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 640 | |
| 641 | @example |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 642 | > ./qemu.sh |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 643 | Connected to host network interface: tun0 |
| 644 | Linux version 2.4.21 (bellard@voyager.localdomain) (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #5 Tue Nov 11 18:18:53 CET 2003 |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 645 | BIOS-provided physical RAM map: |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 646 | BIOS-e801: 0000000000000000 - 000000000009f000 (usable) |
| 647 | BIOS-e801: 0000000000100000 - 0000000002000000 (usable) |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 648 | 32MB LOWMEM available. |
| 649 | On node 0 totalpages: 8192 |
| 650 | zone(0): 4096 pages. |
| 651 | zone(1): 4096 pages. |
| 652 | zone(2): 0 pages. |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 653 | Kernel command line: root=/dev/hda sb=0x220,5,1,5 ide2=noprobe ide3=noprobe ide4=noprobe ide5=noprobe console=ttyS0 |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 654 | ide_setup: ide2=noprobe |
| 655 | ide_setup: ide3=noprobe |
| 656 | ide_setup: ide4=noprobe |
| 657 | ide_setup: ide5=noprobe |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 658 | Initializing CPU#0 |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 659 | Detected 2399.621 MHz processor. |
| 660 | Console: colour EGA 80x25 |
| 661 | Calibrating delay loop... 4744.80 BogoMIPS |
| 662 | Memory: 28872k/32768k available (1210k kernel code, 3508k reserved, 266k data, 64k init, 0k highmem) |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 663 | Dentry cache hash table entries: 4096 (order: 3, 32768 bytes) |
| 664 | Inode cache hash table entries: 2048 (order: 2, 16384 bytes) |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 665 | Mount cache hash table entries: 512 (order: 0, 4096 bytes) |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 666 | Buffer-cache hash table entries: 1024 (order: 0, 4096 bytes) |
| 667 | Page-cache hash table entries: 8192 (order: 3, 32768 bytes) |
| 668 | CPU: Intel Pentium Pro stepping 03 |
| 669 | Checking 'hlt' instruction... OK. |
| 670 | POSIX conformance testing by UNIFIX |
| 671 | Linux NET4.0 for Linux 2.4 |
| 672 | Based upon Swansea University Computer Society NET3.039 |
| 673 | Initializing RT netlink socket |
| 674 | apm: BIOS not found. |
| 675 | Starting kswapd |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 676 | Journalled Block Device driver loaded |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 677 | Detected PS/2 Mouse Port. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 678 | pty: 256 Unix98 ptys configured |
| 679 | Serial driver version 5.05c (2001-07-08) with no serial options enabled |
| 680 | ttyS00 at 0x03f8 (irq = 4) is a 16450 |
| 681 | ne.c:v1.10 9/23/94 Donald Becker (becker@scyld.com) |
| 682 | Last modified Nov 1, 2000 by Paul Gortmaker |
| 683 | NE*000 ethercard probe at 0x300: 52 54 00 12 34 56 |
| 684 | eth0: NE2000 found at 0x300, using IRQ 9. |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 685 | RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 686 | Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4 |
| 687 | ide: Assuming 50MHz system bus speed for PIO modes; override with idebus=xx |
| 688 | hda: QEMU HARDDISK, ATA DISK drive |
| 689 | ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 |
| 690 | hda: attached ide-disk driver. |
| 691 | hda: 20480 sectors (10 MB) w/256KiB Cache, CHS=20/16/63 |
| 692 | Partition check: |
| 693 | hda: |
| 694 | Soundblaster audio driver Copyright (C) by Hannu Savolainen 1993-1996 |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 695 | NET4: Linux TCP/IP 1.0 for NET4.0 |
| 696 | IP Protocols: ICMP, UDP, TCP, IGMP |
| 697 | IP: routing cache hash table of 512 buckets, 4Kbytes |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 698 | TCP: Hash tables configured (established 2048 bind 4096) |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 699 | NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 700 | EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 701 | VFS: Mounted root (ext2 filesystem). |
bellard | 181f155 | 2003-11-13 01:47:16 +0000 | [diff] [blame] | 702 | Freeing unused kernel memory: 64k freed |
| 703 | |
| 704 | Linux version 2.4.21 (bellard@voyager.localdomain) (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #5 Tue Nov 11 18:18:53 CET 2003 |
| 705 | |
| 706 | QEMU Linux test distribution (based on Redhat 9) |
| 707 | |
| 708 | Type 'exit' to halt the system |
| 709 | |
| 710 | sh-2.05b# |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 711 | @end example |
| 712 | |
| 713 | @item |
| 714 | Then you can play with the kernel inside the virtual serial console. You |
| 715 | can launch @code{ls} for example. Type @key{Ctrl-a h} to have an help |
| 716 | about the keys you can type inside the virtual serial console. In |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 717 | particular, use @key{Ctrl-a x} to exit QEMU and use @key{Ctrl-a b} as |
| 718 | the Magic SysRq key. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 719 | |
| 720 | @item |
| 721 | If the network is enabled, launch the script @file{/etc/linuxrc} in the |
| 722 | emulator (don't forget the leading dot): |
| 723 | @example |
| 724 | . /etc/linuxrc |
| 725 | @end example |
| 726 | |
| 727 | Then enable X11 connections on your PC from the emulated Linux: |
| 728 | @example |
| 729 | xhost +172.20.0.2 |
| 730 | @end example |
| 731 | |
| 732 | You can now launch @file{xterm} or @file{xlogo} and verify that you have |
| 733 | a real Virtual Linux system ! |
| 734 | |
| 735 | @end enumerate |
| 736 | |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 737 | NOTES: |
| 738 | @enumerate |
| 739 | @item |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 740 | A 2.5.74 kernel is also included in the archive. Just |
| 741 | replace the bzImage in qemu.sh to try it. |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 742 | |
| 743 | @item |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 744 | qemu-fast creates a temporary file in @var{$QEMU_TMPDIR} (@file{/tmp} is the |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 745 | default) containing all the simulated PC memory. If possible, try to use |
| 746 | a temporary directory using the tmpfs filesystem to avoid too many |
| 747 | unnecessary disk accesses. |
| 748 | |
| 749 | @item |
bellard | 9d4520d | 2003-10-28 01:38:57 +0000 | [diff] [blame] | 750 | In order to exit cleanly from qemu, you can do a @emph{shutdown} inside |
| 751 | qemu. qemu will automatically exit when the Linux shutdown is done. |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 752 | |
| 753 | @item |
| 754 | You can boot slightly faster by disabling the probe of non present IDE |
| 755 | interfaces. To do so, add the following options on the kernel command |
| 756 | line: |
| 757 | @example |
| 758 | ide1=noprobe ide2=noprobe ide3=noprobe ide4=noprobe ide5=noprobe |
| 759 | @end example |
| 760 | |
| 761 | @item |
| 762 | The example disk image is a modified version of the one made by Kevin |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 763 | Lawton for the plex86 Project (@url{www.plex86.org}). |
| 764 | |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 765 | @end enumerate |
| 766 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 767 | @node linux_compile |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 768 | @section Linux Kernel Compilation |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 769 | |
bellard | 285dc33 | 2003-10-27 23:58:04 +0000 | [diff] [blame] | 770 | You can use any linux kernel with QEMU. However, if you want to use |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 771 | @code{qemu-fast} to get maximum performances, you must use a modified |
| 772 | guest kernel. If you are using a 2.6 guest kernel, you can use |
| 773 | directly the patch @file{linux-2.6-qemu-fast.patch} made by Rusty |
| 774 | Russel available in the QEMU source archive. Otherwise, you can make the |
| 775 | following changes @emph{by hand} to the Linux kernel: |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 776 | |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 777 | @enumerate |
| 778 | @item |
| 779 | The kernel must be mapped at 0x90000000 (the default is |
| 780 | 0xc0000000). You must modify only two lines in the kernel source: |
| 781 | |
| 782 | In @file{include/asm/page.h}, replace |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 783 | @example |
| 784 | #define __PAGE_OFFSET (0xc0000000) |
| 785 | @end example |
| 786 | by |
| 787 | @example |
| 788 | #define __PAGE_OFFSET (0x90000000) |
| 789 | @end example |
| 790 | |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 791 | And in @file{arch/i386/vmlinux.lds}, replace |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 792 | @example |
| 793 | . = 0xc0000000 + 0x100000; |
| 794 | @end example |
| 795 | by |
| 796 | @example |
| 797 | . = 0x90000000 + 0x100000; |
| 798 | @end example |
| 799 | |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 800 | @item |
| 801 | If you want to enable SMP (Symmetric Multi-Processing) support, you |
| 802 | must make the following change in @file{include/asm/fixmap.h}. Replace |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 803 | @example |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 804 | #define FIXADDR_TOP (0xffffX000UL) |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 805 | @end example |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 806 | by |
| 807 | @example |
| 808 | #define FIXADDR_TOP (0xa7ffX000UL) |
| 809 | @end example |
| 810 | (X is 'e' or 'f' depending on the kernel version). Although you can |
| 811 | use an SMP kernel with QEMU, it only supports one CPU. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 812 | |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 813 | @item |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 814 | If you are not using a 2.6 kernel as host kernel but if you use a target |
| 815 | 2.6 kernel, you must also ensure that the 'HZ' define is set to 100 |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 816 | (1000 is the default) as QEMU cannot currently emulate timers at |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 817 | frequencies greater than 100 Hz on host Linux systems < 2.6. In |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 818 | @file{include/asm/param.h}, replace: |
bellard | d5a0b50 | 2003-06-27 12:02:03 +0000 | [diff] [blame] | 819 | |
| 820 | @example |
| 821 | # define HZ 1000 /* Internal kernel timer frequency */ |
| 822 | @end example |
| 823 | by |
| 824 | @example |
| 825 | # define HZ 100 /* Internal kernel timer frequency */ |
| 826 | @end example |
| 827 | |
bellard | 4690764 | 2003-07-07 12:17:46 +0000 | [diff] [blame] | 828 | @end enumerate |
| 829 | |
| 830 | The file config-2.x.x gives the configuration of the example kernels. |
| 831 | |
| 832 | Just type |
| 833 | @example |
| 834 | make bzImage |
| 835 | @end example |
| 836 | |
| 837 | As you would do to make a real kernel. Then you can use with QEMU |
| 838 | exactly the same kernel as you would boot on your PC (in |
| 839 | @file{arch/i386/boot/bzImage}). |
bellard | da415d5 | 2003-06-27 18:50:50 +0000 | [diff] [blame] | 840 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 841 | @node gdb_usage |
bellard | da415d5 | 2003-06-27 18:50:50 +0000 | [diff] [blame] | 842 | @section GDB usage |
| 843 | |
| 844 | QEMU has a primitive support to work with gdb, so that you can do |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 845 | 'Ctrl-C' while the virtual machine is running and inspect its state. |
bellard | da415d5 | 2003-06-27 18:50:50 +0000 | [diff] [blame] | 846 | |
bellard | 9d4520d | 2003-10-28 01:38:57 +0000 | [diff] [blame] | 847 | In order to use gdb, launch qemu with the '-s' option. It will wait for a |
bellard | da415d5 | 2003-06-27 18:50:50 +0000 | [diff] [blame] | 848 | gdb connection: |
| 849 | @example |
bellard | 6c9bf89 | 2004-01-24 13:46:56 +0000 | [diff] [blame] | 850 | > qemu -s -kernel arch/i386/boot/bzImage -hda root-2.4.20.img -append "root=/dev/hda" |
bellard | da415d5 | 2003-06-27 18:50:50 +0000 | [diff] [blame] | 851 | Connected to host network interface: tun0 |
| 852 | Waiting gdb connection on port 1234 |
| 853 | @end example |
| 854 | |
| 855 | Then launch gdb on the 'vmlinux' executable: |
| 856 | @example |
| 857 | > gdb vmlinux |
| 858 | @end example |
| 859 | |
| 860 | In gdb, connect to QEMU: |
| 861 | @example |
bellard | 6c9bf89 | 2004-01-24 13:46:56 +0000 | [diff] [blame] | 862 | (gdb) target remote localhost:1234 |
bellard | da415d5 | 2003-06-27 18:50:50 +0000 | [diff] [blame] | 863 | @end example |
| 864 | |
| 865 | Then you can use gdb normally. For example, type 'c' to launch the kernel: |
| 866 | @example |
| 867 | (gdb) c |
| 868 | @end example |
| 869 | |
bellard | 0806e3f | 2003-10-01 00:15:32 +0000 | [diff] [blame] | 870 | Here are some useful tips in order to use gdb on system code: |
| 871 | |
| 872 | @enumerate |
| 873 | @item |
| 874 | Use @code{info reg} to display all the CPU registers. |
| 875 | @item |
| 876 | Use @code{x/10i $eip} to display the code at the PC position. |
| 877 | @item |
| 878 | Use @code{set architecture i8086} to dump 16 bit code. Then use |
| 879 | @code{x/10i $cs*16+*eip} to dump the code at the PC position. |
| 880 | @end enumerate |
| 881 | |
bellard | 1a084f3 | 2004-05-13 22:34:49 +0000 | [diff] [blame] | 882 | @section Target OS specific information |
| 883 | |
| 884 | @subsection Linux |
| 885 | |
| 886 | To have access to SVGA graphic modes under X11, use the @code{vesa} |
| 887 | X11 driver. For optimal performances, use the same depth as your |
| 888 | native display. |
| 889 | |
| 890 | @subsection Windows |
| 891 | |
| 892 | If you have a slow host, using Windows 95 is better as it gives the |
| 893 | best speed. Windows 2000 is also a good choice. |
| 894 | |
| 895 | SVGA graphic modes support: QEMU currently supports the Bochs VESA VBE |
| 896 | extensions. It supports color depths of 8, 15, 16 and 32 bits per |
| 897 | pixel in 640x480, 800x600 and 1024x768. For optimal performances, use |
| 898 | the same depth as your native display. |
| 899 | |
| 900 | @itemize |
| 901 | |
| 902 | @item Windows XP: it should be automatically detected. |
| 903 | |
| 904 | @item Windows NT4 or 2000: use the driver |
| 905 | @url{http://www.volny.cz/xnavara/qemuvid_bin.zip} by Filip Navara. |
| 906 | |
| 907 | @item Windows 95/98/Me: no clean solution yet (but it will change |
| 908 | soon). You can however use the shareware driver from SciTech. Here are |
| 909 | the steps recommended by Christophe Bothamy on the Bochs mailing list: |
| 910 | |
| 911 | @itemize |
| 912 | @item install win95 with the VGA driver. |
| 913 | @item download sdd 7 beta from @url{http://www.majorgeeks.com/download382.html} |
| 914 | @item download pmhelp.vxd from @url{http://unununium.org/viewcvs/snap/redist/release/pmhelp.vxd} |
| 915 | @item copy pmhelp.vxd to the win95 system directory |
| 916 | @item install sdd7 |
| 917 | @end itemize |
| 918 | @end itemize |
| 919 | |
bellard | 52c00a5 | 2004-04-25 21:27:03 +0000 | [diff] [blame] | 920 | @chapter QEMU PREP PowerPC System emulator invocation |
| 921 | |
| 922 | Use the executable @file{qemu-system-ppc} to simulate a complete PREP |
| 923 | PowerPC system. |
| 924 | |
| 925 | QEMU emulates the following PREP peripherials: |
| 926 | |
| 927 | @itemize @minus |
| 928 | @item |
| 929 | 2 IDE interfaces with hard disk and CD-ROM support |
| 930 | @item |
| 931 | Floppy disk |
| 932 | @item |
| 933 | up to 6 NE2000 network adapters |
| 934 | @item |
| 935 | Serial port |
| 936 | @item |
| 937 | PREP Non Volatile RAM |
| 938 | @end itemize |
| 939 | |
| 940 | You can read the qemu PC system emulation chapter to have more |
| 941 | informations about QEMU usage. |
| 942 | |
| 943 | More information is available at |
| 944 | @url{http://jocelyn.mayer.free.fr/qemu-ppc/}. |
| 945 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 946 | @chapter QEMU User space emulator invocation |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 947 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 948 | @section Quick Start |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 949 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 950 | In order to launch a Linux process, QEMU needs the process executable |
| 951 | itself and all the target (x86) dynamic libraries used by it. |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 952 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 953 | @itemize |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 954 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 955 | @item On x86, you can just try to launch any process by using the native |
| 956 | libraries: |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 957 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 958 | @example |
| 959 | qemu-i386 -L / /bin/ls |
| 960 | @end example |
bellard | fd429f2 | 2003-03-30 20:59:46 +0000 | [diff] [blame] | 961 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 962 | @code{-L /} tells that the x86 dynamic linker must be searched with a |
| 963 | @file{/} prefix. |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 964 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 965 | @item Since QEMU is also a linux process, you can launch qemu with qemu (NOTE: you can only do that if you compiled QEMU from the sources): |
bellard | 1eb2052 | 2003-06-25 16:21:49 +0000 | [diff] [blame] | 966 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 967 | @example |
| 968 | qemu-i386 -L / qemu-i386 -L / /bin/ls |
| 969 | @end example |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 970 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 971 | @item On non x86 CPUs, you need first to download at least an x86 glibc |
| 972 | (@file{qemu-runtime-i386-XXX-.tar.gz} on the QEMU web page). Ensure that |
| 973 | @code{LD_LIBRARY_PATH} is not set: |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 974 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 975 | @example |
| 976 | unset LD_LIBRARY_PATH |
| 977 | @end example |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 978 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 979 | Then you can launch the precompiled @file{ls} x86 executable: |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 980 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 981 | @example |
| 982 | qemu-i386 tests/i386/ls |
| 983 | @end example |
| 984 | You can look at @file{qemu-binfmt-conf.sh} so that |
| 985 | QEMU is automatically launched by the Linux kernel when you try to |
| 986 | launch x86 executables. It requires the @code{binfmt_misc} module in the |
| 987 | Linux kernel. |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 988 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 989 | @item The x86 version of QEMU is also included. You can try weird things such as: |
| 990 | @example |
| 991 | qemu-i386 /usr/local/qemu-i386/bin/qemu-i386 /usr/local/qemu-i386/bin/ls-i386 |
| 992 | @end example |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 993 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 994 | @end itemize |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 995 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 996 | @section Wine launch |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 997 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 998 | @itemize |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 999 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1000 | @item Ensure that you have a working QEMU with the x86 glibc |
| 1001 | distribution (see previous section). In order to verify it, you must be |
| 1002 | able to do: |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1003 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1004 | @example |
| 1005 | qemu-i386 /usr/local/qemu-i386/bin/ls-i386 |
| 1006 | @end example |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1007 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1008 | @item Download the binary x86 Wine install |
| 1009 | (@file{qemu-XXX-i386-wine.tar.gz} on the QEMU web page). |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1010 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1011 | @item Configure Wine on your account. Look at the provided script |
| 1012 | @file{/usr/local/qemu-i386/bin/wine-conf.sh}. Your previous |
| 1013 | @code{$@{HOME@}/.wine} directory is saved to @code{$@{HOME@}/.wine.org}. |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1014 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1015 | @item Then you can try the example @file{putty.exe}: |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1016 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1017 | @example |
| 1018 | qemu-i386 /usr/local/qemu-i386/wine/bin/wine /usr/local/qemu-i386/wine/c/Program\ Files/putty.exe |
| 1019 | @end example |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1020 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1021 | @end itemize |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1022 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1023 | @section Command line options |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1024 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1025 | @example |
| 1026 | usage: qemu-i386 [-h] [-d] [-L path] [-s size] program [arguments...] |
| 1027 | @end example |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1028 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1029 | @table @option |
| 1030 | @item -h |
| 1031 | Print the help |
| 1032 | @item -L path |
| 1033 | Set the x86 elf interpreter prefix (default=/usr/local/qemu-i386) |
| 1034 | @item -s size |
| 1035 | Set the x86 stack size in bytes (default=524288) |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1036 | @end table |
| 1037 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1038 | Debug options: |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1039 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 1040 | @table @option |
| 1041 | @item -d |
| 1042 | Activate log (logfile=/tmp/qemu.log) |
| 1043 | @item -p pagesize |
| 1044 | Act as if the host page size was 'pagesize' bytes |
| 1045 | @end table |
bellard | 386405f | 2003-03-23 21:28:45 +0000 | [diff] [blame] | 1046 | |