两张独立显卡连接两个显示器如何配置
网上大多说的是如何交火,其实个人感觉交火只是两张显卡同步后共同处理数据,所以不交火的话让两个显卡独立工作还是没有问题的。在VTD中就有两张显卡独立处理数据后分别从不同通道输出。
所用配置:1200w电源,两张3090显卡
在nvidai-settings配置后,保存是出现错误
unable to open config file /etc/X11/xorg.conf'' for writing
sudo apt-get update
sudo apt-get install xorg-server-source
发现没有/usr/share/screen-resolution-extra/nvidia-polkit
cd /usr/share/screen-resolution-extra && ls
发现存在nvidia-polkit.py
为其创建软连接,并赋予可执行权限
sudo ln -s nvidia-polkit.py nvidia-polkit
sudo chmod +x nvidia-polkit
依然报错
可能是Python版本问题
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
sudo update-alternatives --display python
重启电脑
生效
两张独立显卡连接两个显示器如何配置
网上大多说的是如何交火,其实个人感觉交火只是两张显卡同步后共同处理数据,所以不交火的话让两个显卡独立工作还是没有问题的。在VTD中就有两张显卡独立处理数据后分别从不同通道输出。
所用配置:1200w电源,两张3090显卡
在nvidai-settings配置后,保存是出现错误
unable to open config file /etc/X11/xorg.conf'' for writing
sudo apt-get update
sudo apt-get install xorg-server-source
发现没有/usr/share/screen-resolution-extra/nvidia-polkit
cd /usr/share/screen-resolution-extra && ls
发现存在nvidia-polkit.py
为其创建软连接,并赋予可执行权限
sudo ln -s nvidia-polkit.py nvidia-polkit
sudo chmod +x nvidia-polkit
依然报错
可能是Python版本问题
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
sudo update-alternatives --display python
重启电脑
生效