我倾向于在Ubuntu上使用nvidia-prime来运行我的英特尔显卡而不是NVIDIA,有没有一种在Debian上使用nvidia-prime的方法?
发布于 2016-11-01 20:21:10
编辑/etc/apt/sources.list文件并添加以下行:
deb http://httpredir.debian.org/debian/ jessie main contrib non-free更新和安装驱动程序:
aptitude update
aptitude -r install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') nvidia-kernel-dkms创建Xorg服务器配置文件:
mkdir /etc/X11/xorg.conf.d
echo -e 'Section "Device"\n\tIdentifier "My GPU"\n\tDriver "nvidia"\nEndSection' > /etc/X11/xorg.conf.d/20-nvidia.conf重新启动
要在驱动程序( intel/nvidia )之间切换,请从终端运行nvidia-settings并选择驱动程序。
https://unix.stackexchange.com/questions/320384
复制相似问题