0094.html 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing Armbian on Amlogic S912 Android TV Box (Tanix TX9s)</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Linux,Armbian,Single Board Computer,SBC,Raspberry Pi Alternative,Tanix,TX9s,Tutorial,How To,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing Armbian on Amlogic S912 Android TV Box (Tanix TX9s)">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  12. <script type="text/javascript" src="includes/js/steps.js"></script>
  13. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  14. </head>
  15. <body>
  16. <div id="gridContainer">
  17. <div class="topMargin"></div>
  18. <div id="listName" class="topMargin">
  19. <h1>Installing Armbian on Amlogic S912 Android TV Box (Tanix TX9s)</h1>
  20. </div>
  21. <div></div>
  22. <div id="content">
  23. <p>I love the idea of the Raspberry Pi, but there are some cheaper alternative single board computers that offer a similar experience for a fraction of the cost. While the community support isn&#39;t quite what it is for the Pi, there are a ton of projects you can accomplish on the cheap with these little hidden gems. Keep an eye on AliExpress and Amazon and you can find SBC&#39;s sporting quad core ARM process with 2-4 GB of RAM for under $30, including a power supply and IR remote control.</p>
  24. <p>The box used in this video is a Tanix TX9s I picked up on GearBest for $24.99 shipped. It sports an Octa Core Amlogic S912 @ 2GHz and 2 GB of DDR3 RAM.<br />
  25. https://www.gearbest.com/goods/pp_009744724529.html?lang=en&amp;wid=1433363</p>
  26. <h2>Things You Will Need</h2>
  27. <ul>
  28. <li>microSD card at least 8 GB</li>
  29. </ul>
  30. <h2>Downloads and Flashing to MicroSD</h2>
  31. <ol>
  32. <li>Download Armbian <a href="https://yadi.sk/d/_rQgn_FosYuW0g" target="_blank">Download</a></li>
  33. <li>Download Balena Etcher <a href="https://www.balena.io/etcher/" target="_blank">Download</a></li>
  34. <li>Run Balena Etcher</li>
  35. <li>Burn Armbian image to microSD card</li>
  36. <li>Safely remove microSD and re-insert</li>
  37. <li>Ignore/close the Windows dialogs to format the inserted microSD card</li>
  38. </ol>
  39. <h2>Configure MicroSD Card for Armbian</h2>
  40. <ol>
  41. <li>Open the readable partition of the microSD card in Explorer</li>
  42. <li>Edit uEnv.txt in a text editor
  43. <ol start="1" style="list-style-type: lower-alpha;">
  44. <li>Comment out rk-3399 lines by adding #</li>
  45. <li>Uncomment aml s9xx FDT and APPEND lines by removing #</li>
  46. <li>Update the FDT line to point to a working .dtb file for your device
  47. <div class="codeBlock"># aml s9xxx<br />
  48. #FDT=/dtb/amlogic/meson-g12a-x96-max-no-cvbs.dtb<br />
  49. #FDT=/dtb/amlogic/meson-g12b-ugoos-am6-no-cvbs.dtb<br />
  50. #FDT=/dtb/amlogic/meson-g12b-odroid-n2.dtb<br />
  51. FDT=/dtb/amlogic/meson-gxm-s912-libretech-pc.dtb<br />
  52. 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>
  53. </li>
  54. <li>Save</li>
  55. <li>Close</li>
  56. </ol>
  57. </li>
  58. <li>Safely remove microSD</li>
  59. <li>Insert microSD card to Android TV box</li>
  60. </ol>
  61. <h2>Booting to Armbian for the First Time</h2>
  62. <ol>
  63. <li>Plug the power adapter into the Android TV box</li>
  64. <li>If the device has never booted from external storage before the stock Android OS will load</li>
  65. <li>In Android, navigate to the application drawer &gt; Run Update &amp; Backup</li>
  66. <li>Select Local &gt; Navigate to the microSD card &gt; aml_autoscript.zip</li>
  67. <li>Select Update</li>
  68. <li>The system will reboot twice and should then begin booting Armbian from the microSD card</li>
  69. <li>You should see the Armbian terminal running startup scripts</li>
  70. <li>When prompted, login with username: root password: 1234</li>
  71. <li>Input a new root password</li>
  72. <li>Confirm the new root password</li>
  73. <li>When prompted, input a username</li>
  74. <li>Input a password for the new user</li>
  75. <li>Confirm the password for the new user</li>
  76. <li>Follow any additional the prompts</li>
  77. <li>Armbian will boot into the desktop environment</li>
  78. </ol>
  79. <p>Special thanks to the developers and forum members over at <a href="https://armbian.com" target="_blank">Armbian.com</a> for making this possible</p>
  80. </div>
  81. </div>
  82. </body>
  83. </html>