我傾向於在 Ubuntu 上使用nvidia-prime
來運行我的 intel 顯示卡而不是 NVIDIA,有沒有辦法nvidia-prime
在 Debian 上使用?
答案1
編輯您的/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
從終端運行並選擇驅動程式。