-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·149 lines (131 loc) · 4.24 KB
/
index.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Arietta G25 Linux Embedded Board">
<meta name="author" content="Sergio Tanzilli">
<link rel="shortcut icon" href="images/favicon.ico">
<title>Arietta G25 web page</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../../assets/js/html5shiv.js"></script>
<script src="../../assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row">
<h1>Congratulations, it works !</h1>
<p>
Welcome to the <a href="http://www.acmesystems.it/arietta" target="_blank">Arietta G25</a> web site. These pages
are served by the pre-installed <a href="https://httpd.apache.org/" target="_blank">Apache 2</a> web server.
You can modify these web contents or edit and run programming code examples directly from your web browser
using the <a href="/Codiad" target="_blank">Web Based IDE <b>Codiad</b></a> without any need to install software
on your PC.
</p>
</div>
<div class="row">
<h2>In-browser source editor</h2>
<div class="col-lg-3">
<a target="_blank" href="/Codiad">
<img src="images/codiad.jpg" class="img-rounded"/>
</a>
</div>
<div class="col-lg-9">
<p>
Create, edit and save your sources in C, C++, Python, Html, CSS, Javascript, PHP, etc.
directly from your web browser using <a href="/Codiad" target="_blank">Codiad</a>.
</p>
<p>
Use these login data:
<ul>
<li>Username: <b>root</b></li>
<li>Password: <b>acmesystems</b></li>
</ul>
</p>
<p>
<a class="btn btn-primary" target="_blank" href="/Codiad">Open Codiad, the in-browser code source editor</a>
</p>
</div>
</div>
<div class="row">
<h2>Linux command prompt</h2>
<div class="col-lg-3">
<a href="chrome://apps" target="_blank">
<img src="images/login.jpg" class="img-rounded"/>
</a>
</div>
<div class="col-lg-9">
<p>
Arietta has a SSH client installed so you need an SSH client to get the access to the system console.
<ul>
<li>
If you're on Google Chrome, install the plug-in
<a href="https://chrome.google.com/webstore/detail/secure-shell/pnhechapfaindjhompbnflcldabbghjo" target="_blank">Secure Shell</a>. When
installed open it from Chrome Apps menu.
</li>
<li>
On Linux you could use ssh by typing, from a terminal session: <b>ssh [email protected]</b>
</li>
<li>
On Windows you could use <a href="http://www.putty.org/" target="_blank">putty.exe</a>
</li>
</ul>
In any case the login data are:
<ul>
<li>
Login as user: <b>acme</b> Password: <b>acmesystems</b>
</li>
<li>
Login as root: <b>root</b> Password: <b>acmesystems</b>
</li>
</p>
</div>
</div>
<div class="row">
<h2>Arietta pinout and examples</h2>
<div class="col-lg-3">
<a href="http://pinout.acmesystems.it" target="_blank">
<img src="images/pinout.jpg" class="img-rounded"/>
</a>
</div>
<div class="col-lg-9">
<p>
Discover how to setup the Arietta pinout definition and how to manage theri signals.
<ul>
<li>
<a href="http://pinout.acmesystems.it" target="_blank">Arietta pinout, DTS compiler and code examples</a>
</li>
</ul>
In any case the login data are:
<ul>
<li>
Login as user: <b>acme</b> Password: <b>acmesystems</b>
</li>
<li>
Login as root: <b>root</b> Password: <b>acmesystems</b>
</li>
</p>
</div>
</div>
<hr/>
<footer>
<br/>
<p align="center">
<a href="http://www.acmesystems.it" target="_blank">
<img src="images/logoacme.jpg" width="320px" border="0"/>
</a>
<br/>
2016 © Acme Systems srl <a href="http://www.acmesystems.it" target="_blank">http://www.acmesystems.it</a>
</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="jquery/jquery-1.10.2.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>