update installation process

This commit is contained in:
Cédric Verstraeten
2016-09-02 13:48:50 +02:00
parent 94a217974e
commit 1f8c8722d2

View File

@@ -5,8 +5,8 @@
* [Download the .img](#download)
* [Flash the .img to a SD card](#flash)
* [Network configuration](#network)
* [Power on the Raspberry Pi](#poweron)
* [Access the Raspberry Pi with SSH](#access)
* [Power on the Raspberry Pi](#poweron)
* [Access the Raspberry Pi with SSH](#access)
## Introduction
@@ -40,7 +40,7 @@ To install KiOS you can <b>use our own installer</b>, which gives you a nice GUI
<script type="text/javascript">
require([_jsBase + 'main.js'], function(common)
{
require(["jquery", "//kerberos.io/etcher-versions.js"], function($)
require(["jquery", "//kerberos.io/etcher-versions.js", "//kerberos.io/sniffer.min.js"], function($)
{
$(function()
{
@@ -59,6 +59,16 @@ To install KiOS you can <b>use our own installer</b>, which gives you a nice GUI
})
// Specify current version
var platform = window.Sniff.os.name;
if(platform === "win")
{
platform += "64";
}
else if (platform !== "osx")
{
platform = "linux64";
}
var currentVersion = $.grep(versions, function(el){
return el.os == platform;
});
@@ -81,7 +91,7 @@ To install KiOS you can <b>use our own installer</b>, which gives you a nice GUI
<div id="advanced" style="display: none;">
<h2>Advanced Installation</h2>
It's not a problem if you don't want to use the KiOS installer. You can download the KiOS .img yourself and flash it to your SD card.<br/><br/>
If you prefer **the hard way**, you can also flash **Kerberos.io** to your SD card manually. So it's not a problem if you don't want to use the KiOS installer. It goes as follows: download the KiOS .img yourself, flash it to your SD card with your terminal and edit some configuration files in the boot directory.<br/><br/>
<iframe src="https://player.vimeo.com/video/164054497?autoplay=0&color=943633" style="width:100%; height: 400px;" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
@@ -168,27 +178,27 @@ network={
ssid=""
psk=""
}</code></pre>
</div>
<a name="poweron"></a>
<h2>4. Power on the Raspberry Pi</h2>
<a name="poweron"></a>
<h2>Power on the Raspberry Pi</h2>
When the installation is completed, you can <b>plug the SD card</b> into your Raspberry Pi. From this point KiOS will boot the kernel and re-partition your SD-card; Please note that the first time you boot KiOS it can take about 2 mins before the system is operational. When KiOS is ready you can <b>open your favorite browser</b> and type in the IP address of your Raspberry Pi. This will open the Kerberos.io login page, which you can <b>access</b> with the username: <b>root</b> and password: <b>root</b>.
When the installation is completed, you can <b>plug the SD card</b> into your Raspberry Pi. From this point KiOS will boot the kernel and re-partition your SD-card; Please note that the first time you boot KiOS it can take about 2 mins before the system is operational. When KiOS is ready you can <b>open your favorite browser</b> and type in the IP address of your Raspberry Pi. This will open the Kerberos.io login page, which you can <b>access</b> with the username: <b>root</b> and password: <b>root</b>.
![Login page kerberos.io webinterface](1_how-to-access.png)
![Login page kerberos.io webinterface](1_how-to-access.png)
<a name="access"></a>
<h2>5. Access the Raspberry Pi with SSH</h2>
<a name="access"></a>
<h2>Access the Raspberry Pi with SSH</h2>
To use Kerberos.io you only need access to the webinterface, however you can also <b>access the system with SSH</b>.
To use Kerberos.io you only need access to the webinterface, however you can also <b>access the system with SSH</b>.
<pre><code>Cedrics-Mac-mini:build cedricverst$ ssh root@192.168.0.12
<pre><code>Cedrics-Mac-mini:build cedricverst$ ssh root@192.168.0.12
Welcome to kios-79e30bbb!
[root@kios-79e30bbb ~]# </code></pre>
Note that by default no root password is set, you can define a password in the <b>/data/etc/kios.conf</b> file.
Note that by default no root password is set, you can define a password in the <b>/data/etc/kios.conf</b> file.
<pre><code>[root@kios-79e30bbb ~]# nano /data/etc/kios.conf
<pre><code>[root@kios-79e30bbb ~]# nano /data/etc/kios.conf
[root@kios-79e30bbb ~]# reboot</code></pre>
Add your password, save the file and reboot the system.
</div>
Add your password, save the file and reboot the system.