转载请注明出处:小锋学长生活大爆炸[xfxuezhagn.cn] 如果本文帮助到了你,欢迎[点赞、收藏、关注]哦~
默认xorg会使用GPU加速:
现在取消他对GPU的占用:
sudo vim /etc/X11/xorg.conf
修改或添加以下内容:
Section "Device"
Identifier "NVIDIA Graphics"
Driver "nvidia"
Option "NoAccel" "true"
EndSection
如果是Intel的GPU,那就是:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "none"
EndSection
# 如果你使用GDM(GNOME Display Manager):
sudo systemctl restart gdm
# 如果你使用LightDM:
# sudo systemctl restart lightdm
# 如果你使用SDDM(Simple Desktop Display Manager):
# sudo systemctl restart sddm
发现不再占用了:
并且xorg不受影响,可以继续使用:
对于带屏幕的电脑,我试了下还是关不掉。如果你也不需要屏幕显示界面,那么可以彻底关掉它:
sudo service gdm stop
世界安静了,但屏幕也黑了。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。