slitaz-forge rev 494

Add missing codex pages
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 31 00:04:14 2014 +0200 (2014-03-31)
parents 630997667575
children a131066b5374
files arm/codex/README arm/codex/apps.html arm/codex/images arm/codex/index.html arm/codex/style.css
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/arm/codex/README	Mon Mar 31 00:04:14 2014 +0200
     1.3 @@ -0,0 +1,15 @@
     1.4 +SliTaz ARM Codex - Small and up-to-date documentation
     1.5 +================================================================================
     1.6 +
     1.7 +Please discuss any new page since the goal is to have a small set of info to
     1.8 +keep up-to-date. This HTML doc is packaged for ARM in slitaz-doc, the style.css
     1.9 +and images/ symlink help to package.
    1.10 +
    1.11 +
    1.12 +	* quickstart.html
    1.13 +	* faq.html
    1.14 +	* apps.html
    1.15 +	* config.html
    1.16 +	
    1.17 +	
    1.18 +================================================================================
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/arm/codex/apps.html	Mon Mar 31 00:04:14 2014 +0200
     2.3 @@ -0,0 +1,120 @@
     2.4 +<!DOCTYPE html>
     2.5 +<html lang="en">
     2.6 +<head>
     2.7 +	<title>SliTaz ARM - Codex</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>Applications</h2>
    2.25 +
    2.26 +<p>
    2.27 +	List of common SliTaz ARM applications. This far from a complet list
    2.28 +	but focused on one tool for one task. Use 'spk-find package' to find
    2.29 +	packages.
    2.30 +</p>
    2.31 +
    2.32 +<ul>
    2.33 +	<li><a href="#multimedia">Multimedia</a></li>
    2.34 +	<li><a href="#networking">Networking</a></li>
    2.35 +	<li><a href="#servers">Servers</a></li>
    2.36 +	<li><a href="#x-window">X Window</a></li>
    2.37 +	<li><a href="#development">Development</a></li>
    2.38 +</ul>
    2.39 +
    2.40 +<h2 id="multimedia">Multimedia</h2>
    2.41 +
    2.42 +<ul>
    2.43 +	<li>Cmdline music player: <b>mpg123</b></li>
    2.44 +	<li>Sound mixer: <b>alsamixer</b></li>
    2.45 +	<li>Audio decoder: <b>decode</b> (MP3, OGG, etc)</li>
    2.46 +	<li>Video player: <b>mplayer</b></li>
    2.47 +	<li>Audio/Video tool: <b>ffmpeg</b> (record, convert, stream)</li>
    2.48 +</ul>
    2.49 +
    2.50 +<p>
    2.51 +	To listen to all audio files in a directory you can use:
    2.52 +</p>
    2.53 +
    2.54 +<pre>
    2.55 +$ mpg123 Music/*
    2.56 +</pre>
    2.57 +
    2.58 +<h2 id="networking">Networking</h2>
    2.59 +
    2.60 +<ul>
    2.61 +	<li>Web browser: <b>links</b> (gui or cmdline)</li>
    2.62 +	<li>Cmdline web browser: <b>lynx</b></li>
    2.63 +	<li>Cmdline IRC client: <b>tazirc</b></li>
    2.64 +</ul>
    2.65 +
    2.66 +<h2 id="servers">Servers</h2>
    2.67 +
    2.68 +<ul>
    2.69 +	<li>All SliTaz ARM flavors provide Busybox HTTPd daemon</li>
    2.70 +	<li>Web server: <b>lighttpd</b></li>
    2.71 +	<li>Audio server: <b>mpd</b></li>
    2.72 +	<li>SSHd server: <b>dropbear</b></li>
    2.73 +</ul>
    2.74 +
    2.75 +<p>
    2.76 +	To start a server daemon at boot time you must edit the configuration
    2.77 +	file: <b>/etc/rcS.conf</b> and add the daemon name to the RUN_DAEMONS
    2.78 +	variable. Example to start the HTTPd daemon from the command line:
    2.79 +</p>
    2.80 +
    2.81 +<pre>
    2.82 +# startd httpd
    2.83 +</pre>
    2.84 +
    2.85 +<h2 id="x-window">X Window</h2>
    2.86 +
    2.87 +<ul>
    2.88 +	<li>Default desktop powered by <b>jwm</b> with panel and menu</li>
    2.89 +	<li>Window manager: <b>openbox</b></li>
    2.90 +	<li>Desktop environment: <b>enlightenment</b> (e17)</li>
    2.91 +	<li>Desktop wallpaper: <b>hsetroot</b></li>
    2.92 +	<li>Desktop panel: <b>tint2</b></li>
    2.93 +	<li>Desktop launch bar: <b>wbar2</b></li>
    2.94 +</ul>
    2.95 +
    2.96 +<h2 id="development">Development</h2>
    2.97 +
    2.98 +<ul>
    2.99 +	<li>The so famous SHell scripting</li>
   2.100 +	<li>Ncurses dialog: dialog --msgbox "Hello" 10 20</li>
   2.101 +	<li>Lua programing language</li>
   2.102 +	<li>Ruby with gems support</li>
   2.103 +	<li>Nasm/Yasm netwide assembler</li>
   2.104 +</ul>
   2.105 +
   2.106 +<p>
   2.107 +	Dialog let you create fast Ncurses interfaces with SHell script coding
   2.108 +	style. Here is a short example to run from cmdline:
   2.109 +</p>
   2.110 +
   2.111 +<pre>
   2.112 +$ dialog --msgbox "Hello World!" 8 32
   2.113 +</pre>
   2.114 +
   2.115 +<!-- Close content -->
   2.116 +</div>
   2.117 +
   2.118 +<div id="footer">
   2.119 +	&copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
   2.120 +</div>
   2.121 +
   2.122 +</body>
   2.123 +</html>
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/arm/codex/images	Mon Mar 31 00:04:14 2014 +0200
     3.3 @@ -0,0 +1,1 @@
     3.4 +../images/
     3.5 \ No newline at end of file
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/arm/codex/index.html	Mon Mar 31 00:04:14 2014 +0200
     4.3 @@ -0,0 +1,42 @@
     4.4 +<!DOCTYPE html>
     4.5 +<html lang="en">
     4.6 +<head>
     4.7 +	<title>SliTaz ARM - Codex</title>
     4.8 +	<meta charset="utf-8" />
     4.9 +	<link rel="stylesheet" type="text/css" href="style.css" />
    4.10 +</head>
    4.11 +<body>
    4.12 +
    4.13 +<div id="header">
    4.14 +	<div id="logo"></div>
    4.15 +	<div id="network">
    4.16 +		<a href="http://arm.slitaz.org/">Home</a>
    4.17 +		<a href="http://forum.slitaz.org/forum/arm">Forum</a> 
    4.18 +		<a href="http://bugs.slitaz.org/?arch=arm">Bugs</a>
    4.19 +		<a href="http://hg.slitaz.org/slitaz-arm/summary">Hg</a>
    4.20 +		<a href="http://cook.slitaz.org/cross/arm/">Cooker</a>
    4.21 +		<a href="http://mirror.slitaz.org/arm/">Mirror</a> 
    4.22 +	</div>
    4.23 +	<h1><a href=".">SliTaz ARM Codex</a></h1>
    4.24 +</div>
    4.25 +
    4.26 +<!-- Content -->
    4.27 +<div id="content">
    4.28 +	
    4.29 +<h2>The SliTaz ARM Codex</h2>
    4.30 +
    4.31 +<ul>
    4.32 +	<!--<li><a href="quickstart.html">Quickstart</a></li>-->
    4.33 +	<!--<li><a href="faq.html">The FAQ</a></li>-->
    4.34 +	<li><a href="apps.html">Applications</a></li>
    4.35 +</ul>
    4.36 +
    4.37 +<!-- Close content -->
    4.38 +</div>
    4.39 +
    4.40 +<div id="footer">
    4.41 +	&copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
    4.42 +</div>
    4.43 +
    4.44 +</body>
    4.45 +</html>
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/arm/codex/style.css	Mon Mar 31 00:04:14 2014 +0200
     5.3 @@ -0,0 +1,1 @@
     5.4 +../style.css
     5.5 \ No newline at end of file