-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.html
More file actions
27 lines (27 loc) · 1.52 KB
/
Copy pathREADME.html
File metadata and controls
27 lines (27 loc) · 1.52 KB
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
<h1 id="halucinator-tutorial">HALucinator Tutorial</h1>
<p>Welcome to the HALucinator Tutorial!</p>
<h2 id="sections">Sections</h2>
<ul>
<li><a href="01-firststeps/README.html">First Steps</a></li>
<li><a href="02-interact/README.html">Interacting with Firmware</a></li>
<li><a href="03-bugs/README.html">Hunting for Bugs</a></li>
</ul>
<h2 id="terminal-help">Terminal Help</h2>
<p>If you are stuck at any point, there are some commands to help you.</p>
<p>Each command begins with tutorial. Possible commands are:</p>
<ul>
<li><code>t01</code> : go to the 1st practical directory</li>
<li><code>t02</code> : go to the 2nd practical directory</li>
<li><code>t03</code> : go to the 3rd practical directory</li>
<li><code>thelp</code> : display this message</li>
<li><code>thome</code> : go back to the tutorial main directory</li>
<li><code>treadme</code> : open the readme.html file, in case you close it.</li>
</ul>
<p>There are also two HALucinator commands available, that you will use during this tutorial. They are:</p>
<pre><code>halucinator-symtool
halucinator-rehost</code></pre>
<p>The second one is something you will use inside of run.sh.</p>
<p>In the terminal, you can see where you are with the command pwd. You can list the directory you are in with ls. You can change to any directory with cd. You might also like to know:</p>
<pre><code>python3 myfile.py # runs that script with python.
./myscript.sh # runs a bash script.</code></pre>
<p>If you get stuck, don’t forget to ask for help, and likewise, please ask questions!</p>