Difference between revisions of "PCI Utilities"
m |
|||
(29 intermediate revisions by 10 users not shown) | |||
Line 1: | Line 1: | ||
{| style="text-align: left; background-color: AliceBlue;" | {| style="text-align: left; background-color: AliceBlue;" | ||
− | |- | + | |-valign="top" |
!Download Source: | !Download Source: | ||
− | | | + | | ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-{{PCI Utilities-Version}}.tar.gz |
|} | |} | ||
---- | ---- | ||
+ | |||
+ | {{Package-Introduction|PCI Utilities are various utilities that allow inspection and setting of devices connected to the PCI bus.|http://mj.ucw.cz/sw/pciutils/}} | ||
== Dependencies == | == Dependencies == | ||
+ | |||
+ | === Required === | ||
+ | * [[wget]] or [[curl]] for update-pciids | ||
+ | * [[which]] for update-pciids | ||
+ | |||
+ | === Optional === | ||
+ | * [[pkg-config]] | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 13: | Line 22: | ||
Compile the package: | Compile the package: | ||
− | + | make PREFIX=/usr CC="gcc -fPIC" ZLIB=no SHARED=yes | |
− | make PREFIX=/usr | ||
Install the package | Install the package | ||
− | make PREFIX=/usr install | + | make PREFIX=/usr SHARED=yes install |
+ | |||
+ | Some packages require the PCI static library. To install the library and headers, issue the following command: | ||
+ | |||
+ | make PREFIX=/usr SHARED=yes install-lib | ||
− | + | === Command Explanations === | |
− | + | '''ZLIB=no''': This will make the '''pci.ids''' file usable for anything that expects an uncompressed version of the '''pci.ids''' file. Without this command the file would be called '''pci.ids.gz''', which is not compatbile with some programs. Compression of '''pci.ids''' was added with the 2.2.4 release. | |
− | + | If compressed support is enabled by '''ZLIB=yes''', pciutils will use pci.ids.gz in preference to pci.ids, even if the | |
− | + | pci.ids file is newer. If the pci.ids.gz file is missing, it will use pci.ids instead. | |
+ | You can turn on compression support and uncompress '''pci.ids.gz''' to '''pci.ids''' after every update manually. | ||
== Multilib == | == Multilib == | ||
Line 32: | Line 45: | ||
Compile the package: | Compile the package: | ||
− | + | make PREFIX=/usr CC="gcc ${BUILD32} -fPIC" ZLIB=no SHARED=yes | |
− | make PREFIX=/usr CC="gcc ${BUILD32}" | ||
Install the package | Install the package | ||
− | make PREFIX=/usr install | + | make PREFIX=/usr SHARED=yes install |
Some packages require the PCI static library. To install the library and headers, issue the following commands: | Some packages require the PCI static library. To install the library and headers, issue the following commands: | ||
− | + | make PREFIX=/usr SHARED=yes install-lib | |
− | |||
− | |||
=== N32 === | === N32 === | ||
Line 49: | Line 59: | ||
Compile the package: | Compile the package: | ||
− | + | make PREFIX=/usr LIBDIR=/usr/lib32 CC="gcc ${BUILDN32} -fPIC" ZLIB=no SHARED=yes | |
− | make PREFIX=/usr CC="gcc ${BUILDN32}" | ||
Install the package | Install the package | ||
− | make PREFIX=/usr install | + | make PREFIX=/usr LIBDIR=/usr/lib32 SHARED=yes install |
− | Some packages require the PCI static library. To install the library and headers, issue the following | + | Some packages require the PCI static library. To install the library and headers, issue the following command: |
− | + | make PREFIX=/usr LIBDIR=/usr/lib32 SHARED=yes install-lib | |
− | |||
− | |||
=== 64Bit === | === 64Bit === | ||
Line 66: | Line 73: | ||
Compile the package: | Compile the package: | ||
− | + | make PREFIX=/usr LIBDIR=/usr/lib64 CC="gcc ${BUILD64} -fPIC" ZLIB=no SHARED=yes | |
− | make PREFIX=/usr CC="gcc ${BUILD64}" | ||
Install the package | Install the package | ||
− | make PREFIX=/usr install | + | make PREFIX=/usr LIBDIR=/usr/lib64 SHARED=yes install |
− | Some packages require the PCI static library. To install the library and headers, issue the following | + | Some packages require the PCI static library. To install the library and headers, issue the following command: |
− | + | make PREFIX=/usr LIBDIR=/usr/lib64 SHARED=yes install-lib | |
− | |||
− | |||
== Configuring == | == Configuring == | ||
Line 84: | Line 88: | ||
The '''pci.ids''' data file is constantly being updated. To get a current version of this file run '''update-pciids'''. This program requires [[Which]] to find [[Curl]], [[Wget]], or [[Lynx]] which is used to download the most current file. | The '''pci.ids''' data file is constantly being updated. To get a current version of this file run '''update-pciids'''. This program requires [[Which]] to find [[Curl]], [[Wget]], or [[Lynx]] which is used to download the most current file. | ||
+ | |||
+ | = Contents = | ||
+ | |||
+ | {| style="text-align: left;" | ||
+ | |-valign="top" | ||
+ | ! Installed Programs: | ||
+ | | lspci, setpci and update-pciids | ||
+ | |-valign="top" | ||
+ | ! Installed Libraries: | ||
+ | | libpci.a | ||
+ | |-valign="top" | ||
+ | ! Installed Directories: | ||
+ | | /usr/include/pci | ||
+ | |} | ||
+ | |||
+ | === Short Descriptions === | ||
+ | |||
+ | {| style="text-align: left;" | ||
+ | |-valign="top" | ||
+ | ! lspci | ||
+ | | is a utility for displaying information about all PCI buses in the system and all devices connected to them. | ||
+ | |-valign="top" | ||
+ | ! setpci | ||
+ | | is a utility for querying and configuring PCI devices. | ||
+ | |-valign="top" | ||
+ | ! update-pciids | ||
+ | | fetches the current version of the PCI ID list. Requires [[Curl]], [[Wget]] or [[Lynx]]. | ||
+ | |-valign="top" | ||
+ | ! libpci.a | ||
+ | | is the static library that allows applications to access the PCI subsystem. | ||
+ | |} | ||
+ | |||
+ | [[Category:General Utilities]] |
Latest revision as of 16:37, 18 February 2013
Download Source: | ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-3.1.10.tar.gz |
---|
Contents
Introduction to PCI Utilities
PCI Utilities are various utilities that allow inspection and setting of devices connected to the PCI bus.
Project Homepage: http://mj.ucw.cz/sw/pciutils/
Dependencies
Required
Optional
Non-Multilib
Compile the package:
make PREFIX=/usr CC="gcc -fPIC" ZLIB=no SHARED=yes
Install the package
make PREFIX=/usr SHARED=yes install
Some packages require the PCI static library. To install the library and headers, issue the following command:
make PREFIX=/usr SHARED=yes install-lib
Command Explanations
ZLIB=no: This will make the pci.ids file usable for anything that expects an uncompressed version of the pci.ids file. Without this command the file would be called pci.ids.gz, which is not compatbile with some programs. Compression of pci.ids was added with the 2.2.4 release. If compressed support is enabled by ZLIB=yes, pciutils will use pci.ids.gz in preference to pci.ids, even if the pci.ids file is newer. If the pci.ids.gz file is missing, it will use pci.ids instead. You can turn on compression support and uncompress pci.ids.gz to pci.ids after every update manually.
Multilib
32Bit
Compile the package:
make PREFIX=/usr CC="gcc ${BUILD32} -fPIC" ZLIB=no SHARED=yes
Install the package
make PREFIX=/usr SHARED=yes install
Some packages require the PCI static library. To install the library and headers, issue the following commands:
make PREFIX=/usr SHARED=yes install-lib
N32
Compile the package:
make PREFIX=/usr LIBDIR=/usr/lib32 CC="gcc ${BUILDN32} -fPIC" ZLIB=no SHARED=yes
Install the package
make PREFIX=/usr LIBDIR=/usr/lib32 SHARED=yes install
Some packages require the PCI static library. To install the library and headers, issue the following command:
make PREFIX=/usr LIBDIR=/usr/lib32 SHARED=yes install-lib
64Bit
Compile the package:
make PREFIX=/usr LIBDIR=/usr/lib64 CC="gcc ${BUILD64} -fPIC" ZLIB=no SHARED=yes
Install the package
make PREFIX=/usr LIBDIR=/usr/lib64 SHARED=yes install
Some packages require the PCI static library. To install the library and headers, issue the following command:
make PREFIX=/usr LIBDIR=/usr/lib64 SHARED=yes install-lib
Configuring
pci.ids
The pci.ids data file is constantly being updated. To get a current version of this file run update-pciids. This program requires Which to find Curl, Wget, or Lynx which is used to download the most current file.
Contents
Installed Programs: | lspci, setpci and update-pciids |
---|---|
Installed Libraries: | libpci.a |
Installed Directories: | /usr/include/pci |
Short Descriptions
lspci | is a utility for displaying information about all PCI buses in the system and all devices connected to them. |
---|---|
setpci | is a utility for querying and configuring PCI devices. |
update-pciids | fetches the current version of the PCI ID list. Requires Curl, Wget or Lynx. |
libpci.a | is the static library that allows applications to access the PCI subsystem. |