0627.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Let's Install Proxmox v7 on Armbian</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Proxmox VE,Armbian,Single Board Computer,Debian,Hypervisor,Amlogic,AARCH64,ARM 64,SBC,Proxmox,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Let's Install Proxmox v7 on Armbian">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/29/2022 06:33:41 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 Proxmox v7 on Armbian</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 Armbian Bullseye</h2>
  30. <ol>
  31. <li>Download the Armbian Bullseye image (non-desktop) <a href="https://forum.armbian.com/topic/12162-single-armbian-image-for-rk-aml-aw-aarch64-armv8/" target="_blank">Download</a> | <a href="https://drive.google.com/file/d/1ybTuaG2fxIWP6YKWQEEeJFNKIwU68e-v/view?usp=share_link" target="_blank">Alternate</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 Armbian Bullseye OS image to microSD card</li>
  35. <li>Safely remove microSD and re-insert</li>
  36. <li>Ignore/close the Windows dialogs to format the inserted microSD card</li>
  37. </ol>
  38. <h2>Configure MicroSD Card for Armbian</h2>
  39. <ol>
  40. <li>Open the readable partition of the microSD card in Explorer</li>
  41. <li>Rename the appropriate file from below to u-boot.ext on the root of the SD card
  42. <p>u-boot-s905 (for s905)<br />
  43. u-boot-s905x-s912 (for s905x and s912)<br />
  44. u-boot-s905x2-s922 (for s905x2 and s922)</p>
  45. </li>
  46. <li>Edit /extlinux/extlinux.conf in a text editor
  47. <ol start="1" style="list-style-type: lower-alpha;">
  48. <li>Comment out rk-3399 lines by adding #</li>
  49. <li>Uncomment aml s9xx FDT and APPEND lines by removing #</li>
  50. <li>Update the FDT line to point to a working .dtb file for your device
  51. <div class="codeBlock"># aml s9xxx<br />
  52. #FDT /dtb/amlogic/meson-g12a-x96-max-no-cvbs.dtb<br />
  53. #FDT /dtb/amlogic/meson-g12b-ugoos-am6-no-cvbs.dtb<br />
  54. #FDT /dtb/amlogic/meson-g12b-odroid-n2.dtb<br />
  55. FDT /dtb/amlogic/meson-gxl-s905w-<wbr />p281.dtb<br />
  56. APPEND=root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0</div>
  57. </li>
  58. <li>Save</li>
  59. <li>Close</li>
  60. </ol>
  61. </li>
  62. <li>Safely remove microSD</li>
  63. <li>Insert microSD card to Android TV box</li>
  64. </ol>
  65. <h2>Booting to Armbian for the First Time</h2>
  66. <ol>
  67. <li>Plug the power adapter into the Android TV box</li>
  68. <li>If the device has never booted from external storage before the stock Android OS will load</li>
  69. <li>In Android, navigate to the application drawer &gt; Run Update &amp; Backup</li>
  70. <li>Select Local &gt; Navigate to the microSD card &gt; aml_autoscript.zip</li>
  71. <li>Select Update</li>
  72. <li>The system will reboot twice and should then begin booting Armbian from the microSD card</li>
  73. <li>You should see the Armbian terminal running startup scripts</li>
  74. <li>When prompted, input a new root password</li>
  75. <li>Confirm the new root password</li>
  76. <li>When prompted, input a username</li>
  77. <li>Input a password for the new user</li>
  78. <li>Confirm the password for the new user</li>
  79. <li>Follow any additional prompts</li>
  80. <li>Run the following commands in terminal
  81. <div class="codeBlock"># elevate to root<br />
  82. sudo su<br />
  83. # update software repositories<br />
  84. apt update<br />
  85. # install available updates<br />
  86. apt upgrade -y<br />
  87. # install gnupg and curl<br />
  88. apt install gnupg curl -y<br />
  89. # download the pimox installation script<br />
  90. curl https://raw.githubusercontent.com/pimox/pimox7/master/RPiOS64-IA-Install.sh &gt; RPiOS64-IA-Install.sh<br />
  91. # make the file executable<br />
  92. chmod +x RPiOS64-IA-Install.sh<br />
  93. # run the install script<br />
  94. ./RPiOS64-IA-Install.sh</div>
  95. </li>
  96. <li>Answer the prompts to set a hostname, configure the network and set the root password</li>
  97. <li>Wait while the script installs dependencies</li>
  98. <li>The Armbian device will reboot once the install script completes</li>
  99. <li>Once Armbian boots back up, continue with the following command to finish incomplete installs and reboot once more
  100. <div class="codeBlock"># elevate to root<br />
  101. sudo su<br />
  102. # finish installing proxmox<br />
  103. apt upgrade -y<br />
  104. # reboot<br />
  105. reboot now</div>
  106. </li>
  107. <li>After the second reboot Proxmox should be fully installed</li>
  108. <li>On another device, open a web browser and navigate to https://DNSorIP:8006</li>
  109. <li>Welcome to Proxmox running on Armbian</li>
  110. </ol>
  111. <p>Source: <a href="https://github.com/pimox/pimox7" target="_blank">https://github.com/pimox/pimox7</a></p> </div>
  112. </div>
  113. </body>
  114. </html>