forked from i12bretro/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0008.html
104 lines (92 loc) · 5.62 KB
/
0008.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Installing Armbian on Allwinner H6 Android TV Box (Tanix TX6)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="UTF-8">
<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">
<meta name="author" content="i12bretro">
<meta name="description" content="Installing Armbian on Allwinner H6 Android TV Box (Tanix TX6)">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="revised" content="10/23/2022 02:18:46 PM" />
<link rel="icon" type="image/x-icon" href="includes/favicon.ico">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="includes/js/steps.js"></script>
<link href="css/steps.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gridContainer">
<div class="topMargin"></div>
<div id="listName" class="topMargin">
<h1>Installing Armbian on Allwinner H6 Android TV Box (Tanix TX6)</h1>
</div>
<div></div>
<div id="content">
<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'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's sporting quad core ARM process with 2-4 GB of RAM for under $30, including a power supply and IR remote control.</p>
<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>
<p>UPDATED 6/9/20 with direct links to the downloads used in the video</p>
<h2>Things You Will Need</h2>
<ul>
<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>
</ul>
<h2>Downloads and Flashing to MicroSD</h2>
<ol>
<li>Download Armbian <a href="https://drive.google.com/drive/folders/1CJEsZ6jdRGFC7XpOFVp8eG-DO0tbrOOb?usp=sharing" target="_blank">Download</a></li>
<li>Download u-boot <a href="https://drive.google.com/drive/folders/1CJEsZ6jdRGFC7XpOFVp8eG-DO0tbrOOb?usp=sharing" target="_blank">Download</a></li>
<li>Download Balena Etcher <a href="https://www.balena.io/etcher/" target="_blank">Download</a></li>
<li>Run Balena Etcher</li>
<li>Burn Armbian image to microSD card</li>
<li>Safely remove microSD and re-insert</li>
<li>Ignore/close the Windows dialogs to format the inserted microSD card</li>
<li>Burn u-boot image to microSD card</li>
<li>Safely remove microSD and re-insert</li>
<li>Ignore/close the Windows dialogs to format the inserted microSD card</li>
</ol>
<h2>Configure MicroSD Card for Armbian</h2>
<ol>
<li>Open the readable partition of the microSD card in Explorer</li>
<li>Edit uEnv.txt in a text editor
<ol start="1" style="list-style-type: lower-alpha;">
<li>Comment out rk-3399 lines by adding #</li>
<li>Uncomment aw h6 lines by removing #
<div class="codeBlock"># aw h6<br />
FDT=/dtb/allwinner/sun50i-h6-tanix-tx6.dtb<br />
#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 />
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>
</li>
<li>Save</li>
<li>Close</li>
</ol>
</li>
<li>Rename the following files, adding .orig to the filename
<p>Rename boot.cmd to boot.cmd.orig<br />
Rename boot.scr to boot.scr.orig<br />
Rename boot-emmc.cmd to boot-emmc.cmd.orig<br />
Rename boot-emmc.scr to boot-emmc.scr.orig</p>
</li>
<li>Rename the following .aw files, removing the .aw extension
<p>Rename boot.cmd.aw to boot.cmd<br />
Rename boot.scr.aw to boot.scr<br />
Rename boot-emmc.cmd.aw to boot-emmc.cmd<br />
Rename boot-emmc.scr.aw to boot-emmc.scr</p>
</li>
<li>Safely remove microSD</li>
<li>Insert microSD card to Android TV box</li>
</ol>
<h2>Booting to Armbian for the First Time</h2>
<ol>
<li>Plug the power adapter into the Android TV box</li>
<li>You should see the Armbian terminal running startup scripts</li>
<li>When prompted, login with username: root password: 1234</li>
<li>Input a new root password</li>
<li>Confirm the new root password</li>
<li>When prompted, input a username</li>
<li>Input a password for the new user</li>
<li>Confirm the password for the new user</li>
<li>Follow any additional the prompts</li>
<li>Armbian will boot into the desktop environment</li>
</ol>
<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>
</div>
</body>
</html>