]> git.proxmox.com Git - pve-docs.git/blame - system-booting.adoc
system-booting: fix typo
[pve-docs.git] / system-booting.adoc
CommitLineData
69055103
TL
1[[sysboot]]
2Host Bootloader
3---------------
62de1c14
SI
4ifdef::wiki[]
5:pve-toplevel:
6endif::wiki[]
7
69055103
TL
8{pve} currently uses one of two bootloaders depending on the disk setup
9selected in the installer.
62de1c14
SI
10
11For EFI Systems installed with ZFS as the root filesystem `systemd-boot` is
952ee606
FG
12used, unless Secure Boot is enabled. All other deployments use the standard
13`grub` bootloader (this usually also applies to systems which are installed on
14top of Debian).
62de1c14 15
dfa919a3
TL
16
17[[sysboot_installer_part_scheme]]
18Partitioning Scheme Used by the Installer
19~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20
cb04e768
SI
21The {pve} installer creates 3 partitions on all disks selected for
22installation.
dfa919a3
TL
23
24The created partitions are:
25
26* a 1 MB BIOS Boot Partition (gdisk type EF02)
27
28* a 512 MB EFI System Partition (ESP, gdisk type EF00)
29
30* a third partition spanning the set `hdsize` parameter or the remaining space
31 used for the chosen storage type
32
cb04e768 33Systems using ZFS as root filesystem are booted with a kernel and initrd image
952ee606
FG
34stored on the 512 MB EFI System Partition. For legacy BIOS systems, and EFI
35systems with Secure Boot enabled, `grub` is used, for EFI systems without
36Secure Boot, `systemd-boot` is used. Both are installed and configured to point
37to the ESPs.
cb04e768 38
dfa919a3 39`grub` in BIOS mode (`--target i386-pc`) is installed onto the BIOS Boot
cb04e768
SI
40Partition of all selected disks on all systems booted with `grub`
41footnote:[These are all installs with root on `ext4` or `xfs` and installs
42with root on ZFS on non-EFI systems].
43
44
45[[sysboot_proxmox_boot_tool]]
46Synchronizing the content of the ESP with `proxmox-boot-tool`
47~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
48
49`proxmox-boot-tool` is a utility used to keep the contents of the EFI System
50Partitions properly configured and synchronized. It copies certain kernel
51versions to all ESPs and configures the respective bootloader to boot from
52the `vfat` formatted ESPs. In the context of ZFS as root filesystem this means
53that you can use all optional features on your root pool instead of the subset
54which is also present in the ZFS implementation in `grub` or having to create a
55separate small boot-pool footnote:[Booting ZFS on root with grub
56https://github.com/zfsonlinux/zfs/wiki/Debian-Stretch-Root-on-ZFS].
57
58In setups with redundancy all disks are partitioned with an ESP, by the
59installer. This ensures the system boots even if the first boot device fails
60or if the BIOS can only boot from a particular disk.
61
62The ESPs are not kept mounted during regular operation. This helps to prevent
63filesystem corruption to the `vfat` formatted ESPs in case of a system crash,
64and removes the need to manually adapt `/etc/fstab` in case the primary boot
65device fails.
66
67`proxmox-boot-tool` handles the following tasks:
68
69* formatting and setting up a new partition
70* copying and configuring new kernel images and initrd images to all listed ESPs
71* synchronizing the configuration on kernel upgrades and other maintenance tasks
72* managing the list of kernel versions which are synchronized
a9a2cdbe 73* configuring the boot-loader to boot a particular kernel version (pinning)
cb04e768
SI
74
75
76You can view the currently configured ESPs and their state by running:
77
78----
79# proxmox-boot-tool status
80----
81
82[[sysboot_proxmox_boot_setup]]
83.Setting up a new partition for use as synced ESP
84
85To format and initialize a partition as synced ESP, e.g., after replacing a
86failed vdev in an rpool, or when converting an existing system that pre-dates
3ad9d61c 87the sync mechanism, `proxmox-boot-tool` from `proxmox-kernel-helper` can be used.
cb04e768
SI
88
89WARNING: the `format` command will format the `<partition>`, make sure to pass
90in the right device/partition!
91
92For example, to format an empty partition `/dev/sda2` as ESP, run the following:
93
94----
95# proxmox-boot-tool format /dev/sda2
96----
97
98To setup an existing, unmounted ESP located on `/dev/sda2` for inclusion in
99{pve}'s kernel update synchronization mechanism, use the following:
100
101----
102# proxmox-boot-tool init /dev/sda2
103----
104
952ee606
FG
105or
106
107----
108# proxmox-boot-tool init /dev/sda2 grub
109----
110
111to force initialization with Grub instead of systemd-boot, for example for
112Secure Boot support.
113
cb04e768
SI
114Afterwards `/etc/kernel/proxmox-boot-uuids` should contain a new line with the
115UUID of the newly added partition. The `init` command will also automatically
116trigger a refresh of all configured ESPs.
117
118[[sysboot_proxmox_boot_refresh]]
119.Updating the configuration on all ESPs
120
121To copy and configure all bootable kernels and keep all ESPs listed in
122`/etc/kernel/proxmox-boot-uuids` in sync you just need to run:
123
124----
125# proxmox-boot-tool refresh
126----
127(The equivalent to running `update-grub` systems with `ext4` or `xfs` on root).
128
129This is necessary should you make changes to the kernel commandline, or want to
130sync all kernels and initrds.
131
132NOTE: Both `update-initramfs` and `apt` (when necessary) will automatically
133trigger a refresh.
134
135.Kernel Versions considered by `proxmox-boot-tool`
136The following kernel versions are configured by default:
137
138* the currently running kernel
139* the version being newly installed on package updates
140* the two latest already installed kernels
141* the latest version of the second-to-last kernel series (e.g. 5.0, 5.3), if applicable
142* any manually selected kernels
143
144.Manually keeping a kernel bootable
145
146Should you wish to add a certain kernel and initrd image to the list of
147bootable kernels use `proxmox-boot-tool kernel add`.
148
149For example run the following to add the kernel with ABI version `5.0.15-1-pve`
150to the list of kernels to keep installed and synced to all ESPs:
151
152----
153# proxmox-boot-tool kernel add 5.0.15-1-pve
154----
155
156`proxmox-boot-tool kernel list` will list all kernel versions currently selected
157for booting:
158
159----
160# proxmox-boot-tool kernel list
161Manually selected kernels:
1625.0.15-1-pve
163
164Automatically selected kernels:
1655.0.12-1-pve
1664.15.18-18-pve
167----
168
169Run `proxmox-boot-tool kernel remove` to remove a kernel from the list of
170manually selected kernels, for example:
171
172----
173# proxmox-boot-tool kernel remove 5.0.15-1-pve
174----
175
176NOTE: It's required to run `proxmox-boot-tool refresh` to update all EFI System
177Partitions (ESPs) after a manual kernel addition or removal from above.
dfa919a3
TL
178
179
48a1482b 180[[sysboot_determine_bootloader_used]]
dfa919a3 181Determine which Bootloader is Used
48a1482b
AL
182~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
183
184[thumbnail="screenshot/boot-grub.png", float="left"]
185
186The simplest and most reliable way to determine which bootloader is used, is to
187watch the boot process of the {pve} node.
188
189You will either see the blue box of `grub` or the simple black on white
190`systemd-boot`.
191
192[thumbnail="screenshot/boot-systemdboot.png"]
193
194Determining the bootloader from a running system might not be 100% accurate. The
195safest way is to run the following command:
196
197
198----
199# efibootmgr -v
200----
201
202If it returns a message that EFI variables are not supported, `grub` is used in
203BIOS/Legacy mode.
204
205If the output contains a line that looks similar to the following, `grub` is
206used in UEFI mode.
207
208----
209Boot0005* proxmox [...] File(\EFI\proxmox\grubx64.efi)
210----
211
cb04e768 212If the output contains a line similar to the following, `systemd-boot` is used.
48a1482b
AL
213
214----
215Boot0006* Linux Boot Manager [...] File(\EFI\systemd\systemd-bootx64.efi)
216----
217
cb04e768
SI
218By running:
219
220----
221# proxmox-boot-tool status
222----
223
224you can find out if `proxmox-boot-tool` is configured, which is a good
225indication of how the system is booted.
226
48a1482b 227
69055103 228[[sysboot_grub]]
62de1c14
SI
229Grub
230~~~~
231
232`grub` has been the de-facto standard for booting Linux systems for many years
233and is quite well documented
234footnote:[Grub Manual https://www.gnu.org/software/grub/manual/grub/grub.html].
235
62de1c14
SI
236Configuration
237^^^^^^^^^^^^^
238Changes to the `grub` configuration are done via the defaults file
239`/etc/default/grub` or config snippets in `/etc/default/grub.d`. To regenerate
cb04e768
SI
240the configuration file after a change to the configuration run:
241footnote:[Systems using `proxmox-boot-tool` will call `proxmox-boot-tool
242refresh` upon `update-grub`.]
62de1c14
SI
243
244----
cb04e768 245# update-grub
62de1c14
SI
246----
247
cb04e768 248
69055103 249[[sysboot_systemd_boot]]
62de1c14
SI
250Systemd-boot
251~~~~~~~~~~~~
252
253`systemd-boot` is a lightweight EFI bootloader. It reads the kernel and initrd
254images directly from the EFI Service Partition (ESP) where it is installed.
255The main advantage of directly loading the kernel from the ESP is that it does
cb04e768
SI
256not need to reimplement the drivers for accessing the storage. In {pve}
257xref:sysboot_proxmox_boot_tool[`proxmox-boot-tool`] is used to keep the
258configuration on the ESPs synchronized.
62de1c14 259
69055103 260[[sysboot_systemd_boot_config]]
62de1c14
SI
261Configuration
262^^^^^^^^^^^^^
263
264`systemd-boot` is configured via the file `loader/loader.conf` in the root
265directory of an EFI System Partition (ESP). See the `loader.conf(5)` manpage
266for details.
267
268Each bootloader entry is placed in a file of its own in the directory
269`loader/entries/`
270
271An example entry.conf looks like this (`/` refers to the root of the ESP):
272
273----
274title Proxmox
275version 5.0.15-1-pve
276options root=ZFS=rpool/ROOT/pve-1 boot=zfs
277linux /EFI/proxmox/5.0.15-1-pve/vmlinuz-5.0.15-1-pve
278initrd /EFI/proxmox/5.0.15-1-pve/initrd.img-5.0.15-1-pve
279----
280
281
69055103 282[[sysboot_edit_kernel_cmdline]]
dfa919a3 283Editing the Kernel Commandline
62de1c14
SI
284~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
285
286You can modify the kernel commandline in the following places, depending on the
f11fb629 287bootloader used:
62de1c14
SI
288
289.Grub
290
291The kernel commandline needs to be placed in the variable
292`GRUB_CMDLINE_LINUX_DEFAULT` in the file `/etc/default/grub`. Running
293`update-grub` appends its content to all `linux` entries in
294`/boot/grub/grub.cfg`.
295
296.Systemd-boot
297
0aebb0d9 298The kernel commandline needs to be placed as one line in `/etc/kernel/cmdline`.
cb04e768 299To apply your changes, run `proxmox-boot-tool refresh`, which sets it as the
0aebb0d9 300`option` line for all config files in `loader/entries/proxmox-*.conf`.
a9a2cdbe 301
9dbab4f8
NU
302A complete list of kernel parameters can be found at
303'https://www.kernel.org/doc/html/v<YOUR-KERNEL-VERSION>/admin-guide/kernel-parameters.html'.
c9f91b12
TL
304replace <YOUR-KERNEL-VERSION> with the major.minor version, for example, for
305kernels based on version 6.5 the URL would be:
306https://www.kernel.org/doc/html/v6.5/admin-guide/kernel-parameters.html
307
308You can find your kernel version by checking the web interface ('Node ->
309Summary'), or by running
9dbab4f8
NU
310
311----
312# uname -r
313----
a9a2cdbe 314
c9f91b12
TL
315Use the first two numbers at the front of the output.
316
a9a2cdbe 317[[sysboot_kernel_pin]]
027bbe9a
TL
318Override the Kernel-Version for next Boot
319~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
320
321To select a kernel that is not currently the default kernel, you can either:
322
323* use the boot loader menu that is displayed at the beginning of the boot
324 process
325* use the `proxmox-boot-tool` to `pin` the system to a kernel version either
326 once or permanently (until pin is reset).
327
328This should help you work around incompatibilities between a newer kernel
329version and the hardware.
a9a2cdbe 330
027bbe9a
TL
331NOTE: Such a pin should be removed as soon as possible so that all current
332security patches of the latest kernel are also applied to the system.
333
334For example: To permanently select the version `5.15.30-1-pve` for booting you
335would run:
a9a2cdbe
SI
336
337----
338# proxmox-boot-tool kernel pin 5.15.30-1-pve
339----
340
027bbe9a
TL
341TIP: The pinning functionality works for all {pve} systems, not only those using
342`proxmox-boot-tool` to synchronize the contents of the ESPs, if your system
343does not use `proxmox-boot-tool` for synchronizing you can also skip the
344`proxmox-boot-tool refresh` call in the end.
345
346You can also set a kernel version to be booted on the next system boot only.
347This is for example useful to test if an updated kernel has resolved an issue,
348which caused you to `pin` a version in the first place:
a9a2cdbe
SI
349
350----
027bbe9a 351# proxmox-boot-tool kernel pin 5.15.30-1-pve --next-boot
a9a2cdbe
SI
352----
353
354To remove any pinned version configuration use the `unpin` subcommand:
355
356----
357# proxmox-boot-tool kernel unpin
358----
359
360While `unpin` has a `--next-boot` option as well, it is used to clear a pinned
027bbe9a
TL
361version set with `--next-boot`. As that happens already automatically on boot,
362invonking it manually is of little use.
363
364After setting, or clearing pinned versions you also need to synchronize the
365content and configuration on the ESPs by running the `refresh` subcommand.
a9a2cdbe 366
027bbe9a
TL
367TIP: You will be prompted to automatically do for `proxmox-boot-tool` managed
368systems if you call the tool interactively.
a9a2cdbe
SI
369
370----
371# proxmox-boot-tool refresh
372----
952ee606
FG
373
374[[sysboot_secure_boot]]
375Secure Boot
376~~~~~~~~~~~
377
378Since {pve} 8.1, Secure Boot is supported out of the box via signed packages
379and integration in `proxmox-boot-tool`.
380
381The following packages need to be installed for Secure Boot to be enabled:
382
383- shim-signed (shim bootloader signed by Microsoft)
384- shim-helpers-amd64-signed (fallback bootloader and MOKManager, signed by Proxmox)
385- grub-efi-amd64-signed (Grub EFI bootloader, signed by Proxmox)
386- proxmox-kernel-6.X.Y-Z-pve-signed (Kernel image, signed by Proxmox)
387
388Only Grub as bootloader is supported out of the box, since there are no other
389pre-signed bootloader packages available. Any new installation of {pve} will
390automatically have all of the above packages included.
391
392More details about how Secure Boot works, and how to customize the setup, are
393available in https://pve.proxmox.com/wiki/Secure_Boot_Setup[our wiki].
bb94283b 394
5cea6ab1 395Switching an Existing Installation to Secure Boot
bb94283b
CH
396^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
397
263533e4 398WARNING: This can lead to an unbootable installation in some cases if not done
bb94283b
CH
399correctly. Reinstalling the host will setup Secure Boot automatically if
400available, without any extra interactions. **Make sure you have a working and
401well-tested backup of your {pve} host!**
402
403An existing UEFI installation can be switched over to Secure Boot if desired,
404without having to reinstall {pve} from scratch.
405
406First, ensure all your system is up-to-date. Next, install all the required
407pre-signed packages as listed above. Grub automatically creates the needed EFI
408boot entry for booting via the default shim.
409
410.systemd-boot
411
412If `systemd-boot` is used as a bootloader (see
413xref:sysboot_determine_bootloader_used[Determine which Bootloader is used]),
414some additional setup is needed. This is only the case if {pve} was installed
415with ZFS-on-root.
416
417To check the latter, run:
418----
419# findmnt /
420----
421
422If the host is indeed running using ZFS as root filesystem, the `FSTYPE` column
423should contain `zfs`:
424----
425TARGET SOURCE FSTYPE OPTIONS
426/ rpool/ROOT/pve-1 zfs rw,relatime,xattr,noacl,casesensitive
427----
428
429Next, a suitable potential ESP (EFI system partition) must be found. This can be
430done using the `lsblk` command as following:
431----
432# lsblk -o +FSTYPE
433----
434
435The output should look something like this:
436----
437NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS FSTYPE
438sda 8:0 0 32G 0 disk
439├─sda1 8:1 0 1007K 0 part
440├─sda2 8:2 0 512M 0 part vfat
441└─sda3 8:3 0 31.5G 0 part zfs_member
442sdb 8:16 0 32G 0 disk
443├─sdb1 8:17 0 1007K 0 part
444├─sdb2 8:18 0 512M 0 part vfat
445└─sdb3 8:19 0 31.5G 0 part zfs_member
446----
447
448In this case, the partitions `sda2` and `sdb2` are the targets. They can be
449identified by the their size of 512M and their `FSTYPE` being `vfat`, in this
450case on a ZFS RAID-1 installation.
451
452These partitions must be properly set up for booting through Grub using
453`proxmox-boot-tool`. This command (using `sda2` as an example) must be run
454separately for each individual ESP:
455----
456# proxmox-boot-tool init /dev/sda2 grub
457----
458
459Afterwards, you can sanity-check the setup by running the following command:
460----
461# efibootmgr -v
462----
463
464This list should contain an entry looking similar to this:
465----
466[..]
467Boot0009* proxmox HD(2,GPT,..,0x800,0x100000)/File(\EFI\proxmox\shimx64.efi)
468[..]
469----
470
471NOTE: The old `systemd-boot` bootloader will be kept, but Grub will be
472preferred. This way, if booting using Grub in Secure Boot mode does not work for
473any reason, the system can still be booted using `systemd-boot` with Secure Boot
474turned off.
475
476Now the host can be rebooted and Secure Boot enabled in the UEFI firmware setup
477utility.
478
479On reboot, a new entry named `proxmox` should be selectable in the UEFI firmware
480boot menu, which boots using the pre-signed EFI shim.
481
482If, for any reason, no `proxmox` entry can be found in the UEFI boot menu, you
483can try adding it manually (if supported by the firmware), by adding the file
484`\EFI\proxmox\shimx64.efi` as a custom boot entry.
485
a1b77797
CH
486NOTE: Some UEFI firmwares are known to drop the `proxmox` boot option on reboot.
487This can happen if the `proxmox` boot entry is pointing to a Grub installation
488on a disk, where the disk itself not a boot option. If possible, try adding the
489disk as a boot option in the UEFI firmware setup utility and run
490`proxmox-boot-tool` again.
491
bb94283b
CH
492TIP: To enroll custom keys, see the accompanying
493https://pve.proxmox.com/wiki/Secure_Boot_Setup#Setup_instructions_for_db_key_variant[Secure
494Boot wiki page].