0618.html 3.7 KB

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