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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
<chapter>
<title>Plex86 FAQ</title>
<qandaset defaultlabel="qanda">
<qandaentry>
<question>
<para>
What is plex86?
</para>
</question>
<answer>
<para>
Plex86 is an Open Source x86 PC virtualization program which let's you
concurrently run multiple x86 operating systems and corresponding
software on your x86 machine. It is distributed under the GNU LGPL
license.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What is the host OS?
</para>
</question>
<answer>
<para>
The host operating system is the primary OS you run on your real PC
when you boot it.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What is a guest OS?
</para>
</question>
<answer>
<para>
A guest operating system is any OS you run in a virtual machine (VM).
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What guest OSes does plex86 run?
</para>
</question>
<answer>
<para>
Look in the file 'GUESTS' in the top level directory of the plex86
source distribution for current info.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What if my guest OS does not run?
</para>
</question>
<answer>
<para>
For now, you will have to wait. We are in a period of architectural
redesign. This is more important than getting more OSes running.
At some pointer after the new architecture is in place, we can
attempt to get more OSes working in plex86.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What kind of technology does plex86 use?
</para>
</question>
<answer>
<para>
Virtualization. In short, plex86 sets up a separate environment for
each virtual machine, including its own page tables and segment
descriptors, such that the guest OS can run natively without interfering
with the host OS. As the guest OS can not drive the same hardware as
the host OS, nor modify system registers use by the host, instructions
which do are trapped and emulated. Therefore, plex86 provides a suite of
hardware emulation for common PC peripheral devices. Virtualization
incorporates native execution and emulation, to provide a complete
Virtual Machine (VM).
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
Will plex86 run on non-x86 machines?
</para>
</question>
<answer>
<para>
No. Plex86 uses and depends on the native processor, to run most code.
The code is strictly tied to the IA32 x86 architecture. Non x86
architectures are beyond the scope of this project. The subject
has been brought up many times on the developer's list. Please don't
bring it up again.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
How does plex86 relate to bochs?
</para>
</question>
<answer>
<para>
Bochs is a portable x86 PC emulation program. It operates completely
in user space, and doesn't make use of native x86 execution. Bochs
is now LGPL, much thanks to MandrakeSoft, makers of the Linux-Mandrake
distribution. Some of the bochs code was borrowed to make plex86.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
Will plex86 offer similar capabilities as the commercial VM
product from VMware?
</para>
</question>
<answer>
<para>
One of the goals of plex86 is to provide an efficient VM which
can run multiple OSes on your x86 computer. In this area, plex86
will server similar needs as VMware. But plex86 also has much
potential to be used as a debug environment for OS and driver
developers, because we can export and offer an extensible debug
interface. One that can be modified and enhanced by developers,
since plex86 is Open Source.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What host OSes is plex86 ported to?
</para>
</question>
<answer>
<para>
Only Linux right now.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
Who develops plex86?
</para>
</question>
<answer>
<para>
Look in the file 'CONTRIBUTORS' for a list of some of the developers.
</para>
</answer>
</qandaentry>
<qandaentry>
<question>
<para>
What language is plex86 written in.
</para>
</question>
<answer>
<para>
Mostly C. All new code should be written in C. Some user space
plugins are written in C++, because they were shared from bochs.
Do NOT write any new additional code in C++. Many of the same
arguments apply, as to why the Linux kernel is not written in C++.
See the following link for such discussion.
<ulink url="http://www.tux.org/lkml/index.html#s1-4">
http://www.tux.org/lkml/index.html#s1-4
</ulink>
Some components of plex86 user space could conceivably be moved
to monitor space to improve efficiency. Therefore, we need to be
compatible with Linux kernel space, so don't use C++ for this
reason either.
</para>
</answer>
</qandaentry>
</qandaset>
</chapter>
|