如何配置 xorg.conf ubuntu



我的 Ubuntu 中的图形设置有一些问题(16.4 和现在的 18.4(。当我看到视频时,在某些情况下我的电脑崩溃了,所以我必须通过按开始按钮重新启动它。 很久以前,我可以通过更改 xorg.conf 文件的设置来解决此问题,但是格式化笔记本电脑后,我丢失了设置。 我的操作系统没有 xorg.conf 文件,我知道默认情况下不会创建它,所以我在恢复模式下使用X -configure命令创建了它。这是"设备"部分的结果:

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
### <percent>: "<f>%"
### [arg]: arg optional
#Option     "Accel"                 # [<bool>]
#Option     "AccelMethod"           # <str>
#Option     "Backlight"             # <str>
#Option     "CustomEDID"            # <str>
#Option     "DRI"                   # <str>
#Option     "Present"               # [<bool>]
#Option     "ColorKey"              # <i>
#Option     "VideoKey"              # <i>
#Option     "Tiling"                # [<bool>]
#Option     "LinearFramebuffer"     # [<bool>]
#Option     "HWRotation"            # [<bool>]
#Option     "VSync"                 # [<bool>]
#Option     "PageFlip"              # [<bool>]
#Option     "SwapbuffersWait"       # [<bool>]
#Option     "TripleBuffer"          # [<bool>]
#Option     "XvPreferOverlay"       # [<bool>]
#Option     "HotPlug"               # [<bool>]
#Option     "ReprobeOutputs"        # [<bool>]
#Option     "XvMC"                  # [<bool>]
#Option     "ZaphodHeads"           # <str>
#Option     "VirtualHeads"          # <i>
#Option     "TearFree"              # [<bool>]
#Option     "PerCrtcPixmaps"        # [<bool>]
#Option     "FallbackDebug"         # [<bool>]
#Option     "DebugFlushBatches"     # [<bool>]
#Option     "DebugFlushCaches"      # [<bool>]
#Option     "DebugWait"             # [<bool>]
#Option     "BufferCache"           # [<bool>]
Identifier  "Card0"
Driver      "intel"
BusID       "PCI:0:2:0"
EndSection

我的视频驱动程序是下一个(这是lshw -c video命令的结果(

description: VGA compatible controller
product: Atom Processor Z36xxx/Z37xxx Series Graphics & Display
vendor: Intel Corporation
phisic ID: 2
bus information: pci@0000:00:02.0
version: 0e
width: 32 bits
clock: 33MHz
capabilities: pm msi vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:89 memory:d0000000-d03fffff memory:c0000000-cfffffff ioport:f080(size=8) memory:c0000-dffff

拜托,你们能告诉我如何正确配置 mi xorg.conf 文件,根据 mi 视频驱动程序?.

感谢您的提前

根据您的问题描述(视频通常工作正常,但在尝试播放视频时系统冻结(,我为您的 xorg 配置找到了这个建议:

Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "NoAccel" "True"
Option "DRI" "False"
EndSection

如果 X 在其他方面正常工作,则您描述的问题和建议的解决方案都与硬件视频解码器不完全受支持一致。这是一个相当旧的错误报告,所以我不确定这是否仍然是问题所在,或者您是否可能遇到其他问题。 这是我发现的错误报告,其中讨论了如果这不起作用,您可能会尝试的其他一些事情:https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1453298

相关内容

  • 没有找到相关文章

最新更新