]> git.proxmox.com Git - pve-docs.git/blame - pve-installation.adoc
scan-adoc-refs: fix title change via attribute
[pve-docs.git] / pve-installation.adoc
CommitLineData
e71b5d0d 1Installing Proxmox VE
6b5fc47b 2=====================
e71b5d0d 3include::attributes.txt[]
194d2f29 4ifndef::manvolnum[]
5f09af76 5:pve-toplevel:
194d2f29
DM
6endif::manvolnum[]
7ifdef::wiki[]
cb84ed18 8:title: Installation
5f09af76
DM
9endif::wiki[]
10
d91f8c1e 11{pve} ships as a set of Debian packages, so you can simply install it
078924cd
DM
12on top of a normal Debian installation, or download the installation
13CD-ROM and use that to install {pve} on your hardware.
d91f8c1e 14
078924cd
DM
15Installing on top of an existing Debian installation looks easy, but
16it presumes that you have correctly installed the base system, and you
17know how you want to configure and use the local storage. Network
18configuration is also completely up to you.
d91f8c1e
DM
19
20In general, this is not trivial, especially when you use LVM or
21ZFS. This is why we provide an installation CD-ROM for {pve}. That
22installer just ask you a few questions, then partitions the local
078924cd 23disk(s), installs all required packages and configures the system
d91f8c1e
DM
24including a basic network setup. You can get a fully functional system
25within a few minutes, including the following:
26
27* Complete operating system (Debian Linux, 64-bit)
28* Partition the hard drive with ext4 (alternative ext3 or xfs) or ZFS
29* {pve} Kernel with LXC and KVM support
30* Complete toolset
31* Web based management interface
32
bc1c71d4
DM
33ifndef::wiki[]
34
35include::pve-system-requirements.adoc[]
36
37endif::wiki[]
38
5eba0743 39
d91f8c1e 40Using the {pve} Installation CD-ROM
6b5fc47b 41-----------------------------------
d91f8c1e 42
078924cd
DM
43This is the preferred and recommended installation method.
44
45NOTE: By default, the complete server is used and all existing data is
46removed.
47
d91f8c1e
DM
48Please insert the installation CD-ROM, then boot from that
49drive. Immediately afterwards you can choose the following menu
50options:
51
52Install Proxmox VE::
53
54Start normal installation.
55
56Install Proxmox VE (Debug mode)::
57
58Start installation in debug mode. It opens a shell console at several
59installation steps, so that you can debug things if something goes
60wrong. Please press `CTRL-D` to exit those debug consoles and continue
61installation. This option is mostly for developers and not meant for
62general use.
63
64Rescue Boot::
65
66This option allows you to boot an existing installation. It searches
f77a3c10 67all attached hard disks and, if it finds an existing installation,
d91f8c1e
DM
68boots directly into that disk using the existing Linux kernel. This
69can be useful if there are problems with the boot block (grub), or the
70BIOS is unable to read the boot block from the disk.
71
72Test Memory::
73
d7495642 74Runs `memtest86+`. This is useful to check if your memory is
d91f8c1e
DM
75functional and error free.
76
77You normally select *Install Proxmox VE* to start the installation.
78After that you get prompted to select the target hard disk(s). The
8e4bb261 79`Options` button lets you select the target file system, which
8c1189b6
FG
80defaults to `ext4`. The installer uses LVM if you select `ext3`,
81`ext4` or `xfs` as file system, and offers additional option to
d91f8c1e
DM
82restrict LVM space (see <<advanced_lvm_options,below>>)
83
84If you have more than one disk, you can also use ZFS as file system.
85ZFS supports several software RAID levels, so this is specially useful
86if you do not have a hardware RAID controller. The `Options` button
87lets you select the ZFS RAID level, and you can choose disks there.
88
a6ae7778 89The next pages just ask for basic configuration options like time
d91f8c1e 90zone and keyboard layout. You also need to specify your email address
a6ae7778 91and superuser (root) password (must have at least 5 characters).
d91f8c1e
DM
92
93The last step is the network configuration. Please note that you can
94use either IPv4 or IPv6 here, but not both. If you want to configure a
95dual stack node, you can easily do that after installation.
96
97If you press `Next` now, installation starts to format disks, and
98copies packages to the target. Please wait until that is finished,
99then reboot the server.
100
101Further configuration is done via the Proxmox web interface. Just
102point your browser to the IP address given during installation
69255fd2 103(https://youripaddress:8006).
d91f8c1e 104
fe6c04d5
DM
105NOTE: Default login is "root" (realm 'PAM') and the root password is
106defined during the installation process.
107
d91f8c1e
DM
108
109[[advanced_lvm_options]]
5eba0743 110Advanced LVM Configuration Options
6b5fc47b 111~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
d91f8c1e
DM
112
113The installer creates a Volume Group (VG) called `pve`, and additional
114Logical Volumes (LVs) called `root`, `data` and `swap`. The size of
115those volumes can be controlled with:
116
117`hdsize`::
118
119Defines the total HD size to be used. This way you can save free
120space on the HD for further partitioning (i.e. for an additional PV
121and VG on the same hard disk that can be used for LVM storage).
122
123`swapsize`::
124
125To define the size of the `swap` volume. Default is the same size as
126installed RAM, with 4GB minimum and `hdsize/8` as maximum.
127
128`maxroot`::
129
130The `root` volume size. The `root` volume stores the whole operation
131system.
132
133`maxvz`::
134
79b698ed 135Define the size of the `data` volume.
d91f8c1e
DM
136
137`minfree`::
138
139To define the amount of free space left in LVM volume group `pve`.
14016GB is the default if storage available > 128GB, `hdsize/8` otherwise.
141+
142NOTE: LVM requires free space in the VG for snapshot creation (not
143required for lvmthin snapshots).
144
145
146ZFS Performance Tips
6b5fc47b 147~~~~~~~~~~~~~~~~~~~~
d91f8c1e 148
cdf58596
WL
149ZFS uses a lot of memory, so it is best to add additional RAM if you
150want to use ZFS. A good calculation is 4GB plus 1GB RAM for each TB
151RAW disk space.
d91f8c1e
DM
152
153ZFS also provides the feature to use a fast SSD drive as write cache. The
154write cache is called the ZFS Intent Log (ZIL). You can add that after
155installation using the following command:
156
157 zpool add <pool-name> log </dev/path_to_fast_ssd>
158
078924cd
DM
159
160ifdef::wiki[]
161
162link:/wiki/Install_Proxmox_VE_on_Debian_Jessie[Install Proxmox VE on Debian Jessie]
6b5fc47b 163-----------------------------------------------------------------------------------
078924cd 164
5c6cf7ac
DM
165link:/wiki/Install_from_USB_Stick[Install from USB Stick]
166---------------------------------------------------------
167
078924cd
DM
168endif::wiki[]
169
170ifndef::wiki[]
171
172Install {pve} on Debian
6b5fc47b 173-----------------------
078924cd
DM
174
175{pve} ships as a set of Debian packages, so you can simply install it
0a37d38e 176on top of a normal Debian installation. After configuring the
078924cd
DM
177repositories, you need to run:
178
179[source,bash]
180----
181apt-get update
182apt-get install proxmox-ve
183----
184
22e65cdf
FG
185You can find a detailed step by step howto on the
186{webwiki-url}Install_Proxmox_VE_on_Debian_Jessie[wiki].
078924cd 187
5c6cf7ac 188include::pve-usbstick.adoc[]
078924cd 189
5c6cf7ac 190endif::wiki[]
078924cd 191
078924cd
DM
192ifdef::wiki[]
193
194Video Tutorials
6b5fc47b 195---------------
078924cd
DM
196
197* List of all official tutorials on our
198 http://www.youtube.com/proxmoxve[Proxmox VE YouTube Channel]
199
200* Tutorials in Spanish language on
201 http://www.youtube.com/playlist?list=PLUULBIhA5QDBdNf1pcTZ5UXhek63Fij8z[ITexperts.es
202 YouTube Play List]
203
204
205See Also
6b5fc47b 206--------
078924cd 207
bc1c71d4
DM
208* link:/wiki/System_Requirements[System Requirements]
209
078924cd
DM
210* link:/wiki/Package_Repositories[Package Repositories]
211
212* link:/wiki/Host_System_Administration[Host System Administration]
213
214* link:/wiki/Network_Configuration[Network Configuration]
215
e723066c
DM
216* link:/wiki/Installation:_Tips_and_Tricks[Installation: Tips and Tricks]
217
078924cd 218endif::wiki[]