You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

setpci
===
查询和配置PCI设备的使用工具
## 说明
**setpci命令** 是一个查询和配置PCI设备的使用工具。
### 语法
```
setpci(选项)(参数)
```
```
-v显示指令执行的细节信息
-f当没有任何操作需要完成时不显示任何信息
-D测试模式并不真正将配置信息写入寄存器
-d仅显示给定厂商和设备的信息
-s仅显示指定总线、插槽上的设备或设备上的功能块信息。
```
### 参数
* PCI设备指定要配置的PCI设备
* 操作:指定要完成的配置操作。
### 实例
Linux下调节笔记本屏幕亮度方法
首先进入终端输入lspci命令列出各种设备的地址
```
lspci
00:00.0 host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 02)
00:1c.1 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 2 (rev 02)
......
```
发现00:02.0是VGA设备于是我们修改它的属性
```
sudo setpci -s 00:02.0 F4.B=FF
```
解释一下:
* **setpci** 是修改设备属性的命令。
* **-s** 表示接下来输入的是设备的地址。
* **00:02.0** VGA设备地址<总线>:<接口>.<功能>)。
* **F4** 要修改的属性的地址,这里应该表示“亮度”。
* **.B** 修改的长度B应该是字节Byte还有w应该是Word两个字节、L应该是Long4个字节
* **=FF** 要修改的值(可以改)。
我这里00是最暗FF是最亮不同的电脑可能不一样。比如说我嫌FF太闪眼了我就可以
```
sudo setpci -s 00:02.0 F4.B=CC
```