0618.html 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Let's Install Pimox - Proxmox V7 for the Raspberry Pi 4</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <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">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Let's Install Pimox - Proxmox V7 for the Raspberry Pi 4">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="03/20/2022 07:08:43 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Let's Install Pimox - Proxmox V7 for the Raspberry Pi 4</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Things You Will Need</h2>
  26. <ul>
  27. <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>
  28. </ul>
  29. <h2>Download and Flash 64-bit Raspberry Pi OS</h2>
  30. <ol>
  31. <li>Download the latest Debian for Raspberry Pi 4 <a href="https://raspi.debian.net/tested-images/" target="_blank">Download</a></li>
  32. <li>Download Balena Etcher <a href="https://www.balena.io/etcher/" target="_blank">Download</a></li>
  33. <li>Run Balena Etcher</li>
  34. <li>Burn the Debian OS image to microSD card</li>
  35. <li>Safely remove/eject the microSD card and insert it into the Raspberry Pi</li>
  36. <li>Power on the Raspberry Pi</li>
  37. </ol>
  38. <h2>Setting Up the OS</h2>
  39. <ol>
  40. <li>After booting into Debian, login with the username root (there is no password by default)</li>
  41. <li>Run the following commands in terminal
  42. <div class="codeBlock"># set a root password<br />
  43. passwd<br />
  44. # enter and confirm the password<br />
  45. # update software repositories<br />
  46. apt update<br />
  47. # install available updates<br />
  48. apt upgrade -y<br />
  49. # install gnupg and curl<br />
  50. apt install gnupg curl -y<br />
  51. # download the pimox installation script<br />
  52. curl https://raw.githubusercontent.com/pimox/pimox7/master/RPiOS64-IA-Install.sh &gt; RPiOS64-IA-Install.sh<br />
  53. # make the file executable<br />
  54. chmod +x RPiOS64-IA-Install.sh<br />
  55. # run the install script<br />
  56. ./RPiOS64-IA-Install.sh</div>
  57. </li>
  58. <li>Answer the prompts to set a hostname, configure the network and set the root password</li>
  59. <li>Wait while the script installs dependencies</li>
  60. <li>The Raspberry Pi will reboot once the install script completes</li>
  61. <li>Once to Pi boots back up, login with root and continue with the following command to finish incomplete installs and reboot once more
  62. <div class="codeBlock"># finish installing proxmox<br />
  63. apt upgrade -y<br />
  64. # reboot<br />
  65. reboot now</div>
  66. </li>
  67. <li>After the second reboot Pimox should be fully installed</li>
  68. <li>On another device, open a web browser and navigate to https://DNSorIP:8006</li>
  69. <li>Welcome to Proxmox running on the Raspberry Pi 4</li>
  70. </ol>
  71. <p>Source: <a href="https://github.com/pimox/pimox7" target="_blank">https://github.com/pimox/pimox7</a></p>
  72. </div>
  73. </div>
  74. </body>
  75. </html>