diff options
Diffstat (limited to 'h-source/Application/Views/Help/index_fr.php')
-rw-r--r-- | h-source/Application/Views/Help/index_fr.php | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/h-source/Application/Views/Help/index_fr.php b/h-source/Application/Views/Help/index_fr.php index e4f63da..e97fc3d 100644 --- a/h-source/Application/Views/Help/index_fr.php +++ b/h-source/Application/Views/Help/index_fr.php @@ -268,6 +268,107 @@ <h3>Comment découvrir le modèle de votre notebook</h3> <p>See below your notebook or 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>Trouver la version du noyau linux libre que vous utilisez</h3> |