website view en/doc/index.php @ rev 1344

Resize balinor logo to 120px
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 22 23:02:15 2021 +0100 (2021-01-22)
parents 9ed0bfb74392
children
line source
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <title>SliTaz - English documentation</title>
6 <meta name="description" content="SliTaz GNU/Linux English documentationx part livecd tazpkg packages">
7 <meta name="keywords" lang="en" content="System, free, gnu, linux, opensource software, livecd in RAM">
8 <meta name="author" content="Christophe Lincoln">
9 <?php include("../../lib/html/meta-link.html"); ?>
10 </head>
11 <body>
13 <?php
14 include("../../lib/html/header.html");
15 include("../../lib/html/nav.html");
16 include("../../lib/lang.php");
17 ?>
19 <!-- Content -->
20 <section id="content">
22 <h2>English documentation</h2>
24 <p>
25 SliTaz official documentation is available on the community
26 Wiki site. Manuals and a getting started guide is provided
27 by each SliTaz LiveCD and available through the
28 "Documentation" menu.
29 </p>
30 <ul>
31 <li><a href="http://doc.slitaz.org/en:start">Community Wiki</a></li>
32 <li><a href="http://hg.slitaz.org/slitaz-doc/raw-file/tip/slitaz/index.en.html"
33 >Getting started guide</a></li>
34 </ul>
36 <h2>Handbook &amp; Cookbook</h2>
38 <p>
39 SliTaz <a href="http://doc.slitaz.org/en:handbook:start">Handbook</a> -
40 LiveCD usage, package management, network or system administration
41 and specific instructions. This Handbook is a community effort to provide
42 high quality documentation for SliTaz users. It will help you get started
43 with SliTaz GNU/Linux and show you how to configure the system to your own
44 needs and preferences. This is the documentation that we advise you to read,
45 learn and consult first.
46 </p>
47 <p>
48 SliTaz <a href="http://doc.slitaz.org/en:cookbook:start">Cookbook</a> -
49 Information regarding the management, operation and development of the distribution.
50 Instructions on how to use the wok and package receipts, descriptions of boot scripts
51 and rootcd files, and various tools.
52 </p>
54 <h2>Scratchbook</h2>
56 <p>
57 Historically, the Scratchbook was written when SliTaz was created and wasn't
58 made to be updated. But over time, some SliTaz contributors migrated the book
59 over to the Wiki and have made some updates:
60 <a href="http://doc.slitaz.org/en:scratchbook:start">Community Scratchbook</a>
61 </p>
62 <p>
63 SliTaz <a href="scratchbook/">Original Scratchbook</a> -
64 Describes the stages of creating the very first SliTaz distribution
65 commencing with instructions on compiling the Linux Kernel, installing
66 the graphical server (Xvesa) and GTK applications, etc. It contains
67 techniques requiring time and motivation that enable you to build a
68 GNU/Linux system from source.
69 </p>
71 <h2>Manuals</h2>
73 <ul>
74 <li><a href="http://hg.slitaz.org/tazpkg/raw-file/tip/doc/tazpkg.en.html"
75 >Tazpkg manual</a> - SliTaz Package Manager.</li>
76 <li><a href="http://hg.slitaz.org/tazlito/raw-file/tip/doc/tazlito.en.html"
77 >Tazlito manual</a> - SliTaz LiveCD utility.</li>
78 <li><a href="http://hg.slitaz.org/tazusb/raw-file/tip/doc/tazusb.en.html"
79 >TazUSB manual</a> - SliTaz LiveUSB utility.</li>
80 <li><a href="http://hg.slitaz.org/cookutils/raw-file/tip/doc/cookutils.en.html"
81 >Cookutils manual</a> - SliTaz Package Cooker.</li>
82 </ul>
84 <h2>Release Notes</h2>
86 <p>
87 SliTaz Release Notes provide detailed information about the stable version
88 and give a few useful tips to help you start using the system. On the core
89 LiveCD, Release Notes are installed and available through the “Documentation”
90 menu.
91 </p>
93 <ul>
94 <?php
95 $relnotes = array();
96 for ($release = 1;; $release++) {
97 $file = "releases/".$release.".0/relnotes.en.html";
98 if (!file_exists($file))
99 break;
100 array_unshift($relnotes, array("release" => $release.".0", "file" => $file));
101 }
102 foreach ($relnotes as $release) {
103 print " <li><a href=\"".$release["file"]."\">SliTaz GNU/Linux ".$release["release"]." -\n";
104 print " Release Notes</a></li>\n";
105 }
106 ?>
107 </ul>
109 <!-- End of content -->
110 </section>
112 <?php include("../../lib/html/footer.html"); ?>
114 </body>
115 </html>