slitaz-forge view arm/codex/system.html @ rev 709

boot: add mypizza.slitaz.org link
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 15 17:55:16 2019 +0100 (2019-12-15)
parents a0cc5234d537
children
line source
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <title>SliTaz ARM Codex - System</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>Configuration</h2>
31 <p>
32 System and devices configuration
33 </p>
35 <ul>
36 <li><a href="#firstboot">First boot setup</a></li>
37 <li><a href="#slitaz-config">SliTaz Ncurses config</a></li>
38 <li><a href="#spk">Packages management</a></li>
39 <li><a href="#cgi-adm">CGI/Web remote control</a></li>
40 </ul>
42 <h2 id="firstboot">First boot setup</h2>
44 <p>
45 On the first SliTaz ARM boot you will be prompted to configure basic
46 system settings such as the system keymap, the root password, default
47 user settings and wifi configuration.
48 </p>
49 <p>
50 If you don't want this setup you can create a file with the current
51 date as content. Mount the sdcard and create a file 'post-install'
52 before you boot. Example with the third sdcard partition mounted
53 on /mnt:
54 </p>
55 <pre>
56 # date > /mnt/var/lib/slitaz/post-install
57 </pre>
59 <h2 id="slitaz-config">SliTaz Ncurses config</h2>
61 <p>
62 Each SliTaz ARM flavor provides an Ncurses dialog tool to configure the
63 system from the Linux kernel console or from an X session with mouse
64 support. The slitaz-config tool can be found in the 'System Tools'
65 menu or can be run from a cmdline:
66 </p>
67 <pre>
68 # slitaz-config
69 </pre>
71 <h2 id="spk">Packages management</h2>
73 <p>
74 The recommended package manager for SliTaz ARM is 'spk', the package
75 is installed by default on all flavors and provides several tools to
76 handle SliTaz packages. Spk was coded using a multi-arch architecture, it
77 handles multiple packages in arguments and provides an Ncurses GUI
78 interface. The spk documentation is installed in /usr/share/doc/spk
79 and can be found in the desktop menu.
80 </p>
82 <h2 id="cgi-adm">CGI/Web remote control</h2>
84 <p>
85 SliTaz ARM flavors provide a CGI SHell remote control environment
86 with plugins support and HTTP authentication. You can reboot/halt
87 the system, edit any system files, check system status or upload
88 files via a nice web interface.
89 </p>
90 <p>
91 To use the interface, you must find the IP address of your device
92 and connect with the root user and password via the correct local IP.
93 You can use ipinfo on the device to get the IP address:
94 </p>
95 <pre>
96 $ ipinfo
97 URL: http://192.168.x.xxx/adm
98 </pre>
99 <p>
100 The service is started by default to help new users. If you want to
101 stop/start the web server manually from a cmdline you can use the
102 following commands and if you want to disable the service at boot
103 you must edit: <b>/etc/rcS.conf</b>. Start or stop the web server:
104 </p>
105 <pre>
106 # stopd httpd
107 # startd httpd
108 </pre>
109 <p>
110 If you wish to run the service on another port, you can edit the web
111 server configuration file: <b>/etc/httpd.conf</b>
112 </p>
114 <!-- Close content -->
115 </div>
117 <div id="footer">
118 &copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
119 </div>
121 </body>
122 </html>