-
Notifications
You must be signed in to change notification settings - Fork 0
/
installation.php
24 lines (23 loc) · 1.12 KB
/
installation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<body>
<?php include 'top-nav.php';?>
<?php include 'sidebar.php';?>
<div>
<div id="main" class="col-xs-6">
<h1>Smarthome Quick Start Guide</h1><br>
<h3>Installation</h3><p>To perform a complete installation on a brand new Raspbian image:<br></p>
<ol>
<li>Download the piSetup.sh script from https://bitbucket.org/nstaffend/smarthomepi/src/. </li>
<li>Ensure that your Raspberry Pi has a valid internet connection.</li>
<li>Open the terminal window</li>
<li>Navigate to piSetup.sh</li>
<li>Type: sudo chmod +x piSetup.sh</li>
<li>Type: sudo ./piSetup.sh</li>
<li>The Raspberry Pi will update, install the Apache, MySQL, and PHP server functionality, as well as some helper libraries such as cURL for PHP. </li>
<li>During the script's execution you will be prompted 3 times for your MySQL root password. One of these times is to store the value into a temporary location to execute the database execution scripts.</li>
</ol>
</div>
</div>
</body>
</html>