]> git.proxmox.com Git - pve-docs.git/blame - pve-installation-media.adoc
backup: clarify that CLI means FS-level and highlight retention-note
[pve-docs.git] / pve-installation-media.adoc
CommitLineData
44ea3fd6
TL
1[[installation_prepare_media]]
2Prepare Installation Media
3--------------------------
5f09af76
DM
4ifdef::wiki[]
5:pve-toplevel:
6endif::wiki[]
7
44ea3fd6
TL
8Download the installer ISO image from: {website}en/downloads/category/iso-images-pve
9
6d16d741 10The {pve} installation media is a hybrid ISO image. It works in two ways:
5c6cf7ac 11
6d16d741 12* An ISO image file ready to burn to a CD or DVD.
5c6cf7ac 13
6d16d741 14* A raw sector (IMG) image file ready to copy to a USB flash drive (USB stick).
5c6cf7ac 15
6d16d741
AL
16Using a USB flash drive to install {pve} is the recommended way because it is
17the faster option.
5c6cf7ac 18
e40349c6 19Prepare a USB Flash Drive as Installation Medium
6d16d741 20~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5c6cf7ac 21
44ea3fd6 22The flash drive needs to have at least 1 GB of storage available.
5c6cf7ac 23
6d16d741 24NOTE: Do not use UNetbootin. It does not work with the {pve} installation image.
5c6cf7ac 25
6d16d741 26IMPORTANT: Make sure that the USB flash drive is not mounted and does not
5c6cf7ac
DM
27contain any important data.
28
29
30Instructions for GNU/Linux
31~~~~~~~~~~~~~~~~~~~~~~~~~~
32
6d16d741
AL
33On Unix-like operating system use the `dd` command to copy the ISO image to the
34USB flash drive. First find the correct device name of the USB flash drive (see
35below). Then run the `dd` command.
5c6cf7ac
DM
36
37----
8b09f077 38# dd bs=1M conv=fdatasync if=./proxmox-ve_*.iso of=/dev/XYZ
5c6cf7ac
DM
39----
40
8b09f077
TL
41NOTE: Be sure to replace /dev/XYZ with the correct device name and adapt the
42input filename ('if') path.
5c6cf7ac 43
6d16d741 44CAUTION: Be very careful, and do not overwrite the wrong disk!
5c6cf7ac
DM
45
46
e40349c6 47Find the Correct USB Device Name
6d16d741
AL
48^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
49There are two ways to find out the name of the USB flash drive. The first one is
50to compare the last lines of the `dmesg` command output before and after
51plugging in the flash drive. The second way is to compare the output of the
52`lsblk` command. Open a terminal and run:
5c6cf7ac
DM
53
54----
6d16d741 55# lsblk
5c6cf7ac
DM
56----
57
6d16d741 58Then plug in your USB flash drive and run the command again:
5c6cf7ac
DM
59
60----
6d16d741 61# lsblk
5c6cf7ac
DM
62----
63
6d16d741
AL
64A new device will appear. This is the one you want to use. To be on the extra
65safe side check if the reported size matches your USB flash drive.
5c6cf7ac
DM
66
67
6d16d741
AL
68Instructions for macOS
69~~~~~~~~~~~~~~~~~~~~~~
5c6cf7ac
DM
70
71Open the terminal (query Terminal in Spotlight).
72
6d16d741 73Convert the .iso file to .img using the convert option of `hdiutil` for example.
5c6cf7ac
DM
74
75----
6d16d741 76# hdiutil convert -format UDRW -o proxmox-ve_*.dmg proxmox-ve_*.iso
5c6cf7ac
DM
77----
78
6d16d741 79TIP: macOS tends to automatically add '.dmg' to the output file name.
5c6cf7ac 80
6d16d741 81To get the current list of devices run the command:
5c6cf7ac
DM
82
83----
6d16d741 84# diskutil list
5c6cf7ac
DM
85----
86
6d16d741
AL
87Now insert the USB flash drive and run this command again to determine which
88device node has been assigned to it. (e.g., /dev/diskX).
5c6cf7ac
DM
89
90----
6d16d741
AL
91# diskutil list
92# diskutil unmountDisk /dev/diskX
5c6cf7ac
DM
93----
94
95NOTE: replace X with the disk number from the last command.
96
97----
6d16d741 98# sudo dd if=proxmox-ve_*.dmg of=/dev/rdiskX bs=1m
5c6cf7ac
DM
99----
100
6d16d741
AL
101NOTE: 'rdiskX', instead of 'diskX', in the last command is intended. It will
102increase the write speed.
5c6cf7ac
DM
103
104Instructions for Windows
105~~~~~~~~~~~~~~~~~~~~~~~~
106
fb856a31
TL
107Using Etcher
108^^^^^^^^^^^^
5c6cf7ac 109
fb856a31
TL
110Etcher works out of the box. Download Etcher from https://etcher.io. It will
111guide you through the process of selecting the ISO and your USB Drive.
5c6cf7ac 112
fb856a31
TL
113Using Rufus
114^^^^^^^^^^^
115
2ad7deac
TL
116Rufus is a more lightweight alternative, but you need to use the *DD mode* to
117make it work. Download Rufus from https://rufus.ie/. Either install it or use
118the portable version. Select the destination drive and the {pve} ISO file.
fb856a31 119
2ad7deac
TL
120IMPORTANT: Once you 'Start' you have to click 'No' on the dialog asking to
121download a different version of GRUB. In the next dialog select the 'DD' mode.
5c6cf7ac 122
44ea3fd6 123ifdef::wiki[]
e40349c6 124Boot your Server from the USB Flash Drive
6d16d741 125~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5c6cf7ac 126
6d16d741 127Connect the USB flash drive to your server and make sure that booting from USB
9a6dc394
TL
128is enabled (check your servers firmware settings). Then follow the steps in the
129xref:chapter_installation[installation wizard].
44ea3fd6
TL
130
131endif::wiki[]