slitaz-forge rev 508

arm: link to codex and add setup.html
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 11 11:25:54 2014 +0200 (2014-04-11)
parents 4aaaf5160531
children a849ba2adfd7
files arm/codex/index.html arm/codex/setup.html arm/header.html arm/index.html arm/rpi/index.html
line diff
     1.1 --- a/arm/codex/index.html	Mon Apr 07 17:56:06 2014 +0100
     1.2 +++ b/arm/codex/index.html	Fri Apr 11 11:25:54 2014 +0200
     1.3 @@ -10,12 +10,7 @@
     1.4  <div id="header">
     1.5  	<div id="logo"></div>
     1.6  	<div id="network">
     1.7 -		<a href="http://arm.slitaz.org/">Home</a>
     1.8 -		<a href="http://forum.slitaz.org/forum/arm">Forum</a> 
     1.9 -		<a href="http://bugs.slitaz.org/?arch=arm">Bugs</a>
    1.10 -		<a href="http://hg.slitaz.org/slitaz-arm/summary">Hg</a>
    1.11 -		<a href="http://cook.slitaz.org/cross/arm/">Cooker</a>
    1.12 -		<a href="http://mirror.slitaz.org/arm/">Mirror</a> 
    1.13 +		<a href="http://arm.slitaz.org/">SliTaz ARM</a>
    1.14  	</div>
    1.15  	<h1><a href=".">SliTaz ARM Codex</a></h1>
    1.16  </div>
    1.17 @@ -25,10 +20,15 @@
    1.18  	
    1.19  <h2>The SliTaz ARM Codex</h2>
    1.20  
    1.21 +<p>
    1.22 +	Welcome to the SliTaz GNU/Linux ARM Codex
    1.23 +</p>
    1.24 +
    1.25  <ul>
    1.26  	<!--<li><a href="quickstart.html">Quickstart</a></li>-->
    1.27 -	<li><a href="faq.html">The FAQ</a></li>
    1.28 -	<li><a href="apps.html">Applications</a></li>
    1.29 +	<li><a href="faq.html">The FAQ</a> - Frequently Asked Questions</li>
    1.30 +	<li><a href="apps.html">Applications</a> - List of applications with tips</li>
    1.31 +	<li><a href="setup.html">Setup</a> - System &amp; services setup guides</li>
    1.32  </ul>
    1.33  
    1.34  <!-- Close content -->
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/arm/codex/setup.html	Fri Apr 11 11:25:54 2014 +0200
     2.3 @@ -0,0 +1,75 @@
     2.4 +<!DOCTYPE html>
     2.5 +<html lang="en">
     2.6 +<head>
     2.7 +	<title>SliTaz ARM - Setup</title>
     2.8 +	<meta charset="utf-8" />
     2.9 +	<link rel="stylesheet" type="text/css" href="style.css" />
    2.10 +</head>
    2.11 +<body>
    2.12 +
    2.13 +<div id="header">
    2.14 +	<div id="logo"></div>
    2.15 +	<div id="network">
    2.16 +		<a href="http://arm.slitaz.org/">SliTaz ARM</a>
    2.17 +	</div>
    2.18 +	<h1><a href=".">SliTaz ARM Codex</a></h1>
    2.19 +</div>
    2.20 +
    2.21 +<!-- Content -->
    2.22 +<div id="content">
    2.23 +	
    2.24 +<h2>System &amp; services setup</h2>
    2.25 +
    2.26 +<p>
    2.27 +	Setup a web server or an IRC bouncer on your nifty ARM board.
    2.28 +</p>
    2.29 +
    2.30 +<ul>
    2.31 +	<li><a href="#firstboot">First boot setup</a></li>
    2.32 +	<li><a href="#znc">IRC bouncer setup</a></li>
    2.33 +</ul>
    2.34 +
    2.35 +<h2 id="firstboot">First boot setup</h2>
    2.36 +<p>
    2.37 +	On the first SliTaz ARM boot you will be prompt to configure basic
    2.38 +	system settings such as the system keymap and the root password. If
    2.39 +	dont want this setup you can create a file with the current date as
    2.40 +	content. Mount the sdcard and create /var/lib/slitaz/post-install 
    2.41 +	before you boot.
    2.42 +</p>
    2.43 +
    2.44 +<h2 id="znc">IRC bouncer setup</h2>
    2.45 +
    2.46 +<p>
    2.47 +	The goal is to stay connected on your favorite IRC channels. And playback
    2.48 +	the IRC messages when you are back online. To setup the IRC bouncer we
    2.49 +	are going to use a SliTaz RPi base or desktop system combined with
    2.50 +	<a href="http://wiki.znc.in/ZNC">ZNC</a>. First off install the package
    2.51 +	and create a configuration file:
    2.52 +</p>
    2.53 +
    2.54 +<pre>
    2.55 +# spk-add znc
    2.56 +# znc --makeconf
    2.57 +</pre>
    2.58 +
    2.59 +<p>
    2.60 +	The ZNC server will listen on port 1025 to provide the web interface.
    2.61 +	To start or kill the ZNC bouncer server:
    2.62 +</p>
    2.63 +
    2.64 +<pre>
    2.65 +# znc
    2.66 +# killall znc
    2.67 +</pre>
    2.68 +
    2.69 +
    2.70 +<!-- Close content -->
    2.71 +</div>
    2.72 +
    2.73 +<div id="footer">
    2.74 +	&copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
    2.75 +</div>
    2.76 +
    2.77 +</body>
    2.78 +</html>
     3.1 --- a/arm/header.html	Mon Apr 07 17:56:06 2014 +0100
     3.2 +++ b/arm/header.html	Fri Apr 11 11:25:54 2014 +0200
     3.3 @@ -27,7 +27,7 @@
     3.4  		<nav id="nav">
     3.5  			<a href="http://twitter.com/slitaz" title="Follow us on Twitter">
     3.6  			<img src="images/twitter.png" alt="Twitter" /></a>
     3.7 -			<a href="tools.cgi?doc&amp;tool=sat">README</a>
     3.8 +			<a href="codex/">Codex</a>
     3.9  			<a href="tools.cgi?pkgs">Packages</a>
    3.10  			<a href="rpi/">Raspberry Pi</a>
    3.11  		</nav>
     4.1 --- a/arm/index.html	Mon Apr 07 17:56:06 2014 +0100
     4.2 +++ b/arm/index.html	Fri Apr 11 11:25:54 2014 +0200
     4.3 @@ -28,7 +28,7 @@
     4.4  		<nav id="nav">
     4.5  			<a href="http://twitter.com/slitaz" title="Follow us on Twitter">
     4.6  			<img src="images/twitter.png" alt="Twitter" /></a>
     4.7 -			<a href="tools.cgi?doc&amp;tool=sat">README</a>
     4.8 +			<a href="codex/">Codex</a>
     4.9  			<a href="tools.cgi?pkgs">Packages</a>
    4.10  			<a href="rpi/">Raspberry Pi</a>
    4.11  		</nav>
     5.1 --- a/arm/rpi/index.html	Mon Apr 07 17:56:06 2014 +0100
     5.2 +++ b/arm/rpi/index.html	Fri Apr 11 11:25:54 2014 +0200
     5.3 @@ -28,7 +28,7 @@
     5.4  		<nav id="nav">
     5.5  			<a href="http://twitter.com/slitaz" title="Follow us on Twitter">
     5.6  			<img src="../images/twitter.png" alt="Twitter" /></a>
     5.7 -			<a href="../tools.cgi?doc&amp;tool=sat-rpi">README</a>
     5.8 +			<a href="../codex/">Codex</a>
     5.9  			<a href="../tools.cgi?pkgs">Packages</a>
    5.10  			<a href="../rpi/">Raspberry Pi</a>
    5.11  		</nav>