Linux系统下多Nvidia显卡超频

  1. 安装驱动
1
apt install nvidia-384 nvidia-384-dev
  1. 下载一个edid文件用来模拟显示器以使得没有连接显示器的显卡可以被设置。

  2. xconfig生成xorg.conf文件(生成后位于/etc/X11/)

1
nvidia-xconfig -a --cool-bits=28 --custom-edid="DFP-0:<path to edid file>" --connected-monitor="DFP-0" --no-use-display-device
  1. 打开/etc/X11/xorg.conf文件,可以看到对应每块显卡,均生成了MonitorDeviceScreen三个Section,其中Screen Section如下
1
2
3
4
5
6
7
8
9
10
11
12
13
Section "Screen"
Identifier "Screen1"
Device "Device1"
Monitor "Monitor1"
DefaultDepth 24
Option "CustomEDID" "DFP-0:/etc/X11/delledid.bin"
Option "ConnectedMonitor" "DFP-0"
Option "UseDisplayDevice" "none"
Option "Coolbits" "28"
SubSection "Display"
Depth 24
EndSubSection
EndSection

可以看到刚才设置的各个条目都在Option里面。找到并删除掉实际连接显示器的Section中除了Coolbits之外的其他Option

  1. 重启电脑。