slitaz-forge view boot/en/index.php @ rev 343

A more useful hg link
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 15:38:27 2013 +0100 (2013-01-24)
parents 7381bc5d5f27
children 8f7ddeaffa3b
line source
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <title>SliTaz Web Boot</title>
6 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
7 <meta name="description" content="slitaz gPXE boot online your OS web-boot slitaz-cooking" />
8 <meta name="keywords" lang="en" content="slitaz, boot, pxe, web OS" />
9 <meta name="robots" content="index, follow, all" />
10 <meta name="modified" content="<?php echo (date( "Y-m-d H:i:s", getlastmod())); ?>" />
11 <meta name="author" content="Christophe Lincoln"/>
12 <link rel="shortcut icon" href="../favicon.ico" />
13 <link rel="stylesheet" type="text/css" href="../slitaz.css" />
14 </head>
15 <body>
17 <!-- Header -->
18 <div id="header">
19 <div id="logo"></div>
20 <div id="network">
21 <a href="http://www.slitaz.org/">
22 <img src="../images/network.png" alt="network.png" /></a>
23 <a href="http://scn.slitaz.org/">Community</a>
24 <a href="http://doc.slitaz.org/">Doc</a>
25 <a href="http://forum.slitaz.org/">Forum</a>
26 <a href="http://bugs.slitaz.org">Bugs</a>
27 <a href="http://hg.slitaz.org/?sort=lastchange">Hg</a>
28 </div>
29 <h1><a href="http://boot.slitaz.org/">SliTaz Web Boot</a></h1>
30 </div>
32 <!-- Block -->
33 <div id="block">
34 <!-- Navigation -->
35 <div id="block_nav">
36 <h4><img src="../images/users.png" alt="users.png" />Community</h4>
37 <ul>
38 <li><a href="http://scn.slitaz.org/">Community Network</a></li>
39 <li><a href="http://pizza.slitaz.org/">LiveCD Online Builder</a></li>
40 <li><a href="http://doc.slitaz.org/en:cookbook:start">SliTaz Cookbook</a></li>
41 <li><a href="http://doc.slitaz.org/en:handbook:genlivecd">LiveCD flavor howto</a></li>
42 </ul>
43 </div>
44 <!-- Information/image -->
45 <div id="block_info">
46 <h4>Web Boot</h4>
47 <p>
48 Welcome to the <a href="http://www.slitaz.org/en/">SliTaz GNU/Linux</a>
49 gPXE boot host; boot.slitaz.org allows you to boot SliTaz from the Web
50 using a cdrom, USB media or a floppy disk.
51 </p>
52 <div class="button" style="padding-top: 8px;">
53 Quick Download:
54 <a href="http://mirror.slitaz.org/boot/slitaz-boot.iso">slitaz-boot.iso</a>
55 </div>
56 </div>
57 </div>
59 <!-- Languages -->
60 <div id="lang">
61 <a href="http://www.slitaz.org/i18n.php">
62 <img src="../images/locale.png" alt="i18n" /></a>
63 <a href="../de/">Deutsch</a>
64 <a href="../en/">English</a>
65 <a href="../fr/">Français</a>
66 <a href="../pt/">Português</a>
67 <a href="../ru/">Русский</a>
68 </div>
70 <!-- Content -->
71 <div id="content">
73 <h2>Introduction</h2>
75 <p>
76 Boot your operating system from the internet and enjoy a full system
77 working entirely in RAM with speed and stability in mind. The Linux Kernel
78 and the complete SliTaz compressed root filesystem will be loaded into
79 RAM from the Web using PXE and HTTP protocols.
80 </p>
82 <a name="guide"></a>
83 <h2>Short guide</h2>
84 <p>
85 To boot from the internet you'll need a working DHCP server, DNS server/cache
86 and a default internet route. This is usually the case if you have a router
87 for network connection.
88 </p>
89 <ul>
90 <li>SliTaz Cooking has the boot option <code>web</code>, so you can
91 use boot.slitaz.org from the standard core LiveCD.</li>
92 <li>SliTaz boot ISO: Download
93 <a href="http://mirror.slitaz.org/boot/slitaz-boot.iso">slitaz-boot.iso</a>
94 (<a href="http://mirror.slitaz.org/boot/slitaz-boot.md5">md5</a>)
95 and burn the image to a cdrom. Boot from the cdrom device and select
96 gPXE. This ISO image also provides Memtest86 to test system memory.
97 </li>
98 <li>USB media: Use TazUSB to generate bootable USB media. Install
99 the package <code>gpxe</code>, copy /boot/gpxe into the boot
100 directory of the USB media and add an entry to the Syslinux configuration
101 file <code>syslinux.cfg</code>:
102 <pre class="script">
103 label web
104 kernel /boot/gpxe
105 </pre></li>
106 <li>Floppy image: Download
107 <a href="http://mirror.slitaz.org/boot/floppy-grub">floppy-grub</a>
108 (<a href="http://mirror.slitaz.org/boot/floppy-grub.md5">md5</a>)
109 and transfer the image to a blank floppy disk using the command:
110 <code>dd if=floppy-grub of=/dev/fd0</code>. Boot the floppy and select
111 gPXE entry.</li>
112 <li>Network boot: if you can modify your DHCP server configuration, declare
113 the tftp server <i>mirror.slitaz.org</i> and the boot file
114 <i>gpxe.pxe</i> :
115 <ul>
116 <li>for <b>udhcpd</b>
117 <pre>siaddr mirror.slitaz.org
118 boot_file gpxe.pxe</pre></li>
119 <li>for <b>dhcpd</b>
120 <pre>next-server "mirror.slitaz.org"
121 filemane "gpxe.pxe"</pre></li>
122 <li>for <b>dnsmasq</b>
123 <pre>dhcp-boot=gpxe.pxe,mirror.slitaz.org</pre></li>
124 </ul>
125 </li>
126 </ul>
128 <h3>Boot time</h3>
129 <p>
130 The boot time largely depends on your network connection. With a 1Mb
131 connection in France, it takes 5 min. If you want, you can report the
132 boot time on the Mailing list or the Forum.
133 </p>
135 <h3>Required configuration</h3>
136 <p>
137 The default boot entry needs 160Mb RAM. Two entries are available to
138 boot with 24Mb:
139 </p>
140 <ul>
141 <li><code>tiny</code> starts in text mode.</li>
142 <li><code>loram</code> starts in graphical mode.</li>
143 </ul>
145 <!-- End of content -->
146 </div>
148 <!-- Footer -->
149 <div id="footer">
150 Copyright &copy; <span class="year"></span>
151 <a href="http://www.slitaz.org/">SliTaz</a> - Network:
152 <a href="http://scn.slitaz.org/">Community</a>
153 <a href="http://doc.slitaz.org/">Doc</a>
154 <a href="http://forum.slitaz.org/">Forum</a>
155 <a href="http://pkgs.slitaz.org/">Packages</a>
156 <a href="http://bugs.slitaz.org">Bugs</a>
157 <a href="http://hg.slitaz.org/">Hg</a>
158 <p>
159 SliTaz @
160 <a href="http://twitter.com/slitaz">Twitter</a>
161 <a href="http://www.facebook.com/slitaz">Facebook</a>
162 <a href="http://distrowatch.com/slitaz">Distrowatch</a>
163 <a href="http://en.wikipedia.org/wiki/SliTaz">Wikipedia</a>
164 <a href="http://flattr.com/profile/slitaz">Flattr</a>
165 </p>
166 </div>
168 </body>
169 </html>