slitaz-forge annotate arm/codex/system.html @ rev 582

forum: add favicon.ico
author Richard Dunbar <mojo@slitaz.org>
date Fri Oct 31 01:00:02 2014 -0400 (2014-10-31)
parents 7312478b14ae
children f974819085be
rev   line source
pankso@519 1 <!DOCTYPE html>
pankso@519 2 <html lang="en">
pankso@519 3 <head>
pankso@519 4 <title>SliTaz ARM Codex - System</title>
pankso@519 5 <meta charset="utf-8" />
pankso@519 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
pankso@519 7 <link rel="stylesheet" type="text/css" href="style.css" />
pankso@519 8 <link rel="stylesheet" type="text/css" href="style-tiny.css" />
pankso@519 9 </head>
pankso@520 10 <body bgcolor="#ffffff">
pankso@519 11
pankso@519 12 <div id="header">
pankso@519 13 <div id="network"><a href="http://arm.slitaz.org/">SliTaz ARM</a></div>
pankso@519 14 <h1><a href=".">SliTaz ARM Codex</a></h1>
pankso@519 15 </div>
pankso@519 16
pankso@519 17 <nav id="nav" role="navigation" tabindex="0">
pankso@519 18 <ul>
pankso@519 19 <li><a class="nav1" href="faq.html">FAQ</a></li>
pankso@519 20 <li><a class="nav2" href="system.html">System</a></li>
pankso@519 21 <li><a class="nav1" href="apps.html">Apps</a></li>
pankso@519 22 <li><a class="nav2" href="setup.html">Setup</a></li>
pankso@519 23 </ul>
pankso@519 24 </nav>
pankso@519 25
pankso@519 26 <!-- Content -->
pankso@519 27 <div id="content">
pankso@519 28
pankso@519 29 <h2>Configuration</h2>
pankso@519 30
pankso@519 31 <p>
pankso@519 32 System and devices configuration
pankso@519 33 </p>
pankso@519 34
pankso@519 35 <ul>
pankso@519 36 <li><a href="#firstboot">First boot setup</a></li>
pankso@519 37 <li><a href="#slitaz-config">SliTaz Ncurses config</a></li>
pankso@519 38 <li><a href="#spk">Packages management</a></li>
pankso@519 39 <li><a href="#cgi-adm">CGI/Web remote control</a></li>
pankso@519 40 </ul>
pankso@519 41
pankso@519 42 <h2 id="firstboot">First boot setup</h2>
pankso@534 43
pankso@519 44 <p>
pankso@519 45 On the first SliTaz ARM boot you will be prompted to configure basic
pankso@534 46 system settings such as the system keymap, the root password, default
pankso@534 47 user settings and wifi configuration.
pankso@519 48 </p>
pankso@534 49 <p>
pankso@534 50 If you don't want this setup you can create a file with the current
pankso@534 51 date as content. Mount the sdcard and create a file 'post-install'
pankso@534 52 before you boot. Example with the third sdcard partition mounted
pankso@534 53 on /mnt:
pankso@534 54 </p>
pankso@534 55 <pre>
pankso@534 56 # date > /mnt/var/lib/slitaz/post-install
pankso@534 57 </pre>
pankso@519 58
pankso@519 59 <h2 id="slitaz-config">SliTaz Ncurses config</h2>
pankso@534 60
pankso@519 61 <p>
paul@521 62 Each SliTaz ARM flavor provides an Ncurses dialog tool to configure the
pankso@519 63 system from the Linux kernel console or from an X session with mouse
pankso@519 64 support. The slitaz-config tool can be found in the 'System Tools'
paul@521 65 menu or can be run from a cmdline:
pankso@519 66 </p>
pankso@519 67 <pre>
pankso@519 68 # slitaz-config
pankso@519 69 </pre>
pankso@519 70
pankso@519 71 <h2 id="spk">Packages management</h2>
pankso@534 72
pankso@519 73 <p>
paul@521 74 The recommended package manager for Slitaz ARM is 'spk', the package
paul@521 75 is installed by default on all flavors and provides several tools to
paul@521 76 handle SliTaz packages. Spk was coded using a multi-arch architecture, it
paul@521 77 handles multiple packages in arguments and provides an Ncurses GUI
paul@521 78 interface. The spk documentation is installed in /usr/share/doc/spk
pankso@519 79 and can be found in the desktop menu.
pankso@519 80 </p>
pankso@519 81
pankso@519 82 <h2 id="cgi-adm">CGI/Web remote control</h2>
pankso@519 83
pankso@519 84 <p>
paul@521 85 SliTaz ARM flavors provide a CGI SHell remote control environment
paul@522 86 with plugins support and HTTP authentication. You can reboot/halt
pankso@519 87 the system, edit any system files, check system status or upload
paul@521 88 files via a nice web interface.
pankso@519 89 </p>
pankso@519 90 <p>
pankso@534 91 To use the interface, you must find the IP address of your device
pankso@534 92 and connect with the root user and password via the correct local IP.
paul@541 93 You can use ipinfo on the device to get the IP address:
pankso@519 94 </p>
pankso@519 95 <pre>
pankso@534 96 $ ipinfo
pankso@534 97 URL: http://192.168.x.xxx/adm
pankso@534 98 </pre>
pankso@534 99 <p>
pankso@534 100 The service is started by default to help new users. If you want to
paul@541 101 stop/start the web server manually from a cmdline you can use the
pankso@534 102 following commands and if you want to disable the service at boot
pankso@534 103 you must edit: <b>/etc/rcS.conf</b>. Start or stop the web server:
pankso@534 104 </p>
pankso@534 105 <pre>
pankso@534 106 # stopd httpd
pankso@519 107 # startd httpd
pankso@519 108 </pre>
pankso@534 109 <p>
paul@541 110 If you wish to run the service on another port, you can edit the web
pankso@534 111 server configuration file: <b>/etc/httpd.conf</b>
pankso@534 112 </p>
pankso@519 113
pankso@519 114 <!-- Close content -->
pankso@519 115 </div>
pankso@519 116
pankso@519 117 <div id="footer">
pankso@519 118 &copy; 2014 - <a href="http://www.slitaz.org/">SliTaz GNU/Linux</a>
pankso@519 119 </div>
pankso@519 120
pankso@519 121 </body>
pankso@519 122 </html>