]> git.proxmox.com Git - pve-docs.git/blame - pve-faq.adoc
improve ha-manager intro
[pve-docs.git] / pve-faq.adoc
CommitLineData
fb810903
DM
1Frequently Asked Questions
2--------------------------
3
4NOTE: New FAQs are appended to the bottom of this section.
5
6/////////////////////////////////////////////////////////////////
7ADD NEW FAQS TO THE BOTTOM OF THIS SECTION TO MAINTAIN NUMBERING
8/////////////////////////////////////////////////////////////////
9
10[qanda]
11
a660560c 12What distribution is {pve} based on?::
fb810903 13
a660560c 14{pve} is based on http://www.debian.org[Debian GNU/Linux]
fb810903 15
a660560c 16What license does the {pve} project use?::
fb810903 17
a660560c
DM
18{pve} code is licensed under the GNU Affero General Public License,
19version 3.
20
21Will {pve} run on a 32bit processor?::
22
23{pve} works only on 64-bit CPU´s (AMD or Intel). There is no plan
fb810903
DM
24for 32-bit for the platform.
25+
92702cb2 26NOTE: VMs and Containers can be both 32-bit and/or 64-bit.
fb810903
DM
27
28Does my CPU support virtualization?::
29
30To check if your CPU is virtualization compatible, check for the "vmx"
31or "svm" tag in this command output:
32+
33----
34egrep '(vmx|svm)' /proc/cpuinfo
35----
36
37Supported Intel CPUs::
38
3964-bit processors with
40http://en.wikipedia.org/wiki/Virtualization_Technology#Intel_virtualization_.28VT-x.29[Intel
41Virtualization Technology (Intel VT-x)] support. (http://ark.intel.com/search/advanced/?s=t&VTX=true&InstructionSet=64-bit[List of processors with Intel VT and 64-bit])
42
43Supported AMD CPUs::
44
4564-bit processors with
46http://en.wikipedia.org/wiki/Virtualization_Technology#AMD_virtualization_.28AMD-V.29[AMD
47Virtualization Technology (AMD-V)] support.
48
49What is a container, CT, VE, Virtual Private Server, VPS?::
50
51Operating-system-level virtualization is a server-virtualization
52method where the kernel of an operating system allows for multiple
53isolated user-space instances, instead of just one. We call such
92702cb2
TL
54instances containers. As containers share the Kernel they are
55limited to Linux guests.
fb810903 56
a660560c 57What is a QEMU/KVM guest (or VM)?::
fb810903 58
a660560c
DM
59A QEMU/KVM guest (or VM) is a guest system running virtualized under
60{pve} using QEMU and the Linux KVM kernel module.
fb810903 61
a660560c 62What is QEMU?::
fb810903 63
a660560c
DM
64QEMU is a generic and open source machine emulator and
65virtualizer. QEMU uses the Linux KVM kernel module to achieve near
66native performance by executing the guest code directly on the host
67CPU.
92702cb2
TL
68It is not limited to Linux guests but allows arbitrary operating systems
69to run.