From de51b631a7cc29c2bb7b1a97c71edf86ba53e58a Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Fri, 13 May 2011 15:14:24 +0000 Subject: h-source:improved the way forms are managed - part 2, improved help pages --- h-source/Application/Views/Help/index.php | 117 ++++++++++++++++++++++++++++-- 1 file changed, 109 insertions(+), 8 deletions(-) (limited to 'h-source/Application/Views/Help/index.php') diff --git a/h-source/Application/Views/Help/index.php b/h-source/Application/Views/Help/index.php index aff2583..735a20e 100644 --- a/h-source/Application/Views/Help/index.php +++ b/h-source/Application/Views/Help/index.php @@ -36,7 +36,7 @@ -

Wiki syntax

+

Wiki syntax

List of wiki tags

@@ -204,9 +204,9 @@ -

Compatibility classes

+

Compatibility classes

-

Notebooks

+

Notebooks

Class A (Platinum)

@@ -229,7 +229,7 @@

The notebook does not work with free software

-

Printers

+

Printers

Class A (Full)

@@ -244,7 +244,7 @@

The printer does not work with free software

-

Scanners

+

Scanners

Class A (Full)

@@ -258,7 +258,7 @@

The scanner does not work with free software

-

Discover your hardware

+

Discover your hardware

(Thanks lluvia)
@@ -268,6 +268,107 @@

How to discover the model name of your notebook

See below your notebook or netbook

+ +

How to discover the model name of your device (if it is not a notebook)

+ +

If the device is integrated (example: a video card)

+ +

Open a terminal and type the following command:

+ +
+		lspci -vmm
+	
+ +

You will obtain the list of your PCI devices, similar to the one written below

+ +
+		Slot:	03:00.0
+		Class:	Network controller
+		Vendor:	Broadcom Corporation
+		Device:	BCM4311 802.11b/g WLAN
+		SVendor:	Hewlett-Packard Company
+		SDevice:	Device 1375
+		Rev:	02
+
+		Slot:	07:05.0
+		Class:	FireWire (IEEE 1394)
+		Vendor:	Ricoh Co Ltd
+		Device:	R5C832 IEEE 1394 Controller
+		SVendor:	Hewlett-Packard Company
+		SDevice:	Device 30cf
+		Rev:	05
+		ProgIf:	10
+	
+ +

The name of each device is written at the "Device" row, after the colon (see the text in bold in the above list)

+ +

You can also write the output of the lspci command to a file by typing:

+ +
+		lspci -v > filename
+	
+ +

where "filename" is the name of the file

+ + +

If the device is an USB device (example: an external USB wifi card)

+ +

Open a terminal and type the following command:

+ +
+		lsusb -vmm
+	
+ +

You will obtain the list of your USB devices, similar to the one written below

+ +
+		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 WG111v3 54 Mbps Wireless [realtek RTL8187B]
+			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 AES2501 Fingerprint Sensor
+			bcdDevice            6.23
+			iManufacturer           0
+			iProduct                1 Fingerprint Sensor
+			iSerial                 0
+			bNumConfigurations      1
+			...
+			...
+	
+ +

The name of each device is written at the end of the row starting with "idProduct" (see the text in bold in the above list)

+ +

You can also write the output of the lsusb command to a file by typing:

+ +
+		lsusb -v > filename
+	
+ +

where "filename" is the name of the file