UBUNTU 14.04 Gui 文本和图片显示问题如病毒

-2 gui intel-graphics

我的全新笔记本电脑 Lenovo T450s 的 Ubuntu 14.04 可能有问题 - 它看起来像病毒。它出现在笔记本电脑必须重新启动后,我希望它只是一些损坏的文件。

杀毒没有发现任何东西。

所以看起来有些字母被随机的新字母替换了,或者只是丢失了。重启后以不同的强度出现,但不会消失。它会影响 GUI 以及 Firefox、synaptic 和其他程序,但不是全部。Skype 很好,终端很好。它甚至出现在来宾会话下。

是病毒吗?如果是,Ubuntu 的哪个防病毒软件可以找到它,如果没有,如何修复它?

这是屏幕截图:

在此处输入图片说明

olga@olga:~$ sudo lshw -class display
[sudo] password for olga: 
  *-display               
       description: VGA compatible controller
       product: Broadwell-U Integrated Graphics
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 09
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm vga_controller bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:61 memory:e0000000-e0ffffff memory:d0000000-dfffffff ioport:3000(size=64)
Run Code Online (Sandbox Code Playgroud)

小智 5

这是由病毒引起的可能性很小。

我也有同样的问题,Thinkpad T450s 上的 Ubuntu 14.04,以及有人在Launchpad 上建议的以下解决方法对我有用,尽管它对图形性能有明显的负面影响:

sudo mkdir /etc/X11/xorg.conf.d/
sudo -H gedit /etc/X11/xorg.conf.d/20-intel.conf
Run Code Online (Sandbox Code Playgroud)

将以下内容添加到文件中,保存并重新启动:

Section "Device"
  Identifier  "Intel Graphics"
  Driver      "intel"
  Option      "AccelMethod"  "uxa"
EndSection
Run Code Online (Sandbox Code Playgroud)