]> git.proxmox.com Git - pve-docs.git/blame_incremental - pve-faq.adoc
export pveum man page
[pve-docs.git] / pve-faq.adoc
... / ...
CommitLineData
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
12What distribution is {pve} based on?::
13
14{pve} is based on http://www.debian.org[Debian GNU/Linux]
15
16What license does the {pve} project use?::
17
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
24for 32-bit for the platform.
25+
26NOTE: VMs and Containers can be both 32-bit and/or 64-bit.
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
54instances containers. As containers share the Kernel they are
55limited to Linux guests.
56
57What is a QEMU/KVM guest (or VM)?::
58
59A QEMU/KVM guest (or VM) is a guest system running virtualized under
60{pve} using QEMU and the Linux KVM kernel module.
61
62What is QEMU?::
63
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.
68It is not limited to Linux guests but allows arbitrary operating systems
69to run.