12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Let's Install Pimox - Proxmox V7 for the Raspberry Pi 4</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Proxmox On Raspberry Pi,Pimox,Proxmox VE,Raspberry Pi 4,Raspberry Pi,Hypervisor,RPi,Proxmox,SBC,Single Board Computer,ARM,ARM64,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Let's Install Pimox - Proxmox V7 for the Raspberry Pi 4">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="03/20/2022 07:08:43 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Let's Install Pimox - Proxmox V7 for the Raspberry Pi 4</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Things You Will Need</h2>
- <ul>
- <li>A microSD card at least 16 GB <a href="https://amzn.to/36CpShC" target="_blank">https://amzn.to/36CpShC</a> | <a href="https://amzn.to/3CXJngt" target="_blank">https://amzn.to/3CXJngt</a> | <a href="https://amzn.to/3JqyxSP" target="_blank">https://amzn.to/3JqyxSP</a></li>
- </ul>
- <h2>Download and Flash 64-bit Raspberry Pi OS</h2>
- <ol>
- <li>Download the latest Debian for Raspberry Pi 4 <a href="https://raspi.debian.net/tested-images/" target="_blank">Download</a></li>
- <li>Download Balena Etcher <a href="https://www.balena.io/etcher/" target="_blank">Download</a></li>
- <li>Run Balena Etcher</li>
- <li>Burn the Debian OS image to microSD card</li>
- <li>Safely remove/eject the microSD card and insert it into the Raspberry Pi</li>
- <li>Power on the Raspberry Pi</li>
- </ol>
- <h2>Setting Up the OS</h2>
- <ol>
- <li>After booting into Debian, login with the username root (there is no password by default)</li>
- <li>Run the following commands in terminal
- <div class="codeBlock"># set a root password<br />
- passwd<br />
- # enter and confirm the password<br />
- # update software repositories<br />
- apt update<br />
- # install available updates<br />
- apt upgrade -y<br />
- # install gnupg and curl<br />
- apt install gnupg curl -y<br />
- # download the pimox installation script<br />
- curl https://raw.githubusercontent.com/pimox/pimox7/master/RPiOS64-IA-Install.sh > RPiOS64-IA-Install.sh<br />
- # make the file executable<br />
- chmod +x RPiOS64-IA-Install.sh<br />
- # run the install script<br />
- ./RPiOS64-IA-Install.sh</div>
- </li>
- <li>Answer the prompts to set a hostname, configure the network and set the root password</li>
- <li>Wait while the script installs dependencies</li>
- <li>The Raspberry Pi will reboot once the install script completes</li>
- <li>Once to Pi boots back up, login with root and continue with the following command to finish incomplete installs and reboot once more
- <div class="codeBlock"># finish installing proxmox<br />
- apt upgrade -y<br />
- # reboot<br />
- reboot now</div>
- </li>
- <li>After the second reboot Pimox should be fully installed</li>
- <li>On another device, open a web browser and navigate to https://DNSorIP:8006</li>
- <li>Welcome to Proxmox running on the Raspberry Pi 4</li>
- </ol>
- <p>Source: <a href="https://github.com/pimox/pimox7" target="_blank">https://github.com/pimox/pimox7</a></p>
- </div>
- </div>
- </body>
- </html>
-
|