星期五, 四月 10, 2020

ubuntu 18.04 使用intel核显画面撕裂解决办法

https://blog.csdn.net/macwinwin/article/details/100073354
没有则创建文件:
/etc/X11/xorg.conf.d/20-intel-graphics.conf
写入内容:

Section "Device"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Option      "TripleBuffer" "true"
   Option      "TearFree"     "true"
   Option      "DRI"          "false"
EndSection

    1
    2
    3
    4
    5
    6
    7

参考:https://askubuntu.com/questions/945895/solution-to-intel-graphics-screen-tearing-flickering-causes-excessive-fan-use

更新:
可能是由于安装的是Ubuntu的最小安装版或者是因为处理器太新,在系统信息中并没有正常显示出intel的显卡,解决办法如下

    删除上面添加的目录与文件
    使用 Oibaf PPA
    https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers

>>> sudo add-apt-repository ppa:oibaf/graphics-drivers
>>> sudo apt update
>>> sudo apt upgrade
>>> sudo reboot now

    1
    2
    3
    4

系统信息中的显卡显示正常:
————————————————
版权声明:本文为CSDN博主「microfat992」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/macwinwin/java/article/details/100073354

https://ywnz.com/linuxjc/5430.html

没有评论: