slitaz-forge view arm/codex/apps.html @ rev 506

arm: start codex/faq.html
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 21:56:56 2014 +0200 (2014-04-06)
parents 22ea61135a68
children 0b9fb7a57d0c
line source
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <title>SliTaz ARM - Applications</title>
5 <meta charset="utf-8" />
6 <link rel="stylesheet" type="text/css" href="style.css" />
7 </head>
8 <body>
10 <div id="header">
11 <div id="logo"></div>
12 <div id="network">
13 <a href="http://arm.slitaz.org/">SliTaz ARM</a>
14 </div>
15 <h1><a href=".">SliTaz ARM Codex</a></h1>
16 </div>
18 <!-- Content -->
19 <div id="content">
21 <h2>Applications</h2>
23 <p>
24 List of common SliTaz ARM applications. This is a far from complete list
25 but focused on one tool for one task. Use 'spk-find package' to find
26 packages.
27 </p>
29 <ul>
30 <li><a href="#multimedia">Multimedia</a></li>
31 <li><a href="#networking">Networking</a></li>
32 <li><a href="#servers">Servers</a></li>
33 <li><a href="#x-window">X Window</a></li>
34 <li><a href="#development">Development</a></li>
35 </ul>
37 <h2 id="multimedia">Multimedia</h2>
39 <ul>
40 <li>Cmdline music player: <b>mpg123</b></li>
41 <li>GTK/GUI music player: <b>alsaplayer</b></li>
42 <li>Sound mixer: <b>alsamixer</b></li>
43 <li>Audio decoder: <b>decode</b> (MP3, OGG, etc)</li>
44 <li>Video player: <b>mplayer</b></li>
45 <li>Audio/Video tool: <b>ffmpeg</b> (record, convert, stream)</li>
46 </ul>
48 <p>
49 To listen to all audio files in a directory you can use:
50 </p>
52 <pre>
53 $ mpg123 Music/*
54 </pre>
56 <h2 id="networking">Networking</h2>
58 <ul>
59 <li>Web browser: <b>links</b> (gui or cmdline)</li>
60 <li>Cmdline web browser: <b>lynx</b></li>
61 <li>Cmdline IRC client: <b>tazirc</b></li>
62 </ul>
64 <h2 id="servers">Servers</h2>
66 <ul>
67 <li>All SliTaz ARM flavors provide the Busybox HTTPd daemon</li>
68 <li>Web server: <b>lighttpd</b></li>
69 <li>Audio server: <b>mpd</b></li>
70 <li>SSHd server: <b>dropbear</b></li>
71 </ul>
73 <p>
74 To start a server daemon at boot time you must edit the configuration
75 file: <b>/etc/rcS.conf</b> and add the daemon name to the RUN_DAEMONS
76 variable. Example to start the HTTPd daemon from the command line:
77 </p>
79 <pre>
80 # startd httpd
81 </pre>
83 <h2 id="x-window">X Window</h2>
85 <ul>
86 <li>Default desktop powered by <b>jwm</b> with panel and menu</li>
87 <li>Window manager: <b>openbox</b></li>
88 <li>Desktop environment: <b>enlightenment</b> (e17)</li>
89 <li>Desktop wallpaper: <b>hsetroot</b></li>
90 <li>Desktop panel: <b>tint2</b></li>
91 <li>Desktop launch bar: <b>wbar2</b></li>
92 </ul>
94 <h2 id="development">Development</h2>
96 <ul>
97 <li>The duly famous SHell scripting</li>
98 <li>Ncurses dialog scripts</li>
99 <li>Lua programming language</li>
100 <li>Ruby with gems support</li>
101 <li>Nasm/Yasm netwide assembler</li>
102 </ul>
104 <p>
105 Dialog lets you create fast Ncurses interfaces using a SHell script coding
106 style. Here is a short example to run from the cmdline:
107 </p>
109 <pre>
110 $ dialog --msgbox "Hello World!" 8 32
111 </pre>
113 <!-- Close content -->
114 </div>
116 <div id="footer">
117 &copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
118 </div>
120 </body>
121 </html>