0618.html 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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/RPiOS64autoinstall.sh &gt; RPiOS64autoinstall.sh<br />
  52. # make the file executable<br />
  53. chmod +x RPiOS64autoinstall.sh<br />
  54. # edit the file<br />
  55. nano RPiOS64autoinstall.sh</div>
  56. </li>
  57. <li>Scroll down and set the following variables for your environment
  58. <p>HOSTNAME=&#39;pimox&#39;<br />
  59. RPI_IP=&#39;192.168.0.225&#39;<br />
  60. GATEWAY=&#39;192.168.0.27&#39;<br />
  61. NETMASK=&#39;/24&#39;</p>
  62. </li>
  63. <li>Press CTRL+O, Enter, CTRL+X to write the changes</li>
  64. <li>Continue with the following command
  65. <div class="codeBlock"># run the install script<br />
  66. sh RPiOS64autoinstall.sh</div>
  67. </li>
  68. <li>Enter and confirm a root password</li>
  69. <li>Wait while the script installs dependencies</li>
  70. <li>The Raspberry Pi will reboot once the install script completes</li>
  71. <li>Once to Pi boots back up, login with root and continue with the following command to finish incomplete installs and reboot once more
  72. <div class="codeBlock"># finish installing proxmox<br />
  73. apt upgrade -y<br />
  74. # reboot<br />
  75. reboot now</div>
  76. </li>
  77. <li>After the second reboot Pimox should be fully installed</li>
  78. <li>On another device, open a web browser and navigate to https://DNSorIP:8006</li>
  79. <li>Welcome to Proxmox running on the Raspberry Pi 4</li>
  80. </ol>
  81. <p>Source: <a href="https://github.com/pimox/pimox7" target="_blank">https://github.com/pimox/pimox7</a></p>
  82. </div>
  83. </div>
  84. </body>
  85. </html>