在 Ubuntu 16.04LTS 中恢复 xorg.conf 文件

在 Ubuntu 16.04LTS 中恢复 xorg.conf 文件

检查 /etc/X11 目录的内容,我发现缺少 xorg.conf 文件。这正常吗?我只有 xorg.conf.failsafe 配置文件,其中包含以下几行:

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "vesa"
EndSection

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
EndSection

上面的配置文件是否正确?或者,我必须恢复 xorg.conf 文件?如果是,我该怎么做?当前使用的驱动程序是:

sudo lshw -c display | grep driver
[sudo] password di michele: 
       configuration: driver=i915 latency=0

lspci | grep -E 'VGA|Display|3D'
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Whistler [Radeon HD 6730M/6770M/7690M XT] (rev ff)

几个小时前,重新启动操作系统后,出现黑屏并显示以下消息:

您的系统正在低图形模式下运行

但重新启动电脑后,奇怪的是一切都恢复如常。

谢谢!

相关内容