0008.html 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing Armbian on Allwinner H6 Android TV Box (Tanix TX6)</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,Install Guide,Raspberry Pi Alternative,H6,Allwinner,Tanix,TX6,Tanix TX6,Allwinner H6,ARM,ARM64,AARCH64,ARM CPU,System On A Chip,SOC,ARM Processor,ARM Architecture,Single Board Computer AARCH64,ARMv8,Debian,SD Card,Android TV Box,Ubuntu,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing Armbian on Allwinner H6 Android TV Box (Tanix TX6)">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/23/2022 02:18:46 PM" />
  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>Installing Armbian on Allwinner H6 Android TV Box (Tanix TX6)</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <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>
  26. <p>The box used in this video is a Tanix TX6 I picked up on Amazon for $22.71 shipped. It sports a quad Core Allwinner H6 @ 1.5GHz and 4 GB of DDR3 RAM.</p>
  27. <p>UPDATED 6/9/20 with direct links to the downloads used in the video</p>
  28. <h2>Things You Will Need</h2>
  29. <ul>
  30. <li>A microSD card at least 8 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>
  31. </ul>
  32. <h2>Downloads and Flashing to MicroSD</h2>
  33. <ol>
  34. <li>Download Armbian <a href="https://drive.google.com/drive/folders/1CJEsZ6jdRGFC7XpOFVp8eG-DO0tbrOOb?usp=sharing" target="_blank">Download</a></li>
  35. <li>Download u-boot <a href="https://drive.google.com/drive/folders/1CJEsZ6jdRGFC7XpOFVp8eG-DO0tbrOOb?usp=sharing" target="_blank">Download</a></li>
  36. <li>Download Balena Etcher <a href="https://www.balena.io/etcher/" target="_blank">Download</a></li>
  37. <li>Run Balena Etcher</li>
  38. <li>Burn Armbian image to microSD card</li>
  39. <li>Safely remove microSD and re-insert</li>
  40. <li>Ignore/close the Windows dialogs to format the inserted microSD card</li>
  41. <li>Burn u-boot image to microSD card</li>
  42. <li>Safely remove microSD and re-insert</li>
  43. <li>Ignore/close the Windows dialogs to format the inserted microSD card</li>
  44. </ol>
  45. <h2>Configure MicroSD Card for Armbian</h2>
  46. <ol>
  47. <li>Open the readable partition of the microSD card in Explorer</li>
  48. <li>Edit uEnv.txt in a text editor
  49. <ol start="1" style="list-style-type: lower-alpha;">
  50. <li>Comment out rk-3399 lines by adding #</li>
  51. <li>Uncomment aw h6 lines by removing #
  52. <div class="codeBlock"># aw h6<br />
  53. FDT=/dtb/allwinner/sun50i-h6-tanix-tx6.dtb<br />
  54. #APPEND=root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyS0,115200 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 mem=2048M video=HDMI-A-1:e<br />
  55. APPEND=root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyS0,115200 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0Save</div>
  56. </li>
  57. <li>Save</li>
  58. <li>Close</li>
  59. </ol>
  60. </li>
  61. <li>Rename the following files, adding .orig to the filename
  62. <p>Rename boot.cmd to boot.cmd.orig<br />
  63. Rename boot.scr to boot.scr.orig<br />
  64. Rename boot-emmc.cmd to boot-emmc.cmd.orig<br />
  65. Rename boot-emmc.scr to boot-emmc.scr.orig</p>
  66. </li>
  67. <li>Rename the following .aw files, removing the .aw extension
  68. <p>Rename boot.cmd.aw to boot.cmd<br />
  69. Rename boot.scr.aw to boot.scr<br />
  70. Rename boot-emmc.cmd.aw to boot-emmc.cmd<br />
  71. Rename boot-emmc.scr.aw to boot-emmc.scr</p>
  72. </li>
  73. <li>Safely remove microSD</li>
  74. <li>Insert microSD card to Android TV box</li>
  75. </ol>
  76. <h2>Booting to Armbian for the First Time</h2>
  77. <ol>
  78. <li>Plug the power adapter into the Android TV box</li>
  79. <li>You should see the Armbian terminal running startup scripts</li>
  80. <li>When prompted, login with username: root password: 1234</li>
  81. <li>Input a new root password</li>
  82. <li>Confirm the new root password</li>
  83. <li>When prompted, input a username</li>
  84. <li>Input a password for the new user</li>
  85. <li>Confirm the password for the new user</li>
  86. <li>Follow any additional the prompts</li>
  87. <li>Armbian will boot into the desktop environment</li>
  88. </ol>
  89. <p>Special thanks to the developers and forum members over at <a href="https://forum.armbian.com/topic/12162-single-armbian-image-for-rk-aml-aw/" target="_blank">Armbian.com</a> for making this possible</p> </div>
  90. </div>
  91. </body>
  92. </html>