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

Update pangolin
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jan 01 18:26:56 2020 +0100 (2020-01-01)
parents 7312478b14ae
children
line source
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <title>SliTaz ARM Codex - Apps</title>
5 <meta charset="utf-8" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <link rel="stylesheet" type="text/css" href="style.css" />
8 <link rel="stylesheet" type="text/css" href="style-tiny.css" />
9 </head>
10 <body bgcolor="#ffffff">
12 <div id="header">
13 <div id="network"><a href="http://arm.slitaz.org/">SliTaz ARM</a></div>
14 <h1><a href=".">SliTaz ARM Codex</a></h1>
15 </div>
17 <nav id="nav" role="navigation" tabindex="0">
18 <ul>
19 <li><a class="nav1" href="faq.html">FAQ</a></li>
20 <li><a class="nav2" href="system.html">System</a></li>
21 <li><a class="nav1" href="apps.html">Apps</a></li>
22 <li><a class="nav2" href="setup.html">Setup</a></li>
23 </ul>
24 </nav>
26 <!-- Content -->
27 <div id="content">
29 <h2>Applications</h2>
31 <p>
32 List of common SliTaz ARM applications. This is a far from complete list
33 but focused on one tool for one task. Use 'spk-find package' to find
34 packages.
35 </p>
37 <ul>
38 <li><a href="#multimedia">Multimedia</a></li>
39 <li><a href="#networking">Networking</a></li>
40 <li><a href="#servers">Servers</a></li>
41 <li><a href="#x-window">X Window</a></li>
42 <li><a href="#development">Development</a></li>
43 </ul>
45 <h2 id="multimedia">Multimedia</h2>
47 <ul>
48 <li>Cmdline music player: <b>mpg123</b></li>
49 <li>Ncurses/GUI music player: <b>mpl123</b></li>
50 <li>GTK/GUI music player: <b>alsaplayer</b></li>
51 <li>Sound mixer: <b>alsamixer</b></li>
52 <li>Audio decoder: <b>decode</b> (MP3, OGG, etc)</li>
53 <li>Video player: <b>mplayer</b></li>
54 <li>Audio/Video tool: <b>ffmpeg</b> (record, convert, stream)</li>
55 </ul>
57 <p>
58 To listen to all audio files in a directory you can use:
59 </p>
61 <pre>
62 $ mpg123 Music/*
63 </pre>
65 <h2 id="networking">Networking</h2>
67 <ul>
68 <li>FLTK/GUI web browser: <b>dillo</b></li>
69 <li>Web browser: <b>links</b> (gui or cmdline)</li>
70 <li>Cmdline web browser: <b>lynx</b></li>
71 <li>Cmdline IRC client: <b>tazirc</b></li>
72 <li>Network mapper: <b>nmap</b></li>
73 </ul>
75 <h2 id="servers">Servers</h2>
77 <ul>
78 <li>All SliTaz ARM flavors provide the Busybox HTTPd daemon</li>
79 <li>Web server: <b>lighttpd</b></li>
80 <li>Audio server: <b>mpd</b></li>
81 <li>SSHd server: <b>dropbear</b></li>
82 <li>VNC server: <b>x11vnc</b></li>
83 </ul>
85 <p>
86 To start a server daemon at boot time you must edit the configuration
87 file: <b>/etc/rcS.conf</b> and add the daemon name to the RUN_DAEMONS
88 variable. Example to start the HTTPd daemon from the command line:
89 </p>
91 <pre>
92 # startd httpd
93 </pre>
95 <h2 id="x-window">X Window</h2>
97 <ul>
98 <li>Default desktop powered by <b>jwm</b> with panel and menu</li>
99 <li>Window manager: <b>openbox</b></li>
100 <li>Desktop environment: <b>enlightenment</b> (e17)</li>
101 <li>Desktop wallpaper: <b>hsetroot</b></li>
102 <li>X Desktop panel: <b>tint2</b></li>
103 <li>Desktop launch bar: <b>wbar2</b></li>
104 <li>GTK Panel &amp; launch bar: <b>lxpanel</b></li>
105 </ul>
107 <h2 id="development">Development</h2>
109 <ul>
110 <li>The duly famous SHell scripting</li>
111 <li>Python programming language</li>
112 <li>Ncurses dialog scripts</li>
113 <li>Lua programming language</li>
114 <li>Ruby with gems support</li>
115 <li>Nasm/Yasm netwide assembler</li>
116 <li>Scratch development environment</li>
117 <li>Yad GTK scripting</li>
118 </ul>
120 <p>
121 Dialog lets you create fast Ncurses interfaces using a SHell script coding
122 style. Here is a short example to run from the cmdline:
123 </p>
125 <pre>
126 $ dialog --msgbox "Hello World!" 8 32
127 </pre>
129 <!-- Close content -->
130 </div>
132 <div id="footer">
133 &copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
134 </div>
136 </body>
137 </html>