aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Views/Help/index_es.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-05-14 13:46:10 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-05-14 13:46:10 +0000
commita3ee6d8cca93cc4b297bbad804878687397eb8ba (patch)
treefcdcd745484f360c2f4a2f849cd58e2dcc1242a6 /h-source/Application/Views/Help/index_es.php
parentde51b631a7cc29c2bb7b1a97c71edf86ba53e58a (diff)
h-source:improved the help page
Diffstat (limited to 'h-source/Application/Views/Help/index_es.php')
-rw-r--r--h-source/Application/Views/Help/index_es.php101
1 files changed, 101 insertions, 0 deletions
diff --git a/h-source/Application/Views/Help/index_es.php b/h-source/Application/Views/Help/index_es.php
index df26c25..599eceb 100644
--- a/h-source/Application/Views/Help/index_es.php
+++ b/h-source/Application/Views/Help/index_es.php
@@ -269,6 +269,107 @@
<h3>Como descubrir el modelo de su laptop</h3>
<p>Vea debajo de su laptop o netbook</p>
+
+ <a name="model-name"><h3>How to discover the model name of your device (if it is not a notebook)</h3></a>
+
+ <h4>If the device is integrated (example: a video card)</h4>
+
+ <p>Open a terminal and type the following command:</p>
+
+ <pre>
+ lspci -vmm
+ </pre>
+
+ <p>You will obtain the list of your PCI devices, similar to the one written below</p>
+
+ <pre>
+ Slot: 03:00.0
+ Class: Network controller
+ Vendor: Broadcom Corporation
+ Device: <b>BCM4311 802.11b/g WLAN</b>
+ SVendor: Hewlett-Packard Company
+ SDevice: Device 1375
+ Rev: 02
+
+ Slot: 07:05.0
+ Class: FireWire (IEEE 1394)
+ Vendor: Ricoh Co Ltd
+ Device: <b>R5C832 IEEE 1394 Controller</b>
+ SVendor: Hewlett-Packard Company
+ SDevice: Device 30cf
+ Rev: 05
+ ProgIf: 10
+ </pre>
+
+ <p>The name of each device is written at the "Device" row, after the colon (see the text in bold in the above list)</p>
+
+ <p>You can also write the output of the lspci command to a file by typing:</p>
+
+ <pre>
+ lspci -vmm > filename
+ </pre>
+
+ <p>where "filename" is the name of the file</p>
+
+
+ <h4>If the device is an USB device (example: an external USB wifi card)</h4>
+
+ <p>Open a terminal and type the following command:</p>
+
+ <pre>
+ lsusb -v
+ </pre>
+
+ <p>You will obtain the list of your USB devices, similar to the one written below</p>
+
+ <pre>
+ 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>
+
+ <p>The name of each device is written at the row starting with "idProduct" (see the text in bold in the above list)</p>
+
+ <p>You can also write the output of the lsusb command to a file by typing:</p>
+
+ <pre>
+ lsusb -v > filename
+ </pre>
+
+ <p>where "filename" is the name of the file</p>
<!--<h3>How to discover the year of commercialization of your notebook</h3>