diff options
Diffstat (limited to 'h-source/Application/Views/Desktop/Help')
-rw-r--r-- | h-source/Application/Views/Desktop/Help/index.php | 447 | ||||
-rw-r--r-- | h-source/Application/Views/Desktop/Help/index_de.php | 443 | ||||
-rw-r--r-- | h-source/Application/Views/Desktop/Help/index_es.php | 440 | ||||
-rw-r--r-- | h-source/Application/Views/Desktop/Help/index_fr.php | 432 | ||||
-rw-r--r-- | h-source/Application/Views/Desktop/Help/index_it.php | 436 |
5 files changed, 0 insertions, 2198 deletions
diff --git a/h-source/Application/Views/Desktop/Help/index.php b/h-source/Application/Views/Desktop/Help/index.php deleted file mode 100644 index c4fcee7..0000000 --- a/h-source/Application/Views/Desktop/Help/index.php +++ /dev/null @@ -1,447 +0,0 @@ -<?php if (!defined('EG')) die('Direct access not allowed!'); ?> - -<?php -// h-source, a web software to build a community of people that want to share their hardware information. -// Copyright (C) 2010, 2011 Antonio Gallo (h-source-copyright.txt) -// Copyright (C) 2011 Joerg Kohne -// -// This file is part of h-source -// -// h-source is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// h-source is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with h-source. If not, see <http://www.gnu.org/licenses/>. -?> - -<div class="help_external_box"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » <?php echo gtext("Help");?> - </div> - - <div class="help_tables_of_contents"> - Table of contents - <ul> - <li><a href="<?php echo $this->currPage."/$lang#wiki-syntax";?>">Wiki syntax</a></li> - <li><a href="<?php echo $this->currPage."/$lang#compatibility";?>">Compatibility classes</a></li> - <li><a href="<?php echo $this->currPage."/$lang#discover-hardware";?>">Discover your hardware</a></li> - <li><a href="<?php echo $this->currPage."/$lang#fully-free";?>">List of fully free GNU/Linux distributions</a></li> - </ul> - </div> - - <a name="wiki-syntax"></a><h2>Wiki Syntax</h2> - - <h3>List of <?php echo Website::$generalName;?> - Wiki Tags</h3> - - <table class="wiki"> - <thead> - <tr> - <th>Name</th> - <th>Tag</th> - <th>Result</th> - <th>Description</th> - </tr> - </thead> - <tbody> - <tr> - <td>bold</td> - <td>text [b]bold[/b]</td> - <td>text <b>bold</b></td> - <td>text bold</td> - </tr> - <tr> - <td>italic</td> - <td>text [i]italic[/i]</td> - <td>text <i>italic</i></td> - <td>text italic</td> - </tr> - <tr> - <td>del</td> - <td>text [del]deleted[/del]</td> - <td>text <del>deleted</del></td> - <td>text deleted</td> - </tr> - <tr> - <td>underline</td> - <td>text [u]underlined[/u]</td> - <td>text <u>underlined</u></td> - <td>text underlined</td> - </tr> - <tr> - <td>head 1</td> - <td>[h1]heading[/h1]</td> - <td> - <div class="div_h1"> - heading</div> - </td> - <td>head 1</td> - </tr> - <tr> - <td>head 2</td> - <td>[h2]heading[/h2]</td> - <td> - <div class="div_h2"> - heading</div> - </td> - <td>head 2</td> - </tr> - <tr> - <td>head 3</td> - <td>[h3]heading[/h3]</td> - <td> - <div class="div_h3"> - heading</div> - </td> - <td>head 3</td> - </tr> - <tr> - <td>paragraph</td> - <td>…[p]new paragraph[/p]</td> - <td>… - - <p>new paragraph</p> - </td> - <td>new paragraph</td> - </tr> - <tr> - <td>Ordered Lists </td> - <td><ul style="list-style-type:none;"> - <li>[list]</li> - <li><ul style="list-style-type:none;"> - <li>[*]first item[/*]</li> - <li>[*]second item[/*]</li> - </ul> - </li> - <li>[/list]</li> - </ul> - </td> - <td><ul> - <li>first item</li> - <li>second item</li> - </ul> - </td> - <td>make a list of items</td> - </tr> - <tr> - <td>Numbered List </td> - <td><ul style="list-style-type:none;"> - <li>[enum]</li> - <li><ul style="list-style-type:none;"> - <li>[*]first item[/*]</li> - <li>[*]second item[/*]</li> - </ul> - </li> - <li>[/enum]</li> - </ul> - </td> - <td><ol> - <li>first item</li> - <li>second item</li> - </ol> - </td> - <td>make a numbered list of items</td> - </tr> - <tr> - <td>list item</td> - <td>[*]item[/*]</td> - <td><ul> - <li>item</li> - </ul> - </td> - <td>add an item to a list</td> - </tr> - <tr> - <td>code</td> - <td>[code]some code[/code]</td> - <td><pre class="code_pre">some code</pre> - </td> - <td>some code</td> - </tr> - <tr> - <td>simple link</td> - <td>[a]url[/a]</td> - <td><a href="url">url</a></td> - <td>simple link</td> - </tr> - <tr> - <td>link with text</td> - <td>[a]url|text[/a]</td> - <td><a href="url">text</a></td> - <td>link with text</td> - </tr> - <tr> - <td>notebook</td> - <td>[notebook]id[/notebook]</td> - <td><samp>id</samp></td> - <td>link to the notebook with the identifier equal to id (the identifier of each device model is written in the - page of the device itself, next to the model name)</td> - </tr> - <tr> - <td>wifi</td> - <td>[wifi]id[/wifi]</td> - <td><samp>id</samp></td> - <td>link to the wifi with the identifier equal to id (the identifier of each device model is written in the page - of the device itself, next to the model name)</td> - </tr> - <tr> - <td>videocard</td> - <td>[videocard]id[/videocard]</td> - <td class="sample"><samp>id</samp></td> - <td>link to the videocard with the identifier equal to id (the identifier of each device model is written in the - page of the device itself, next to the model name)</td> - </tr> - </tbody> - </table> - - <p> </p> - - <a name="compatibility"></a><h2>Compatibility classes</h2> - - <a name="notebook-compatibility"></a><h3>Notebooks</h3> - <dl> - <dt>Class A (Platinum)</dt> - <dd>All the notebook devices work with a very good performance. </dd> - <dd class="example">Example: all the devices work, the 3D acceleration is supported</dd> - <dt>Class B (Gold)</dt> - <dd>All the notebook devices work but not at full performance. </dd> - <dd class="example">A typical example: all the devices work, but the 3D acceleration is not supported</dd> - <dt>Class C (Silver)</dt> - <dd>One main device is not supported. </dd> - <dd class="example">Example: the internal wifi card does not work. You need an external USB card</dd> - <dt>Class D (Bronze)</dt> - <dd>More than one device is not supported</dd> - <dt>Class E (Garbage)</dt> - <dd>The notebook does not work with free software</dd> - </dl> - - <a name="printer-compatibility"></a><h3>Printers</h3> - <dl> - <dt>Class A (Full)</dt> - <dd>All device functions and features are supported</dd> - <dt>Class B (Partial)</dt> - <dd>Printing supported but possibly at limited speed or print quality; scanning and/or faxing on some multifunction - devices may not be supported</dd> - <dt>Class C (None)</dt> - <dd>The printer does not work with free software</dd> - </dl> - - <a name="scanner-compatibility"></a><h3>Scanners</h3> - <dl> - <dt>Class A (Full)</dt> - <dd>All device functions and features are supported</dd> - <dt>Class B (Partial)</dt> - <dd>Scanning supported but possibly at limited speed or quality; some other features may not be supported</dd> - <dt>Class C (None)</dt> - <dd>The scanner does not work with free software</dd> - </dl> - - <p> </p> - - <a name="discover-hardware"></a><h2>Discover your hardware</h2> - - <p><cite>(Thanks <a href="<?php echo $this->baseUrl;?>/issues/view/en/3/1/token">lluvia</a>)</cite></p> - - <p>In order to know the details of your hardware you can carry out the following actions:</p> - <dl> - <dt>How to discover the model name of your notebook</dt> - <dd>See below your notebook or netbook<dd> - <a name="model-name"></a><dt>How to discover the model name of your device (if it is not a notebook)</dt> - <dd class="opt"><strong>If the device is integrated (example: a video card)</strong></dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">lspci</pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lspci > FILENAME # output to a file</pre> - </dd> - <!-- dd>where "filename" is the name of the file</dd --> - <dd>You will obtain the list of your PCI devices, similar to the one written below</dd> - <dd><pre class="terminal"> -00:18.3 Host bridge: <b>Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control</b> -03:00.0 Network controller: <b>Broadcom Corporation BCM4311 802.11b/g WLAN (rev 02)</b> -05:00.0 VGA compatible controller: <b>nVidia Corporation G86 [GeForce 8400M GS] (rev a1)</b> - </pre> - </dd> - <dd class="note"><b>Note:</b> The name of each device is written after the colon (see the text - in bold in the above list)</dd> - <dd>If the device is an USB device (example: an external USB wifi card)</dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">lsusb -v</pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lsusb -v > FILENAME # output to a file</pre> - </dd> - <!-- dd>where "filename" is the name of the file</dd --> - <dd>You will obtain the list of your USB devices, similar to the one written below</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID 0846:4260 NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 2.00 - bDeviceClass 0 (Defined at Interface level) - bDeviceSubClass 0 - bDeviceProtocol 0 - bMaxPacketSize0 64 - idVendor 0x0846 NetGear, Inc. - idProduct 0x4260 <b>WG111v3 54 Mbps Wireless [realtek RTL8187B]</b> - bcdDevice 2.00 - iManufacturer 1 - iProduct 2 - iSerial 3 - ... - ... - -Bus 002 Device 003: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 1.10 - bDeviceClass 255 Vendor Specific Class - bDeviceSubClass 255 Vendor Specific Subclass - bDeviceProtocol 255 Vendor Specific Protocol - bMaxPacketSize0 8 - idVendor 0x08ff AuthenTec, Inc. - idProduct 0x2580 <b>AES2501 Fingerprint Sensor</b> - bcdDevice 6.23 - iManufacturer 0 - iProduct 1 Fingerprint Sensor - iSerial 0 - bNumConfigurations 1 - ... - ... - </pre> - </dd> - <dd class="note"><b>Note:</b> The name of each device is written at the row starting with "idProduct" (see the text - in bold in the above list)</dd> - <dl> - <dt>How to discover the model name of your notebook</dt> - <dd>See below your notebook or netbook<dd> - <a name="model-name"></a><dt>How to discover the model name of your device (if it is not a notebook)</dt> - <dd class="opt"><strong>If the device is integrated (example: a video card)</strong></dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">lspci</pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lspci > FILENAME # output to a file</pre> - </dd> - <dt>How to discover the kernel libre version you are using</dt> - <dd>Open a terminal and type the following command:</dd> - <dd> <pre class="terminal">uname -r</pre> - </dd> - <dt>How to discover the name of your video card</dt> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Then look for the row containing the string <b>VGA</b> or <b>Display controller</b>. You can also try one of - the following commands:</dd> - <dd><pre class="terminal">lspci | grep "Display controller"</pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lspci | grep "VGA"</pre> - </dd> - <a name="vendoridproductid"></a><dt>How to discover the VendorID and the ProductID of your device (VendorID:ProductID - code)</dt> - <dd><cite>(Thanks <a - href="http://trisquel.info/en/forum/h-nodecom-new-website-hardware-database#comment-5839">Michał - Masłowski</a> and <a - href="http://trisquel.info/en/forum/h-nodecom-new-website-hardware-database#comment-5837">Julius22</a>)</cite></dd> - <dd>If the device is integrated (example: a video card) </dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">sudo lspci -nnk</pre></dd> - <dd>You should obtain a list of hardware similar to the one written below</dd> - <dd><pre class="terminal"> -03:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [<b>14e4:4311</b>] (rev 02) - Kernel driver in use: b43-pci-bridge - Kernel modules: ssb -05:00.0 VGA compatible controller [0300]: nVidia Corporation G86 [GeForce 8400M GS] [<b>10de:0427</b>] (rev a1) - Kernel modules: nouveau, nvidiafb</pre> - </dd> - <dd>The strings in <b>bold</b> and placed inside the square brackets (in the above list) are the code you are - looking for. The first set of digits (before the colon) are the <b>VendorID</b>, the second set of digits are - the <b>ProductID</b>. In the above example: the VendorID:ProductID code of the wifi card (note the strings - "Network controller" and "WLAN") is <b>14e4:4311</b> while the VendorID:ProductID code of the video card (note - the string "VGA") is <b>10de:0427</b></dd> - <dd class="opt">If the device is an USB device (example: an external USB wifi card) </dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">sudo lsusb</pre> - </dd> - <dd>You should obtain a list of hardware similar to the one written below</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID <b>0846:4260</b> NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Bus 001 Device 001: ID <b>1d6b:0002</b> Linux Foundation 2.0 root hub -Bus 002 Device 003: ID <b>08ff:2580</b> AuthenTec, Inc. AES2501 Fingerprint Sensor</pre> - </dd> - <dd>The strings in <b>bold</b> (in the above list) are the code you are looking for. The first set of digits - (before the colon) are the <b>VendorID</b>, the second set of digits are the <b>ProductID</b>. In the above - example: the VendorID:ProductID code of the external USB wifi card (note the strings "Wireless") is - <b>0846:4260</b></dd> - <dt>How to discover if the video card works</dt> - <dd>Install <a href="http://rss-glx.sourceforge.net/"><code>rss-glx</code></a> by means of the package manager of - your distribution or compiling it from source and try some screensavers (for example <b>Skyrocket</b> or - <b>Solarwinds</b>). Check if you can play the screensaver (and/or if you can play it smoothly)</dd> - <dt>How to discover if the 3D acceleration works</dt> - <dd>Try to enable compiz</dd> - <dt>How to discover the name of your wifi card</dt> - <dd><p>Open a terminal and type the following command:</p> - </dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Then look for the row containing the string <b>Wireless</b> or <b>Network controller</b>. You can also try - one of the following commands:</dd> - <dd><pre class="terminal">lspci | grep "Wireless" </pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lspci | grep "Network" </pre> - </dd> - <dt>How to discover the printer driver you are using</dt> - <dd class="opt"><strong>If you are using cups</strong></dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">dpkg-query -W -f '${Version}\n' cups</pre> - </dd> - <dt>How to discover the architecture of your notebook</dt> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">cat /proc/cpuinfo | grep "lm"</pre> - </dd> - <dd>If you get a message like this:</dd> - <dd><pre class="terminal">flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts<br/>acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64<br/>monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm</pre> - </dd> - <dd>then you machine is x86-64/amd64 capable and you could choose a x86-64/amd64 distro to run on it</dd> - </dl> - <p> </p> - - <a name="fully-free"></a><h2>Fully free GNU/Linux Distributions</h2> - - <p>Following are the <a href="http://www.gnu.org/gnu/linux-and-gnu.html">GNU/Linux</a> distributions we know of which have a firm policy - commitment to only include and only propose free software. They reject non-free applications, non-free programming - platforms, non-free drivers, or non-free firmware “blobs”. If by mistake they do include any, they remove it. To - learn more about what makes for a <a href="http://www.gnu.org/distros/free-distros.html">free GNU/Linux - distribution</a>, see GNU <a href="http://www.gnu.org/distros/free-system-distribution-guidelines.html">Guidelines for - Free System Distributions</a>.</p> - - <p><strong>All of the distributions that follow are installable to a computer's hard drive and most can be run - live.</strong></p> - - <p>(listed in alphabetical order)</p> - - <!-- p>They are listed in alphabetical order</p --> - <ul> - <li><a href="http://www.dragora.org">Dragora GNU/Linux</a></li> - <li><a href="http://dynebolic.org/">Dynebolic GNU/Linux</a></li> - <li><a href="http://www.musix.org.ar/">Musix GNU+Linux</a></li> - <li><a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a></li> - <li><a href="http://trisquel.info/">Trisquel GNU/Linux</a></li> - <li><a href="http://www.ututo.org/www/">Ututo GNU/Linux</a></li> - <li><a href="http://venenux.org/">Venenux GNU/Linux</a></li> - </ul> - </dl> - </div> - diff --git a/h-source/Application/Views/Desktop/Help/index_de.php b/h-source/Application/Views/Desktop/Help/index_de.php deleted file mode 100644 index e53693e..0000000 --- a/h-source/Application/Views/Desktop/Help/index_de.php +++ /dev/null @@ -1,443 +0,0 @@ -<?php if (!defined('EG')) die('Direct access not allowed!'); ?> - -<?php -// h-source, a web software to build a community of people that want to share their hardware information. -// Copyright (C) 2010, 2011 Antonio Gallo (h-source-copyright.txt) -// Copyright (C) 2011 Joerg Kohne -// -// This file is part of h-source -// -// h-source is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// h-source is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with h-source. If not, see <http://www.gnu.org/licenses/>. -?> - -<div class="help_external_box"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Startseite</a> » <?php echo gtext("Help");?> - </div> - - <div class="help_tables_of_contents"> - Inhalt - <ul> - <li><a href="<?php echo $this->currPage."/$lang#wiki-syntax";?>">Wiki-Syntax</a></li> - <li><a href="<?php echo $this->currPage."/$lang#compatibility";?>">Kompatibilitätsklassen</a></li> - <li><a href="<?php echo $this->currPage."/$lang#discover-hardware";?>">Entdecken Sie Ihre Hardware</a></li> - <li><a href="<?php echo $this->currPage."/$lang#fully-free";?>">Vollständig Freie GNU/Linux-Distributionen</a></li> - </ul> - </div> - - <a name="wiki-syntax"></a><h2>Wiki-Syntax</h2> - - <h3><?php echo Website::$generalName;?> - Wiki-Elemente</h3> - - <table class="help_wiki_table"> - <thead> - <tr> - <th>Name</th> - <th>Element</th> - <th>Ergebnis</th> - <th>Beschreibung</th> - </tr> - </thead> - <tbody> - <tr> - <td>Fett</td> - <td>[b]Fette[/b] Schrift</td> - <td><b>Fette</b> Schrift</td> - <td>Fettschrift</td> - </tr> - <tr> - <td>Kursiv</td> - <td>[i]Kursive[/i] Schrift</td> - <td><i>Kursive</i> Schrift</td> - <td>Kursivschrift</td> - </tr> - <tr> - <td>Gelöschter Text</td> - <td>[del]Gelöschter[/del] Text</td> - <td><del>Gelöschter</del> Text</td> - <td>Gelöschter Text</td> - </tr> - <tr> - <td>Unterstrichen</td> - <td>[u]Unterstrichener[/u] Text</td> - <td><u>Unterstrichener</u> Text</td> - <td>Unterstrichener Text</td> - </tr> - <tr> - <td>Überschrift 1</td> - <td>[h1]Überschrift[/h1]</td> - <td> - <div class="div_h1"> - Überschrift</div> - </td> - <td>Überschrift Ebene 1</td> - </tr> - <tr> - <td>Überschrift 2</td> - <td>[h2]Überschrift[/h2]</td> - <td> - <div class="div_h2"> - Überschrift</div> - </td> - <td>Überschrift Ebene 2</td> - </tr> - <tr> - <td>Überschrift 3</td> - <td>[h3]Überschrift[/h3]</td> - <td> - <div class="div_h3"> - Überschrift</div> - </td> - <td>Überschrift Ebene 3</td> - </tr> - <tr> - <td>Absatz</td> - <td>…[p](Neuer) Absatz[/p]</td> - <td>… - - <p>(Neuer) Absatz</p> - </td> - <td>(Neuer) Absatz</td> - </tr> - <tr> - <td>Auflistung</td> - <td><ul style="list-style-type:none;"> - <li>[list]</li> - <li><ul style="list-style-type:none;"> - <li>[*]Erstes Element[/*]</li> - <li>[*]Zweites Element[/*]</li> - </ul> - </li> - <li>[/list]</li> - </ul> - </td> - <td><ul> - <li>Erstes Element</li> - <li>Zweites Element</li> - </ul> - </td> - <td>Auflistung</td> - </tr> - <tr> - <td>Nummerierung</td> - <td><ul style="list-style-type:none;"> - <li>[enum]</li> - <li><ul style="list-style-type:none;"> - <li>[*]Erstes Element[/*]</li> - <li>[*]Zweites Element[/*]</li> - </ul> - </li> - <li>[/enum]</li> - </ul> - </td> - <td><ol> - <li>Erstes Element</li> - <li>Zweites Element</li> - </ol> - </td> - <td>Geordnete Liste</td> - </tr> - <tr> - <td>Listenelement</td> - <td>[*]Listenelement[/*]</td> - <td><ul> - <li>Listenelement</li> - </ul> - </td> - <td>Listenelement hinzufügen</td> - </tr> - <tr> - <td>Quelltext</td> - <td>[code]Quelltext[/code]</td> - <td><pre class="code_pre">Quelltext</pre> - </td> - <td>Codefragment</td> - </tr> - <tr> - <td>Verweis (einfach)</td> - <td>[a]Internetadresse[/a]</td> - <td><a href="http://Internetadresse">Internetadresse</a></td> - <td>Verweis (einfach)</td> - </tr> - <tr> - <td>Verweis (mit Text)</td> - <td>[a]Internetadresse|mit Text[/a]</td> - <td><a href="http://Internetadresse">mit Text</a></td> - <td>Verweis (mit Text)</td> - </tr> - <tr> - <td>Notebook</td> - <td>[notebook]ID[/notebook]</td> - <td><samp>ID</samp></td> - <td>Verweis auf das Notebook mit der Kennung gleich ID (die jeweilige Geräte-Modellkennung wird auf der Seite - des Gerätes selbst, unter „Modellbezeichnung“, eingepflegt)</td> - </tr> - <tr> - <td>WLAN</td> - <td>[wifi]ID[/wifi]</td> - <td><samp>ID</samp></td> - <td>Verweis auf das WLAN mit der Kennung gleich ID (die jeweilige Geräte-Modellkennung wird auf der Seite des - Gerätes selbst, unter „Modellbezeichnung“, eingepflegt)</td> - </tr> - <tr> - <td>Grafikkarte</td> - <td>[videocard]ID/videocard]</td> - <td><samp>ID</samp></td> - <td>Verweis auf die Grafikkarte mit der Kennung gleich ID (die jeweilige Geräte-Modellkennung wird auf der Seite - des Gerätes selbst, unter „Modellbezeichnung“, eingepflegt)</td> - </tr> - </tbody> - </table> - - <p> </p> - - <a name="compatibility"></a><h2>Kompatibilitätsklassen</h2> - - <a name="notebook-compatibility"></a><h3>Notebooks</h3> - <dl title="Notebook-Kompatibilität"> - <dt class="label">Klasse A (Platin)</dt> - <dd>Alle Notebook-Geräte arbeiten mit sehr guter Leistung.</dd> - <dd class="sample"><strong>Beispiel</strong>: Alle Geräte funktionieren, auch die 3D-Beschleunigung wird - unterstützt.</dd> - <dt>Klasse B (Gold)</dt> - <dd>Alle Notebook-Geräte funktionieren, jedoch nicht mit voller Leistung. </dd> - <dd class="sample"><strong>Beispiel</strong>: Alle Geräte funktionieren, aber die 3D-Beschleunigung wird nicht - unterstützt.</dd> - <dt>Klasse C (Silber)</dt> - <dd>Ein wichtiges Gerät wird nicht unterstützt.</dd> - <dd class="sample"><strong>Beispiel</strong>: Die interne WLAN-Karte funktioniert nicht. Sie benötigen eine - externe USB-Karte.</dd> - <dt>Klasse D (Bronze)</dt> - <dd>Mehr als ein Gerät wird nicht unterstützt.</dd> - <dt>Klasse E (E-Schrott)</dt> - <dd>Das Notebook kann von Freie Software nicht unterstützt werden.</dd> - </dl> - - <a name="printer-compatibility"></a><h3>Drucker</h3> - <dl title="Drucker-Kompatibilität"> - <dt>Klasse A (Vollständig)</dt> - <dd>Alle Gerätefunktionen und -merkmale werden unterstützt.</dd> - <dt>Klasse B (Teilweise)</dt> - <dd>Drucken wird unterstützt, aber möglicherweise mit eingeschränkter Geschwindigkeit oder Druckqualität; - Scannen und/oder Faxen wird (bei einigen Multifunktionsgeräten möglicherweise) nicht unterstützt</dd> - <dt>Klasse C (E-Schrott)</dt> - <dd>Der Drucker kann von Freie Software nicht unterstützt werden.</dd> - </dl> - - <a name="scanner-compatibility"></a><h3>Scanner</h3> - <dl title="Scanner-Kompatibilität"> - <dt>Klasse A (Vollständig)</dt> - <dd>Alle Gerätefunktionen und -merkmale werden unterstützt.</dd> - <dt>Klasse B (Teilweise)</dt> - <dd>Scannen unterstützt, aber möglicherweise bei eingeschränkter Geschwindigkeit oder Qualität, einige andere - Funktionen werden nicht unterstützt.</dd> - <dt>Klasse C (E-Schrott)</dt> - <dd>Der Scanner kann von Freie Software nicht unterstützt werden.</dd> - </dl> - - <p> </p> - - <a name="discover-hardware"></a><h2>Entdecken Sie Ihre Hardware</h2> - <cite>(Vielen Dank <a href="<?php echo $this->baseUrl;?>/issues/view/en/3/1/token">lluvia</a>)</cite> - - <p>Um mehr Details über Ihre Hardware zu erfahren, beachten Sie bitte folgende Punkte:</p> - <dl> - <dt>Wie man die Modellbezeichnung des Notebooks herausfindet</dt> - <dd>Siehe das Typenschild unterhalb Ihres tragbaren Klapprechners.</dd> - <a name="model-name"></a><dt>Wie man den Modellnamen der Geräte herausfindet (wenn kein tragbarer Klapprechner)</dt> - <dd class="opt">Wenn das Gerät eingebaut ist (z. B. eine Grafikkarte)</dd> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">lspci</pre> - </dd> - <dd>oder</dd> - <dd><pre class="terminal">lspci > DATEINAME # Ausgabe als Datei speichern</pre> - </dd> - <!--<dd>where "filename" is the name of the file</dd>--> - <dd>Es sollten PCI-Geräte ähnlich der folgenden angezeigt werden:</dd> - <dd><pre class="terminal"> -00:18.3 Host bridge: <b>Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control</b> -03:00.0 Network controller: <b>Broadcom Corporation BCM4311 802.11b/g WLAN (rev 02)</b> -05:00.0 VGA compatible controller: <b>nVidia Corporation G86 [GeForce 8400M GS] (rev a1)</b></pre> - </dd> - <dd class="note"><b>Hinweis:</b> The name of each device is written after the colon (see the text - in bold in the above list).</dd> - <dd class="opt">Wenn das Gerät ein USB-Gerät ist (bspw. ein externer WLAN-Stick)</dd> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">lsusb -v</pre> - </dd> - <dd>oder</dd> - <dd><pre class="terminal">lsusb -v > DATEINAME # Ausgabe als Datei speichern</pre> - </dd> - <!-- dd>where "filename" is the name of the file.</dd --> - <dd>Es sollten USB-Geräte ähnlich der folgenden angezeigt werden:</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID 0846:4260 NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 2.00 - bDeviceClass 0 (Defined at Interface level) - bDeviceSubClass 0 - bDeviceProtocol 0 - bMaxPacketSize0 64 - idVendor 0x0846 NetGear, Inc. - idProduct 0x4260 <b>WG111v3 54 Mbps Wireless [realtek RTL8187B]</b> - bcdDevice 2.00 - iManufacturer 1 - iProduct 2 - iSerial 3 - ... - ... - -Bus 002 Device 003: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 1.10 - bDeviceClass 255 Vendor Specific Class - bDeviceSubClass 255 Vendor Specific Subclass - bDeviceProtocol 255 Vendor Specific Protocol - bMaxPacketSize0 8 - idVendor 0x08ff AuthenTec, Inc. - idProduct 0x2580 <b>AES2501 Fingerprint Sensor</b> - bcdDevice 6.23 - iManufacturer 0 - iProduct 1 Fingerprint Sensor - iSerial 0 - bNumConfigurations 1 - ... - ... - </pre> - </dd> - <dd class="note"><b>Hinweis:</b> Die Gerätebezeichnung wird in der Zeile „idProduct“ nach dem Doppelpunkt - angegeben (siehe Text in Fettdruck).</dd> - <!-- <dt>Wie man das Jahr der Vermarktung des Notebooks herausfindet</dt> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">sudo dmidecode| grep "Release Date"</pre></dd> - <dd class="sample">Es sollte ein Datum ähnlich dem <code>Release Date: 05/28/2011</code> (MM/TT/JJJJ) angezeigt werden.</dd --> - <dt>Wie man den verwendeten Betriebssystemkern („Kernel“) herausfindet</dt> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">uname -r</pre> - </dd> - <dt name="video-card">Wie man den Namen der Grafikkarte herausfindet</dt> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Suchen Sie dann nach der Zeile mit der Zeichenfolge <strong><code>VGA</code></strong> oder - <strong><code>Display Controller</code></strong>. Alternativ können Sie auch folgenden Befehl versuchen: - </dd> - <dd><pre class="terminal">lspci | grep "Display controller"</pre> - </dd> - <dd>oder</dd> - <dd><pre class="terminal">lspci | grep "VGA"</pre> - </dd> - <a name="vendoridproductid"></a><dt>Wie man Anbieter- und Produkt-ID des Geräts herausfindet (VendorID:ProductID)</dt> - <dd><cite>(Vielen Dank an <a - href="http://trisquel.info/de/forum/h-nodecom-new-website-hardware-database#comment-5839">Michał Masłowski</a> - und <a href="http://trisquel.info/de/forum/h-nodecom-new-website-hardware-database#comment-5837">Julius22</a>) - </cite></dd> - <dd class="opt">Wenn das Gerät eingebaut ist (z. B. eine Grafikkarte)</dd> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">sudo lspci -nnk</pre> - </dd> - <dd>Es sollte eine Hardwareliste ähnlich der folgenden angezeigt werden:</dd> - <dd><pre class="terminal"> -03:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [<b>14e4:4311</b>] (rev 02) - Kernel driver in use: b43-pci-bridge - Kernel modules: ssb -05:00.0 VGA compatible controller [0300]: nVidia Corporation G86 [GeForce 8400M GS] [<b>10de:0427</b>] (rev a1) - Kernel modules: nouveau, nvidiafb</pre> - </dd> - <dd class="note"><b>Hinweis:</b> Die Zeichenfolgen in <b>fetter Schrift</b> und in den eckigen Klammern [… - <strong>:</strong> …] sind die Daten, nach denen Sie gesucht haben. Die erste Zeichengruppe (vor dem - Doppelpunkt) ist die <b>Anbieter-ID</b>, die zweite Zeichengruppe (nach dem Doppelpunkt) die <b>Produkt-ID</b>. - Im obigen Beispiel wären Anbieter- und Produkt-ID-Code der WLAN-Karte (beachten Sie die Zeichenfolgen „Network - Controller“ und „WLAN“) <b>14e4:4311</b>, die der Grafikkarte (beachten Sie die Zeichenfolge „VGA“) - <b>10DE:0427</b>.</dd> - <dd class="opt">Wenn das Gerät ein USB-Gerät ist (bspw. ein externer USB-WLAN-Stick)</dd> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">sudo lsusb</pre> - </dd> - <dd>Es sollte eine Hardwareliste ähnlich der folgenden angezeigt werden:</dd> - <dd><pre class="terminal">Bus 001 Device 002: ID <b>0846:4260</b> NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B]<br>Bus 001 Device 001: ID <b>1d6b:0002</b> Linux Foundation 2.0 root hub<br>Bus 002 Device 003: ID <b>08ff:2580</b> AuthenTec, Inc. AES2501 Fingerprint Sensor<br></pre> - </dd> - <dd class="note"><b>Hinweis:</b> Die Zeichenfolgen in <b>fetter Schrift</b> und in den eckigen Klammern […] sind - die Daten, nach denen Sie gesucht haben. Die erste Zeichengruppe (vor dem Doppelpunkt) ist die - <b>Anbieter-ID</b>, die zweite Zeichengruppe (nach dem Doppelpunkt) die <b>Produkt-ID</b>. Im obigen Beispiel - wären Anbieter- und Produkt-ID-Code des externen USB-WLAN-Sticks (beachten Sie die Zeichenfolge „Wireless“) - <b>0846:4260</b>.</dd> - <dt name="vga">Wie man herausfindet, ob die Grafikkarte (über den VGA-Standard hinaus) funktioniert</dt> - <dd>Installieren Sie das Paket <code><a href="http://rss-glx.sourceforge.net/">rss-glx</a></code> mittels - Paketverwaltung Ihrer Distribution oder Kompilieren Sie den Quellcode und testen einige Bildschirmschoner (z. B. - <b>Skyrocket</b> oder <b>Solarwinds</b>). Überprüfen Sie, ob die Bildschirmschoner angezeigt werden können - (und/oder ruckelfrei wiedergegeben werden). - </dd> - <dt>Wie man herausfindet, ob die 3D-Beschleunigung funktioniert</dt> - <dd>Versuchen Sie, „compiz“ zu aktivieren.</dd> - <dt>Wie man den Namen Ihrer WLAN-Karte herausfindet</dt> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Suchen Sie dann nach der Zeile mit der Zeichenfolge <b><samp>Wireless</samp></b> oder <b><samp>Network - Controller</samp></b>. Alternativ können Sie auch folgenden Befehle versuchen: - </dd> - <dd><pre class="terminal">lspci | grep "Wireless"</pre></dd> - <dd>oder</dd> - <dd><pre class="terminal">lspci | grep "Network"</pre> - </dd> - <dt>Wie man den verwendeten Druckertreiber herausfindet</dt> - <dd class="opt">Wenn Sie „cups“ verwenden</dd> - <dd>Öffnen Sie ein Terminal („Eingabeaufforderung“) und geben Sie folgenden Befehl ein:</dd> - <dd><pre class="terminal">dpkg-query -W -f '${Version}\n' cups</pre> - </dd> - <dt>How to discover the architecture of your notebook</dt> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">cat /proc/cpuinfo | grep "lm"</pre> - </dd> - <dd>If you get a message like this:</dd> - <dd><pre class="terminal">flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts<br/>acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64<br/>monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm</pre> - </dd> - <dd>then you machine is x86-64/amd64 capable and you could choose a x86-64/amd64 distro to run on it</dd> - </dl> - - <p> </p> - - <a name="fully-free"></a><h2>Freie GNU/Linux-Distributionen</h2> - - <p>Dies sind <a href="http://www.gnu.org/gnu/linux-and-gnu.de.html">GNU/Linux</a>-Distributionen, von denen wir von einer - festgelegten Richtlinie wissen, ausschließlich Freie Software zu verwenden und anzubieten. Unfreie Anwendungen, - unfreie Programmierplattformen, unfreie Treiber oder unfreie Firmware („BLOBs“) werden, auch wenn versehentlich - enthalten, entfernt. Weitere Informationen über <a href="http://www.gnu.org/distros/free-distros.html">Freie - GNU/Linux-Distribution</a> finden Sie unter <a - href="http://www.gnu.org/distros/free-system-distribution-guidelines.html">Richtlinien für Freie - Distributionen</a>.</p> - - <p><strong>Alle Distributionen können auf der Festplatte Ihres Rechners installiert und die meisten Live ausgeführt - werden.</strong></p> - - <p>(In alphabetischer Reihenfolge)</p> - - <ul> - <li><a href="http://www.dragora.org">Dragora GNU/Linux</a></li> - <li><a href="http://dynebolic.org/">Dynebolic GNU/Linux</a></li> - <li><a href="http://www.musix.org.ar/">Musix GNU+Linux</a></li> - <li><a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a></li> - <li><a href="http://trisquel.info/">Trisquel GNU/Linux</a></li> - <li><a href="http://www.ututo.org/www/">Ututo GNU/Linux</a></li> - <li><a href="http://venenux.org/">Venenux GNU/Linux</a></li> - </ul> - </div> - diff --git a/h-source/Application/Views/Desktop/Help/index_es.php b/h-source/Application/Views/Desktop/Help/index_es.php deleted file mode 100644 index acbdf6b..0000000 --- a/h-source/Application/Views/Desktop/Help/index_es.php +++ /dev/null @@ -1,440 +0,0 @@ -<?php if (!defined('EG')) die('Direct access not allowed!'); ?> - -<?php -// h-source, a web software to build a community of people that want to share their hardware information. -// Copyright (C) 2010, 2011 Antonio Gallo (h-source-copyright.txt) -// Copyright (C) 2011 Joerg Kohne -// -// This file is part of h-source -// -// h-source is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// h-source is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with h-source. If not, see <http://www.gnu.org/licenses/>. -?> - -<div class="help_external_box"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Inicio</a> » <?php echo gtext("Help");?> - </div> - - <div class="help_tables_of_contents"> - Tabla de contenidos - <ul> - <li><a href="<?php echo $this->currPage."/$lang#wiki-syntax";?>">Sintaxis del Wiki</a></li> - <li><a href="<?php echo $this->currPage."/$lang#compatibility";?>">Clases de Compatibilidad</a></li> - <li><a href="<?php echo $this->currPage."/$lang#discover-hardware";?>">Descubra su hardware</a></li> - <li><a href="<?php echo $this->currPage."/$lang#fully-free";?>">Lista de las distribuciones GNU/Linux completamente libres</a></li> - </ul> - </div> - - <a name="wiki-syntax"></a><h2>Sintaxis del Wiki</h2> - - <h3>Lista de las etiquetas wiki de <?php echo Website::$generalName;?> - </h3> - - <table class="wiki"> - <thead> - <tr> - <th>nombre</th> - <th>etiqueta</th> - <th>resultado</th> - <th>descripción</th> - </tr> - </thead> - <tbody> - <tr> - <td>bold</td> - <td>[b]texto[/b]</td> - <td><b>texto</b></td> - <td>texto en negrita</td> - </tr> - <tr> - <td>italic</td> - <td>[i]texto[/i]</td> - <td><i>texto</i></td> - <td>texto en cursiva</td> - </tr> - <tr> - <td>del</td> - <td>[del]texto[/del]</td> - <td><del>texto</del></td> - <td>texto eliminado</td> - </tr> - <tr> - <td>underline</td> - <td>[u]texto[/u]</td> - <td><u>texto</u></td> - <td>texto subrayado</td> - </tr> - <tr> - <td>head 1</td> - <td>[h1]texto[/h1]</td> - <td> - <div class="div_h1"> - texto</div> - </td> - <td>encabezado 1</td> - </tr> - <tr> - <td>head 2</td> - <td>[h2]texto[/h2]</td> - <td> - <div class="div_h2"> - texto</div> - </td> - <td>encabezado 2</td> - </tr> - <tr> - <td>head 3</td> - <td>[h3]texto[/h3]</td> - <td> - <div class="div_h3"> - texto</div> - </td> - <td>encabezado 3</td> - </tr> - <tr> - <td>paragraph</td> - <td>[p]texto[/p]</td> - <td><p>texto</p> - </td> - <td>nuevo párrafo</td> - </tr> - <tr> - <td>list item</td> - <td>[*]objeto[/*]</td> - <td><ul> - <li>objeto</li> - </ul> - </td> - <td>agrega un objeto a la lista</td> - </tr> - <tr> - <td>lista </td> - <td><ul style="list-style-type:none;"> - <li>[list]</li> - <li><ul style="list-style-type:none;"> - <li>[*]first item[/*]</li> - <li>[*]second item[/*]</li> - </ul> - </li> - <li>[/list]</li> - </ul> - </td> - <td><ul> - <li>first item</li> - <li>second item</li> - </ul> - </td> - <td>hace una lista de objetos</td> - </tr> - <tr> - <td>numbered list</td> - <td><ul style="list-style-type:none;"> - <li>[enum]</li> - <li><ul style="list-style-type:none;"> - <li>[*]first item[/*]</li> - <li>[*]second item[/*]</li> - </ul> - </li> - <li>[/enum]</li> - </ul> - </td> - <td><ol> - <li>first item</li> - <li>second item</li> - </ol> - </td> - <td>hace una lista numerada de objetos</td> - </tr> - <tr> - <td>code</td> - <td>[code]código[/code]</td> - <td><pre class="code_pre">código</pre> - </td> - <td>agrega código</td> - </tr> - <!-- - <tr> - <td>simple link</td> - <td>[a]url[/a]</td> - <td><a href="url">url</a></td> - <td>enlace simple</td> - </tr> - --> - <tr> - <td>link with text</td> - <td>[a]url|text[/a]</td> - <td><a href="url">text</a></td> - <td>enlace con texto</td> - </tr> - <tr> - <td>notebook</td> - <td>[notebook]1234:5678[/notebook]</td> - <td>1234:5678</td> - <td>enlace al computador portátil con el identificador id (el identificador de cada modelo de dispositivo esta escrito en la - página del dispositivo mismo, seguido del nombre del modelo)</td> - </tr> - <tr> - <td>wifi</td> - <td>[wifi]1234:5678[/wifi]</td> - <td>1234:5678</td> - <td>enlace al wifi con el identificador id (el identificador de cada modelo de dispositivo esta escrito en la - página del dispositivo mismo, seguido del nombre del modelo)</td> - </tr> - <tr> - <td>videocard</td> - <td>[videocard]1234:5678/videocard]</td> - <td>1234:5678</td> - <td>enlace a la tarjeta de video con el identificador id (el identificador de cada modelo de dispositivo esta - escrito en la página del dispositivo mismo, seguido del nombre del modelo)</td> - </tr> - </tbody> - </table> - - <p></p> - - <a name="compatibility"></a><h2>Clases de Compatibilidad</h2> - - <a name="notebook-compatibility"></a><h3>Computadores portátiles</h3> - <dl> - <dt>Clase A (Platino)</dt> - <dd>Todos los dispositivos funcionan con un buen desempeño. </dd> - <dd class="example">Ejemplo: todos los dispositivos funcionan, la aceleración 3D esta soportada</dd> - <dt>Clase B (Oro)</dt> - <dd>Todos los dispositivos funcionan pero no a su rendimiento completo. </dd> - <dd class="example">Un ejemplo típico es: todos los dispositivos funcionan, pero la aceleración 3D no esta - soportada</dd> - <dt>Clase C (Plata)</dt> - <dd>Un dispositivo principal no esta soportado. </dd> - <dd class="example">Ejemplo: la tarjeta inalámbrica interna no funciona. Necesita una tarjeta USB externa</dd> - <dt>Clase D (Bronce)</dt> - <dd>Más de un dispositivo no esta soportado</dd> - <dt>Clase E (Basura)</dt> - <dd>El equipo no funciona con software libre</dd> - </dl> - - <a name="printer-compatibility"></a><h3>Impresoras</h3> - <dl> - <dt>Clase A (Completo)</dt> - <dd>Todos los dispositivos funcionan y las características soportadas</dd> - <dt>Clase B (Parcial)</dt> - <dd>La impresión esta soportada pero a velocidad o calidad limitada; escaneo y/o envío por fax en algunos - dispositivos multifuncionales pueden no estar soportados</dd> - <dt>Clase C (Ninguno)</dt> - <dd>La impresora no funciona con software libre</dd> - </dl> - - <a name="scanner-compatibility"></a><h3>Escáners</h3> - <dl> - <dt>Clase A (Completo)</dt> - <dd>Todos los dispositivos funcionan y las características soportadas</dd> - <dt>Clase B (Parcial)</dt> - <dd>El escanéo es soportado pero a velocidad o calidad limitada; otras características pueden no estar soportadas</dd> - <dt>Clase C (Ninguno)</dt> - <dd>El escaner no funciona con software libre</dd> - </dl> - - <p> </p> - - <a name="discover-hardware"></a><h2>Descubra su hardware</h2> - <cite>(Gracias <a href="<?php echo $this->baseUrl;?>/issues/view/en/3/1/token">lluvia</a>)</cite> - - <p>En orden de conocer los detalles de su hardware puede seguir las siguientes acciones:</p> - <dl> - <dt>Como descubrir el modelo de su computador portátil</dt> - <dd>Vea debajo de su computador portátil o subportátil</dd> - <a name="model-name"></a><dt>Como descubrir el nombre del modelo de su dispositivo (si no es un computador portátil)</dt> - <dd class="opt">Si el dispositivo es integrado (ejemplo: una tarjeta de video)</dd> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">lspci</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lspci > FILENAME # output to a file</pre> - </dd> - <!-- dd>where "filename" is the name of the file</dd --> - <dd>Obtendrá la lista de sus dispositivos PCI, similar a la mostrada debajo</dd> - <dd><pre class="terminal"> -00:18.3 Host bridge: <b>Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control</b> -03:00.0 Network controller: <b>Broadcom Corporation BCM4311 802.11b/g WLAN (rev 02)</b> -05:00.0 VGA compatible controller: <b>nVidia Corporation G86 [GeForce 8400M GS] (rev a1)</b> - </pre> - </dd> - <dd>El nombre de cada dispositivo esta escrito después de los dos puntos (vea el texto en negrita en la lista superior)</dd> - <dd class="opt">Si el dispositivo es un dispositivo USB (ejemplo: una tarjeta externa USB de red inalámbrica)</dd> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">lsusb -v</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lsusb -v > filename # write the output to a file</pre> - </dd> - <!-- dd>where "filename" is the name of the file</dd --> - <dd>Obtendrá la lista de sus dispositivos USB, similar a la mostrada debajo</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID 0846:4260 NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 2.00 - bDeviceClass 0 (Defined at Interface level) - bDeviceSubClass 0 - bDeviceProtocol 0 - bMaxPacketSize0 64 - idVendor 0x0846 NetGear, Inc. - idProduct 0x4260 <b>WG111v3 54 Mbps Wireless [realtek RTL8187B]</b> - bcdDevice 2.00 - iManufacturer 1 - iProduct 2 - iSerial 3 - ... - ... - -Bus 002 Device 003: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 1.10 - bDeviceClass 255 Vendor Specific Class - bDeviceSubClass 255 Vendor Specific Subclass - bDeviceProtocol 255 Vendor Specific Protocol - bMaxPacketSize0 8 - idVendor 0x08ff AuthenTec, Inc. - idProduct 0x2580 <b>AES2501 Fingerprint Sensor</b> - bcdDevice 6.23 - iManufacturer 0 - iProduct 1 Fingerprint Sensor - iSerial 0 - bNumConfigurations 1 - ... - ... - </pre> - </dd> - <dd>El nombre de cada disposiitivo es escrito en la fila comenzando con "idProduct" (vea el texto en negritas en la lista superior)</dd> - <dt>Como descubrir el año de comercialización de su computador portátil</dt> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">sudo dmidecode| grep "Release Date"</pre> - </dd> - <dt>Como descubrir la versión de kernel que esta usando</dt> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">uname -r</pre> - </dd> - <dt>Como descubrir el nombre de su tarjeta de video</dt> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Después busque por la linea que contenga la cadena VGA o Display controller. También puede usar uno de las - siguientes ordenes:</dd> - <dd><pre class="terminal">lspci | grep "Display controller"</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lspci | grep "VGA"</pre> - </dd> - <a name="vendoridproductid"></a><dt>Como descubrir el ID del vendedor y el ID del producto de su dispositivo (código - VendorID:ProductID)</dt> - <dd><cite>(Gracias <a - href="http://trisquel.info/es/forum/h-nodecom-new-website-hardware-database#comment-5839">Michał Masłowski</a> - y <a - href="http://trisquel.info/es/forum/h-nodecom-new-website-hardware-database#comment-5837">Julius22</a>)</cite> - </dd> - <dd class="opt">Si el dispositivo es integrado (ejemplo: una tarjeta de video)</dd> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">sudo lspci -nnk</pre> - </dd> - <dd>Debe de obtener una lista de hardware similar a la escriba debajo</dd> - <dd><pre class="terminal"> -03:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [<b>14e4:4311</b>] (rev 02) - Kernel driver in use: b43-pci-bridge - Kernel modules: ssb -05:00.0 VGA compatible controller [0300]: nVidia Corporation G86 [GeForce 8400M GS] [<b>10de:0427</b>] (rev a1) - Kernel modules: nouveau, nvidiafb</pre> - </dd> - <dd>Las cadenas en <b>negritas</b> y colocadas en los corchetes (en la lista superior) son los códigos que esta - buscando. El primer grupo de dígitos (antes de los dos puntos) son el <b>VendorID</b>, el segundo grupo de - dígitos son el <b>ProductID</b>. En el ejemplo superior: el código VendorID:ProductID de la tarjeta - inalámbrica (note las cadenas "Network controller" y "WLAN") es <b>14e4:4311</b> mientras el código - VendorID:ProductID de la tarjeta de video (note la cadena "VGA") es <b>10de:0427</b></dd> - <dd class="opt">Si el dispositivo es un dispositivo USB (ejemplo: una tarjeta USB externa)</dd> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">sudo lsusb</pre> - </dd> - <dd>Debe de obtener una lista de hardware similar a la descrita a continuación</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID <b>0846:4260</b> NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Bus 001 Device 001: ID <b>1d6b:0002</b> Linux Foundation 2.0 root hub -Bus 002 Device 003: ID <b>08ff:2580</b> AuthenTec, Inc. AES2501 Fingerprint Sensor</pre> - </dd> - <dd>Las cadenas en <b>negritas</b> (en la lista superior) son el código que busca. El primer grupo de dígitos - (antes de los dos puntos) son el <b>VendorID</b>, el segundo grupo de dígitos son el <b>ProductID</b>. En el - ejemplo superior: el código VendorID:ProductID de la tarjeta inalámbrica USB externa (note la cadena - "Wireless") es <b>0846:4260</b></dd> - <dt>Como descubrir si la tarjeta de video funciona</dt> - <dd>Instale <code><a href="http://rss-glx.sourceforge.net/">rss-glx</a></code> por lo medios del administrador - de paquetes de su distribución o por medio de compilar el código fuente y pruebe algunos protectores de - pantalla (por ejemplo <b>Skyrocket</b> o <b>Solarwinds</b>). Revise si puede ejecutar el protector de pantalla - (y/o si puede mostrarlo suavemente) - </dd> - <dt>Como descubrir si la aceleración 3D funciona</dt> - <dd>Intente activar compiz</dd> - <dt>Como descubrir el nombre de su tarjeta de inalámbrica</dt> - <dd>Abra una terminal y escriba la siguiente orden:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Después busque por la linea que contenga la cadena <samp><b>Wireless</b></samp> o <samp><b>Network - controller</b></samp>. También puede intentar una de las siguientes ordenes</dd> - <dd><pre class="terminal">lspci | grep "Wireless"</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lspci | grep "Network"</pre> - </dd> - <dt>Como descubrir el driver de la impresora que esta usando</dt> - <dd class="opt">Si usa cups</dd> - <dd>Abra una terminal y escriba la orden siguiente:</dd> - <dd><pre class="terminal">dpkg-query -W -f '${Version}\n' cups</pre> - </dd> - <dt>Como descubrir la arquitectura de su computador portátil</dt> - <dd>Abra una terminal y escriba la orden siguiente:</dd> - <dd><pre class="terminal">cat /proc/cpuinfo | grep "lm"</pre> - </dd> - <dd>Si obtiene un mensaje como este:</dd> - <dd><pre class="terminal">flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts<br/>acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64<br/>monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm</pre> - </dd> - <dd>entonces su equipo es compatible con x86-64/amd64 y podría elegir una distro x86-64/amd64 para correr en él.</dd> - </dl> - - <p> </p> - - <a name="fully-free"></a><h2>Lista de las distribuciones GNU/Linux completamente libres</h2> - - <p>A continuación se enlistan las distribuciones <a href="http://www.gnu.org/gnu/linux-and-gnu.es.html">GNU/Linux</a> que sabemos tiene un - compromiso firme en su política para solo incluir y solo proponer software libre. Estas rechazan aplicaciones no libres, plataformas de - programación no libres, controladores no libres, o “blobs” de firmware no libre. Si por error llegan a incluirlo, lo eliminarán. Para - aprender más acerca de que hace una <a href="http://www.gnu.org/distros/free-distros.es.html">distribución GNU/Linux libre</a>, - vea las <a href="http://www.gnu.org/distros/free-system-distribution-guidelines.es.html">pautas para distribuciones de sistemas - libres</a> de GNU.</p> - - <p><strong>Todas las distribuciones que aparecen a continuación se pueden instalar en el disco duro y muchas funcionan - sin instalación.</strong></p> - - <p>(En orden alfabético)</p> - - <ul> - <li><a href="http://www.dragora.org">Dragora GNU/Linux</a></li> - <li><a href="http://dynebolic.org/">Dynebolic GNU/Linux</a></li> - <li><a href="http://www.musix.org.ar/">Musix GNU+Linux</a></li> - <li><a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a></li> - <li><a href="http://trisquel.info/">Trisquel GNU/Linux</a></li> - <li><a href="http://www.ututo.org/www/">Ututo GNU/Linux</a></li> - <li><a href="http://venenux.org/">Venenux GNU/Linux</a></li> - </ul> - </div> - diff --git a/h-source/Application/Views/Desktop/Help/index_fr.php b/h-source/Application/Views/Desktop/Help/index_fr.php deleted file mode 100644 index 3e46137..0000000 --- a/h-source/Application/Views/Desktop/Help/index_fr.php +++ /dev/null @@ -1,432 +0,0 @@ -<?php if (!defined('EG')) die('Direct access not allowed!'); ?> - -<?php -// h-source, a web software to build a community of people that want to share their hardware information. -// Copyright (C) 2010, 2011 Antonio Gallo (h-source-copyright.txt) -// Copyright (C) 2011 Joerg Kohne -// -// This file is part of h-source -// -// h-source is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// h-source is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with h-source. If not, see <http://www.gnu.org/licenses/>. -?> - -<div class="help_external_box"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » <?php echo gtext("Help");?> - </div> - - <div class="help_tables_of_contents"> - Sommaire - <ul> - <li><a href="<?php echo $this->currPage."/$lang#wiki-syntax";?>">Syntaxe Wiki</a></li> - <li><a href="<?php echo $this->currPage."/$lang#compatibility";?>">Niveau de compatibilitée</a></li> - <li><a href="<?php echo $this->currPage."/$lang#discover-hardware";?>">Découvrez votre matériel</a></li> - <li><a href="<?php echo $this->currPage."/$lang#fully-free";?>">Liste de distribution GNU/Linux entièrement libre</a></li> - </ul> - </div> - - <a name="wiki-syntax"></a><h2>Syntaxe Wiki</h2> - - <h3>Liste des tags Wiki sur <?php echo Website::$generalName;?> - </h3> - - <table class="help_wiki_table" width="100%" border="1"> - <thead> - <tr> - <th>name</th> - <th>tag</th> - <th>result</th> - <th width="40%">description</th> - </tr> - </thead> - <tbody> - <tr> - <td>bold</td> - <td>[b]text[/b]</td> - <td><b>text</b></td> - <td>text bold</td> - </tr> - <tr> - <td>italic</td> - <td>[i]text[/i]</td> - <td><i>text</i></td> - <td>text italic</td> - </tr> - <tr> - <td>del</td> - <td>[del]text[/del]</td> - <td><del>text</del></td> - <td>text deleted</td> - </tr> - <tr> - <td>underline</td> - <td>[u]text[/u]</td> - <td><u>text</u></td> - <td>text underlined</td> - </tr> - <tr> - <td>head 1</td> - <td>[h1]text[/h1]</td> - <td> - <div class="div_h1"> - text</div> - </td> - <td>head 1</td> - </tr> - <tr> - <td>head 2</td> - <td>[h2]text[/h2]</td> - <td> - <div class="div_h2"> - text</div> - </td> - <td>head 2</td> - </tr> - <tr> - <td>head 3</td> - <td>[h3]text[/h3]</td> - <td> - <div class="div_h3"> - text</div> - </td> - <td>head 3</td> - </tr> - <tr> - <td>paragraph</td> - <td>[p]text[/p]</td> - <td><p>text</p> - </td> - <td>new paragraph</td> - </tr> - <tr> - <td>list item</td> - <td>[*]item[/*]</td> - <td><ul> - <li>item</li> - </ul> - </td> - <td>ad an item to a list</td> - </tr> - <tr> - <td>List </td> - <td><ul style="list-style-type:none;"> - <li>[list]</li> - <li><ul style="list-style-type:none;"> - <li>[*]first item[/*]</li> - <li>[*]second item[/*]</li> - </ul> - </li> - <li>[/list]</li> - </ul> - </td> - <td><ul> - <li>first item</li> - <li>second item</li> - </ul> - </td> - <td>make a list of items</td> - </tr> - <tr> - <td>Numbered list </td> - <td><ul style="list-style-type:none;"> - <li>[enum]</li> - <li><ul style="list-style-type:none;"> - <li>[*]first item[/*]</li> - <li>[*]second item[/*]</li> - </ul> - </li> - <li>[/enum]</li> - </ul> - </td> - <td><ol> - <li>first item</li> - <li>second item</li> - </ol> - </td> - <td>make a numbered list of items</td> - </tr> - <tr> - <td>code</td> - <td>[code]some code[/code]</td> - <td><pre class="code_pre">some code</pre> - </td> - <td>ad some code</td> - </tr> - <tr> - <td>simple link</td> - <td>[a]url[/a]</td> - <td><a href="url">url</a></td> - <td>simple link</td> - </tr> - <tr> - <td>link with text</td> - <td>[a]url|text[/a]</td> - <td><a href="url">text</a></td> - <td>link with text</td> - </tr> - <tr> - <td>notebook</td> - <td>[notebook]id[/notebook]</td> - <td> </td> - <td>link to the notebook with the identifier equal to id (the identifier of each device model is written in the - page of the device itself, next to the model name)</td> - </tr> - <tr> - <td>wifi</td> - <td>[wifi]id[/wifi]</td> - <td> </td> - <td>link to the wifi with the identifier equal to id (the identifier of each device model is written in the page - of the device itself, next to the model name)</td> - </tr> - <tr> - <td>videocard</td> - <td>[videocard]id[/videocard]</td> - <td> </td> - <td>link to the videocard with the identifier equal to id (the identifier of each device model is written in the - page of the device itself, next to the model name)</td> - </tr> - </tbody> - </table> - - <p> </p> - - <a name="compatibility"></a><h2>Niveau de compatibilitée</h2> - - <a name="notebook-compatibility"></a><h3>Notebooks</h3> - <dl> - <dt>Classe A (Platinium)</dt> - <dd>Tout le matériel du notebook fonctionne avec du logiciel libre. </dd> - <dd class="example">Exemple : la 3D fonctionne, le son et la wifi également</dd> - <dt>Classe B (Or)</dt> - <dd>Tout le matériel du notebook fonctionne, mais avec des performances réduites. </dd> - <dd class="example">Exemple : la carte graphique est reconnues mais la 3D ne fonctionne pas</dd> - <dt>Classe C (Argent)</dt> - <dd>Un matériel principal ne fonctionne pas. </dd> - <dd class="example">Exemple : La carte wifi ne fonctionne pas</dd> - <dt>Classe D (Bronze)</dt> - <dd>Plus d'un matériel ne fonctionne pas avec du logiciel libre</dd> - <dt>Classe E (Poubelle)</dt> - <dd>Aucun matériel ne fonctionne avec du logiciel libre</dd> - </dl> - - <a name="printer-compatibility"></a><h3>Imprimantes</h3> - <dl> - <dt>Classe A (Complet)</dt> - <dd>Toutes les fonctionnalitées de l'imprimante fonctionne avec du logiciel libre</dd> - <dt>Classe B (Partielle)</dt> - <dd>La fonction d'impression fonctionne, mais à une vitesse ou qualitée limitée. </dd> - <dd class="example">Exemple : Le scan ou le fax sur certains appareils peut ne pas être supportés</dd> - <dt>Classe C (Aucun)</dt> - <dd>L'imprimante ne fonctionne pas avec du logiciel libre</dd> - </dl> - - <a name="scanner-compatibility"></a><h3>Scanners</h3> - <dl> - <dt>Classe A (Complet)</dt> - <dd>Toutes les fonctionnalitées du scanner sont supportées</dd> - <dt>Classe B (Partielle)</dt> - <dd>Le scanner fonctionne mais à une vitesse ou qualitée limitée, d'autres fonctionnalitées peuvent ne pas - fonctionner</dd> - <dt>Classe C (Aucun)</dt> - <dd>Le scanner ne fonctionne pas avec du logiciel libre</dd> - </dl> - - <a name="discover-hardware"></a><h2>Découvrez votre matériel</h2> - <cite>(Merci <a href="<?php echo $this->baseUrl;?>/issues/view/en/3/1/token">lluvia</a>) </cite> - - <p>Pour connaitre votre matériel en détails, vous pouviez faire les choses suivantes:</p> - <dl> - <dt>Comment découvrir le modèle de votre notebook</dt> - <dd>See below your notebook or netbook</dd> - <a name="model-name"></a><dt>How to discover the model name of your device (if it is not a notebook)</dt> - <dd class="opt">If the device is integrated (example: a video card)</dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">lspci</pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lspci > FILENAME # output to a file</pre> - </dd> - <!-- dd>where "filename" is the name of the file</dd --> - <dd>You will obtain the list of your PCI devices, similar to the one written below</dd> - <dd><pre class="terminal"> -00:18.3 Host bridge: <b>Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control</b> -03:00.0 Network controller: <b>Broadcom Corporation BCM4311 802.11b/g WLAN (rev 02)</b> -05:00.0 VGA compatible controller: <b>nVidia Corporation G86 [GeForce 8400M GS] (rev a1)</b> - </pre> - </dd> - <dd>The name of each device is written after the colon (see the text in bold in the above - list)</dd> - <dd class="opt">If the device is an USB device (example: an external USB wifi card)</dd> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">lsusb -v</pre> - </dd> - <dd>or</dd> - <dd><pre class="terminal">lsusb -v > FILENAME # output to a file</pre> - </dd> - <!-- dd>where "filename" is the name of the file</dd --> - <dd>You will obtain the list of your USB devices, similar to the one written below</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID 0846:4260 NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 2.00 - bDeviceClass 0 (Defined at Interface level) - bDeviceSubClass 0 - bDeviceProtocol 0 - bMaxPacketSize0 64 - idVendor 0x0846 NetGear, Inc. - idProduct 0x4260 <b>WG111v3 54 Mbps Wireless [realtek RTL8187B]</b> - bcdDevice 2.00 - iManufacturer 1 - iProduct 2 - iSerial 3 - ... - ... - -Bus 002 Device 003: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 1.10 - bDeviceClass 255 Vendor Specific Class - bDeviceSubClass 255 Vendor Specific Subclass - bDeviceProtocol 255 Vendor Specific Protocol - bMaxPacketSize0 8 - idVendor 0x08ff AuthenTec, Inc. - idProduct 0x2580 <b>AES2501 Fingerprint Sensor</b> - bcdDevice 6.23 - iManufacturer 0 - iProduct 1 Fingerprint Sensor - iSerial 0 - bNumConfigurations 1 - ... - ... - </pre> - </dd> - <dd>The name of each device is written at the row starting with "idProduct" (see the text in bold in the above - list)</dd> - <dt>Trouver la version du noyau linux libre que vous utilisez</dt> - <dd>Ouvrez un terminal et tapez la commande suivant:</dd> - <dd><pre class="terminal">uname -r</pre> - </dd> - <dt>Comment trouver le modèle de votre carte graphique</dt> - <dd>Ouvrez un terminal et taper la commande suivante:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Chercher la ligne qui contient le mot <b>VGA</b> ou <b>Display Controller</b>. Vous pouvez aussi essayer l'une - des commandes suivantes:</dd> - <dd><pre class="terminal">lspci | grep "Display controller"</pre> - </dd> - <dd>ou</dd> - <dd><pre class="terminal">lspci | grep "VGA"</pre> - </dd> - <a name="vendoridproductid"></a><dt>Comment connaitre le VendorID ou le ProductID (VendorID:ProductID code)</dt> - <dd><cite>(Merci à <a - href="http://trisquel.info/en/forum/h-nodecom-new-website-hardware-database#comment-5839">Michał Masłowski</a> - et <a - href="http://trisquel.info/en/forum/h-nodecom-new-website-hardware-database#comment-5837">Julius22</a>)</cite> - </dd> - <dd class="opt">Si le matériel est intégré (example : une puce vidéo)</dd> - <dd>Ouvrez un terminal sudo et taper la commande suivante:</dd> - <dd><pre class="terminal">sudo lspci -nnk</pre> - </dd> - <dd>Vous devriez obtenir une liste de matériel similaire à celle-ci</dd> - <dd><pre class="terminal"> -03:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [<b>14e4:4311</b>] (rev 02) - Kernel driver in use: b43-pci-bridge - Kernel modules: ssb -05:00.0 VGA compatible controller [0300]: nVidia Corporation G86 [GeForce 8400M GS] [<b>10de:0427</b>] (rev a1) - Kernel modules: nouveau, nvidiafb</pre> - </dd> - <dd class="note"><span class="note">Note :</span>Les lignes en <b>gras</b> et placée entre crochet (dans la liste - ci-dessus) sont les lignes que vous recherchez. Le premier packet de numéros (avant la virgule) sont le - <b>VendorID</b>, le second sont le <b>ProductID</b>. Dans l’exemple ci dessus, le code VendorID:ProductID de la - carte wifi ( vous pouvez la remarquez grace aux mots "Network Controller" et "WLAN" ) est <b>14e4:4311</b></dd> - <dd class="opt">Si le périphérique est un périphérique USB : (exemple : une clé usb wifi)</dd> - <dd>Ouvrez un terminal et tapez:</dd> - <dd><pre class="terminal">sudo lsusb</pre> - </dd> - <dd>Vous devriez obtenir une liste de matériel similaire à celle ci</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID <b>0846:4260</b> NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Bus 001 Device 001: ID <b>1d6b:0002</b> Linux Foundation 2.0 root hub -Bus 002 Device 003: ID <b>08ff:2580</b> AuthenTec, Inc. AES2501 Fingerprint Sensor</pre> - </dd> - <dd class="note"><span class="note">Note :</span> Les lignes en <b>gras</b> (dans la liste du dessus) sont les - lignes que vous recherchez. Les premiers nombres (avant les deux points) sont le <b>VendorID</b>, les autres sont - le <b>ProductID</b>. Dans l'exemple ci-dessus : le code VendorID:ProductID de la carte usb wifi externe - (Remarquez la ligne Wireless) est <b>0846:4260</b></dd> - <dt>Comment savoir si votre carte graphique fonctionne</dt> - <dd>Installer <code><a href="http://rss-glx.sourceforge.net/">rss-glx</a></code> en utilisant le gestionnaire de - paquet de votre distribution ou en le compilant depuis les sources et essayez certains écran de veille (par - exemple <b>Skyrocket</b> ou <b>Solarwinds</b>). Essayer de faire fonctionner le fond d'écran, et/ou le faire - fonctionner fluidement.</dd> - <dt>Comment savoir si l'accélération 3D fonctionne</dt> - <dd>Essayer d’activer compiz</dd> - <dt>Comment decouvrir le nom de votre carte wifi</dt> - <dd>Ouvrez un terminal et taper la commande suivante:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Regardez ensuite les lignes <samp><b>Wireless</b></samp> ou <samp><b>Network controller</b></samp>. Vous pouvez - aussi essayer l'une de ses commandes:</dd> - <dd><pre class="terminal">lspci | grep "Wireless"</pre> - </dd> - <dd>ou</dd> - <dd><pre class="terminal">lspci | grep "Network"</pre> - </dd> - <dt>Comment connaitre le pilote d’imprimante que vous utilisez</dt> - <dd class="opt">Si vous utilisez cups</dd> - <dd>Ouvrez un terminal et taper ceci:</dd> - <dd><pre class="terminal">dpkg-query -W -f '${Version}\n' cups</pre> - </dd> - <dt>How to discover the architecture of your notebook</dt> - <dd>Open a terminal and type the following command:</dd> - <dd><pre class="terminal">cat /proc/cpuinfo | grep "lm"</pre> - </dd> - <dd>If you get a message like this:</dd> - <dd><pre class="terminal">flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts<br/>acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64<br/>monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm</pre> - </dd> - <dd>then you machine is x86-64/amd64 capable and you could choose a x86-64/amd64 distro to run on it</dd> - </dl> - - <p> </p> - - <a name="fully-free"></a><h2>Liste de dristributions GNU/Linux entièrement libre</h2> - - <p>Following are the <a href="/gnu/linux-and-gnu.html">GNU/Linux</a> distributions we know of which have a firm policy - commitment to only include and only propose free software. They reject non-free applications, non-free programming - platforms, non-free drivers, or non-free firmware “blobs”. If by mistake they do include any, they remove it. To - learn more about what makes for a <a href="http://www.gnu.org/distros/free-distros.html">free GNU/Linux - distribution</a>, see GNU <a href="http://www.gnu.org/distros/free-system-distribution-guidelines.html">Guidelines for - Free System Distributions</a>.</p> - - <p>Toutes les distributions qui suivent sont installables sur un disque dur d'ordinateur et la plupart peuvent être - exécutées à partir d'un CD.</p> - - <p>(Dans l'ordre alphabétique)</p> - - <ul> - <li><a href="http://www.dragora.org">Dragora GNU/Linux</a></li> - <li><a href="http://dynebolic.org/">Dynebolic GNU/Linux</a></li> - <li><a href="http://www.musix.org.ar/">Musix GNU+Linux</a></li> - <li><a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a></li> - <li><a href="http://trisquel.info/">Trisquel GNU/Linux</a></li> - <li><a href="http://www.ututo.org/www/">Ututo GNU/Linux</a></li> - <li><a href="http://venenux.org/">Venenux GNU/Linux</a></li> - </ul> - - </div> - diff --git a/h-source/Application/Views/Desktop/Help/index_it.php b/h-source/Application/Views/Desktop/Help/index_it.php deleted file mode 100644 index c3c968e..0000000 --- a/h-source/Application/Views/Desktop/Help/index_it.php +++ /dev/null @@ -1,436 +0,0 @@ -<?php if (!defined('EG')) die('Direct access not allowed!'); ?> - -<?php -// h-source, a web software to build a community of people that want to share their hardware information. -// Copyright (C) 2010, 2011 Antonio Gallo (h-source-copyright.txt) -// Copyright (C) 2011 Joerg Kohne -// -// This file is part of h-source -// -// h-source is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// h-source is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with h-source. If not, see <http://www.gnu.org/licenses/>. -?> - -<div class="help_external_box"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » <?php echo gtext("Help");?> - </div> - - <div class="help_tables_of_contents"> - Table of contents - <ul> - <li><a href="<?php echo $this->currPage."/$lang#wiki-syntax";?>">Sintassi della Wiki</a></li> - <li><a href="<?php echo $this->currPage."/$lang#compatibility";?>">Classi di compatibilità</a></li> - <li><a href="<?php echo $this->currPage."/$lang#discover-hardware";?>">Scopri il tuo hardware</a></li> - <li><a href="<?php echo $this->currPage."/$lang#fully-free";?>">Lista delle distribuzioni Gnu/Linux completamente libere</a></li> - </ul> - </div> - - <a name="wiki-syntax"></a><h2>Sintassi della Wiki</h2> - - <h3 name="wiki-tag">Lista dei tag della wiki di <?php echo Website::$generalName;?> - </h3> - - <table class="help_wiki_table" width="100%" border="1"> - <thead> - <tr> - <th>nome</th> - <th>tag</th> - <th>risultato</th> - <th width="40%">descrizione</th> - </tr> - </thead> - <tbody> - <tr> - <td>grassetto</td> - <td>[b]text[/b]</td> - <td><b>text</b></td> - <td>testo in grassetto</td> - </tr> - <tr> - <td>corsivo</td> - <td>[i]text[/i]</td> - <td><i>text</i></td> - <td>testo corsivo</td> - </tr> - <tr> - <td>cancellare</td> - <td>[del]text[/del]</td> - <td><del>text</del></td> - <td>testo cancellato</td> - </tr> - <tr> - <td>sottolineare</td> - <td>[u]text[/u]</td> - <td><u>text</u></td> - <td>testo sottolineato</td> - </tr> - <tr> - <td>head 1</td> - <td>[h1]text[/h1]</td> - <td> - <div class="div_h1"> - text</div> - </td> - <td>head 1</td> - </tr> - <tr> - <td>head 2</td> - <td>[h2]text[/h2]</td> - <td> - <div class="div_h2"> - text</div> - </td> - <td>head 2</td> - </tr> - <tr> - <td>head 3</td> - <td>[h3]text[/h3]</td> - <td> - <div class="div_h3"> - text</div> - </td> - <td>head 3</td> - </tr> - <tr> - <td>paragrafo</td> - <td>…[p]nuovo paragrafo[/p]</td> - <td>… <p>nuovo paragrafo</p> - </td> - <td>crea un nuovo paragrafo</td> - </tr> - <tr> - <td>Lista </td> - <td><ul style="list-style-type:none;"> - <li>[list]</li> - <li><ul style="list-style-type:none;"> - <li>[*]primo elemento[/*]</li> - <li>[*]secondo elemento[/*]</li> - </ul> - </li> - <li>[/list]</li> - </ul> - </td> - <td><ul> - <li>primo elemento</li> - <li>secondo elemento</li> - </ul> - </td> - <td>crea un elenco di item</td> - </tr> - <tr> - <td>Lista numerata </td> - <td><ul style="list-style-type:none;"> - <li>[enum]</li> - <li><ul style="list-style-type:none;"> - <li>[*]primo elemento[/*]</li> - <li>[*]secondo elemento[/*]</li> - </ul> - </li> - <li>[/enum]</li> - </ul> - </td> - <td><ol> - <li>primo elemento</li> - <li>secondo elemento</li> - </ol> - </td> - <td>crea un elenco numerato di item</td> - </tr> - <tr> - <td>item di un elenco</td> - <td>[*]elemento[/*]</td> - <td><ul> - <li>elemento</li> - </ul> - </td> - <td>aggiungi un item a un elenco</td> - </tr> - <tr> - <td>codice</td> - <td>[code]some code[/code]</td> - <td><pre class="code_pre">some code</pre> - </td> - <td>aggiungi del codice</td> - </tr> - <tr> - <td>link semplice</td> - <td>[a]url[/a]</td> - <td><a href="url">url</a></td> - <td>crea un link semplice</td> - </tr> - <tr> - <td>link con testo</td> - <td>[a]url|text[/a]</td> - <td><a href="url">text</a></td> - <td>crea un link con testo</td> - </tr> - <tr> - <td>notebook</td> - <td>[notebook]id[/notebook]</td> - <td>id</td> - <td>crea un link al notebook con l'identificatore corrispondente a id (l'identificatore di ogni modello di - dispositivo si trova nella pagina del dispositivo stesso, accanto al nome del modello</td> - </tr> - <tr> - <td>wifi</td> - <td>[wifi]id[/wifi]</td> - <td>id</td> - <td>crea un link alla wifi con l'identificatore corrispondente a id (l'identificatore di ogni modello di - dispositivo si trova nella pagina del dispositivo stesso, accanto al nome del modello)</td> - </tr> - <tr> - <td>scheda video</td> - <td>[videocard]id[/videocard]</td> - <td>id</td> - <td>crea un link alla scheda video con l'identificatore corrispondente a id (l'identificatore di ogni modello di - dispositivo si trova nella pagina del dispositivo stesso, accanto al nome del modello)</td> - </tr> - </tbody> - </table> - - <p> </p> - - <a name="compatibility"></a><h2>Classi di compatibilità</h2> - - <a name="notebook-compatibility"></a><h3>Notebooks</h3> - <dl> - <dt>Classe A (Platino)</dt> - <dd>Tutti i dispositivi del portatile funzionano ad alte prestazioni. </dd> - <dd class="example">Per esempio: funzionano tutti i dispositivi, l'accelerazione 3D è supportata.</dd> - <dt>Classe B (Oro)</dt> - <dd>Tutti i dispositivi del portatile funzionano ma non a piene prestazioni. </dd> - <dd class="example">Esempio tipico: funzionano tutti i dispositivi, ma l'accelerazione 3D non è supportata.</dd> - <dt>Classe C (Argento)</dt> - <dd>Uno dei dispositivi principali non è supportato. </dd> - <dd class="example">Per esempio: la scheda wifi interna non funziona e serve una wifi esterna USB.</dd> - <dt>Classe D (Bronzo)</dt> - <dd>Più di uno dei dispositivi principali non è supportato.</dd> - <dt>Classe E (Spazzatura)</dt> - <dd>Il portatile non funziona con software libero.</dd> - </dl> - - <a name="printer-compatibility"></a><h3>Stampanti</h3> - <dl> - <dt>Classe A (Piena)</dt> - <dd>Sono supportate tutte le funzioni e le caratteristiche della stampante.</dd> - <dt>Classe B (Parziale)</dt> - <dd>La funzione di stampa è supportata, ma a velocità limitata o a scarsa qualità. Su alcune stampanti - multifunzione possono non essere supportate le funzioni di scanner e/o di fax.</dd> - <dt>Classe C (Nessuna)</dt> - <dd>La stampante non funziona con software libero.</dd> - </dl> - - <a name="scanner-compatibility"></a><h3>Scanner</h3> - <dl> - <dt>Classe A (Piena)</dt> - <dd>Sono supportate tutte le funzioni e le caratteristiche dello scanner.</dd> - <dt>Classe B (Parziale)</dt> - <dd>La funzione di scannerizzazione è supportata, ma a velocità limitata o a scarsa qualità. Qualche altra - caratteristica può non essere supportata.</dd> - <dt>Classe C (Nessuna)</dt> - <dd>Lo scanner non funziona con software libero.</dd> - </dl> - - <p></p> - - <a name="discover-hardware"></a><h2>Scopri il tuo hardware</h2> - <cite>(Grazie <a href="<?php echo $this->baseUrl;?>/issues/view/en/3/1/token">lluvia</a>)</cite> - - <p>Per sapere le caratteristiche e i dettagli del tuo hardware puoi seguire queste istruzioni:</p> - <dl> - <dt>Come scoprire il nome del modello del portatile</dt> - <dd>Guarda sotto al tuo notebook o al tuo netbook</dd> - <a name="model-name"></a><dt>Come scoprire il nome del modello del tuo hardware (se non è un portatile)</dt> - <dd class="opt">Se il dispositivo è integrato (ad esempio: una scheda video)</dd> - <dd>Apri un terminale e digita il seguente comando:</dd> - <dd><pre class="terminal">lspci</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lspci > FILENAME # Puoi anche scrivere l'output del comandi lspci su un file digitando<!-- l'output del comandi un file digitando :)--></pre> - </dd> - <!-- dd>dove "filename" è il nome del file</dd --> - <dd>Otterrai la lista di tutti i tuoi dispositivi PCI, simile a quella scritta sotto</dd> - <dd><pre class="terminal"> -00:18.3 Host bridge: <b>Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control</b> -03:00.0 Network controller: <b>Broadcom Corporation BCM4311 802.11b/g WLAN (rev 02)</b> -05:00.0 VGA compatible controller: <b>nVidia Corporation G86 [GeForce 8400M GS] (rev a1)</b> - </pre> - </dd> - <dd>Il nome di ogni dispositivo è scritto dopo i due punti (guarda il testo in grassetto nella - lista superiore)</dd> - <dd class="opt">Se è un dispositivo USB (ad esempio: una stampante USB)</dd> - <dd>Apri un terminale e digita il seguente comando:</dd> - <dd><pre class="terminal">lsusb -v</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lsusb -v > FILENAME # l'output del comandi un file digitando</pre> - </dd> - <!-- dd>dove "filename" è il nome del file</dd --> - <dd>Otterrai la lista di tutti i dispositivi USB, simile a quella scritta sotto</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID 0846:4260 NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 2.00 - bDeviceClass 0 (Defined at Interface level) - bDeviceSubClass 0 - bDeviceProtocol 0 - bMaxPacketSize0 64 - idVendor 0x0846 NetGear, Inc. - idProduct 0x4260 <b>WG111v3 54 Mbps Wireless [realtek RTL8187B]</b> - bcdDevice 2.00 - iManufacturer 1 - iProduct 2 - iSerial 3 - ... - ... - -Bus 002 Device 003: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor -Device Descriptor: - bLength 18 - bDescriptorType 1 - bcdUSB 1.10 - bDeviceClass 255 Vendor Specific Class - bDeviceSubClass 255 Vendor Specific Subclass - bDeviceProtocol 255 Vendor Specific Protocol - bMaxPacketSize0 8 - idVendor 0x08ff AuthenTec, Inc. - idProduct 0x2580 <b>AES2501 Fingerprint Sensor</b> - bcdDevice 6.23 - iManufacturer 0 - iProduct 1 Fingerprint Sensor - iSerial 0 - bNumConfigurations 1 - ... - ... - </pre> - </dd> - <dd>Il nome di ogni dispositivo è scritto alla riga che inizia con la stringa "idProduct" (guarda il testo in - grassetto nella lista superiore)</dd> - <dt>Come scoprire che versione del kernel libre stai usando</dt> - <dd>Apri un terminale e digita questo comando</dd> - <dd><pre class="terminal">uname -r</pre> - </dd> - <dt>Come scoprire il nome della tua scheda video</dt> - <dd>Apri un terminale e digita questo comando:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Poi cerca la riga contenente la stringa <b>VGA</b> o <b>Display controller</b>. Puoi anche provare con uno di - questi comandi:</dd> - <dd><pre class="terminal">lspci | grep "Display controller"</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lspci | grep "VGA"</pre> - </dd> - <a name="vendoridproductid"></a><dt>Come scoprire il VendorID e il ProductID del tuo dispositivo (VendorID:ProductID - code)</dt> - <dd><cite>(Grazie <a - href="http://trisquel.info/en/forum/h-nodecom-new-website-hardware-database#comment-5839">Michał Masłowski</a> - e <a href="http://trisquel.info/en/forum/h-nodecom-new-website-hardware-database#comment-5837">Julius22</a>) - </cite></dd> - <dd class="opt">Se il dispositivo è integrato (per esempio una scheda video)</dd> - <dd>Apri un terminale e digita il seguente comando:</dd> - <dd><pre class="terminal">sudo lspci -nnk</pre> - </dd> - <dd>Dovresti ottenere una lista di hardware simile a quella scritta qui sotto</dd> - <dd><pre class="terminal"> -03:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [<b>14e4:4311</b>] (rev 02) - Kernel driver in use: b43-pci-bridge - Kernel modules: ssb -05:00.0 VGA compatible controller [0300]: nVidia Corporation G86 [GeForce 8400M GS] [<b>10de:0427</b>] (rev a1) - Kernel modules: nouveau, nvidiafb</pre> - <dd class="note"><span class="note">Note:</span> Le stringhe in <b>grassetto</b> e tra parentesi quadre (nella - lista qui sopra) sono il codice che stai cercando. Il primo gruppo di cifre (prima dei due punti) è il - <b>VendorID</b>, il secondo gruppo è il <b>ProductID</b>. Nell'esempio qui sopra: il codice VendorID:ProductID - della scheda wifi (nota le stringhe "Network controller" e "WLAN") è <b>14e4:4311</b> mentre il codice - VendorID:ProductID della scheda video (nota la stringa "VGA") è <b>10de:0427</b></dd> - <dd class="opt">Se si tratta di un dispositivo USB (per esempio una wifi esterna USB)</dd> - <dd>Apri un terminale e digita questo comando:</dd> - <dd><pre class="terminal">sudo lsusb</pre> - </dd> - <dd>Dovresti ottenere una lista di hardware simile a quella scritta qui sotto</dd> - <dd><pre class="terminal"> -Bus 001 Device 002: ID <b>0846:4260</b> NetGear, Inc. WG111v3 54 Mbps Wireless [realtek RTL8187B] -Bus 001 Device 001: ID <b>1d6b:0002</b> Linux Foundation 2.0 root hub -Bus 002 Device 003: ID <b>08ff:2580</b> AuthenTec, Inc. AES2501 Fingerprint Sensor</pre> - </dd> - <dd class="note"><span class="note">Note:</span> Le stringhe in <b>grassetto</b> (nella lista qui sopra) sono il - codice che stai cercando. Il primo gruppo di cifre (prima dei due punti) è il <b>VendorID</b>, il secondo gruppo - è il <b>ProductID</b>. Nell'esempio qui sopra: il codice VendorID:ProductID della wifi esterna USB (nota la - stringa "Wireless") è <b>0846:4260</b></dd> - <dt>Come scoprire se funziona la scheda video</dt> - <dd>Installa <code><a href="http://rss-glx.sourceforge.net/">rss-glx</a></code> tramite il gestore di pacchetti - della tua distribuzione o compilando dai sorgenti e prova degli screensaver (per esempio <b>Skyrocket</b> o - <b>Solarwinds</b>). Controlla se parte lo screensaver (e/o se si vede "fluido")</dd> - <dt>Come scoprire se funziona l'accelerazione 3D</dt> - <dd>Prova ad attivare compiz</dd> - <dt>Come scoprire il nome della tua scheda wifi</dt> - <dd>Apri un terminale e digita questo comando:</dd> - <dd><pre class="terminal">sudo lspci</pre> - </dd> - <dd>Poi cerca la riga contenente la stringa <samp><b>Wireless</b></samp> o <samp><b>Network controller</b></samp>. - Puoi anche provare uno dei seguenti comandi:</dd> - <dd><pre class="terminal">lspci | grep "Wireless"</pre> - </dd> - <dd>o</dd> - <dd><pre class="terminal">lspci | grep "Network"</pre> - </dd> - <dt>Come scoprire che driver per la stampante stai usando</dt> - <dd class="opt">Se stai usando cups</dd> - <dd>Apri un terminale e digita il seguente comando:</dd> - <dd><pre class="terminal">dpkg-query -W -f '${Version}\n' cups</pre> - </dd> - <dt>Come scoprire l'architettura del tuo portatile:</dt> - <dd>Apri un terminale e digita il seguente comando:</dd> - <dd><pre class="terminal">cat /proc/cpuinfo | grep "lm"</pre> - </dd> - <dd>Se ottieni un messaggio come il seguente:</dd> - <dd><pre class="terminal">flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts<br/>acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64<br/>monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm</pre> - </dd> - <dd>allora il tuo portatile è x86-64/amd64 e puoi usare una distribuzione x86-64/amd64</dd> - </dl> - - <p> </p> - - <a name="fully-free"></a><h2>Lista di distribuzioni GNU/Linux completamente libere</h2> - - <!-- p class="attention"><span class="highlight">La <strong>h-node</strong> non è responsabile del contenuto di altri siti - web, né di quanto il contenuto di tali siti sia aggiornato.</span></p --> - - <p>Le seguenti sono le distribuzioni <a href="http://www.gnu.org/gnu/linux-and-gnu.it.html">GNU/Linux</a> a noi note - che hanno una rigorosa politica di inclusione e indicazione di solo software libero. Queste distribuzioni escludono - applicazioni, piattaforme di programmazione, driver e firmware ("blob") che non siano liberi, e rimuovono quelli - inclusi per errore. Per saperne di più su cosa rende <a href="http://www.gnu.org/distros/free-distros.it.html">libera - una distribuzione GNU/Linux</a>, si vedano le GNU <a - href="http://www.gnu.org/distros/free-system-distribution-guidelines.it.html">linee guida per le distribuzioni - libere</a>.</p> - - <p><strong>Tutte le distribuzioni che seguono sono installabili sul disco di un computer e la maggior parte può essere - eseguita da un supporto</strong> (CD, memoria USB) senza che nulla debba essere installato sul computer.</p> - - <p>In ordine alfabetico</p> - - <ul> - <li><a href="http://www.dragora.org">Dragora GNU/Linux</a></li> - <li><a href="http://dynebolic.org/">Dynebolic GNU/Linux</a></li> - <li><a href="http://www.musix.org.ar/">Musix GNU+Linux</a></li> - <li><a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a></li> - <li><a href="http://trisquel.info/">Trisquel GNU/Linux</a></li> - <li><a href="http://www.ututo.org/www/">Ututo GNU/Linux</a></li> - <li><a href="http://venenux.org/">Venenux GNU/Linux</a></li> - </ul> - </div> - |