proxmox-ve_8.0-2.iso – Install from ISO to USB in OSX Apple Silicone
๐ How to Create a Bootable Proxmox USB Drive Using the dd
Command on macOS
Creating a bootable Proxmox USB drive is essential for installing the Proxmox hypervisor and virtualization platform on your system. In this guide, we’ll walk you through the steps using the dd
command on macOS. โ ๏ธ
Step 1: Insert the USB Drive ๐ฝ
Start by plugging in your USB drive to your macOS computer.
Step 2: Identify the USB Drive ๐
- Open the Terminal application. You can find it in the Applications > Utilities folder or use Spotlight to search for “Terminal.”
- Run the following command to list the available drives:
diskutil list
Identify your USB drive from the list (e.g., /dev/diskX
). Be sure to note the correct disk identifier.
Step 3: Unmount the USB Drive ๐ด
Run the following command to unmount the USB drive. Replace /dev/diskX
with the actual device identifier of your USB drive:
diskutil unmountDisk /dev/diskX
Step 4: Write the Proxmox ISO ๐๏ธ
- Download the Proxmox ISO file from the official website.
- In the Terminal, run the following command to write the Proxmox ISO to the USB drive. Replace
/path/to/proxmox.iso
with the actual path to your downloaded Proxmox ISO file, and/dev/diskX
with the device identifier of your USB drive:
sudo dd if=/path/to/proxmox.iso of=/dev/diskX bs=1m
This process might take some time. โณ
Step 5: Eject the USB Drive ๐
Once the dd
command completes, safely eject the USB drive:
diskutil eject /dev/diskX
Step 6: Boot from the USB Drive ๐
Your USB drive is now bootable with Proxmox. Insert it into your target machine and boot from it to start the Proxmox installation process. ๐
Remember to double-check your commands and device identifiers to avoid any data loss.
By following these steps, you’ll have a bootable Proxmox USB drive ready for installation on your system. Always exercise caution when using the dd
command and make sure to back up any important data before proceeding. ๐