Ivan Asked: 2010-09-24 16:59:24 +0800 CST2010-09-24 16:59:24 +0800 CST 2010-09-24 16:59:24 +0800 CST X.org 配置文件在哪里?我如何在那里配置 X? 772 由于 Ubuntu 10.10 似乎既没有自动检测到我的显卡(英特尔 82852/855GM),也没有使用相应的英特尔驱动程序,即使在手动安装之后,我正在考虑手动配置 X(我不应该吗?)。在哪里可以找到我需要编辑的配置文件? xorg intel-graphics 8 个回答 Voted Best Answer NightwishFan 2010-09-24T17:17:57+08:002010-09-24T17:17:57+08:00 默认情况下 xorg.conf 不再存在。你可以创建一个。 启动进入恢复模式并选择 Root Shell。然后运行: X -configure 然后: cp /root/xorg.conf.new /etc/X11/xorg.conf 重新启动,您可以编辑新的 Xorg.conf。 desgua 2011-04-29T18:14:02+08:002011-04-29T18:14:02+08:00 配置文件位于/usr/share/X11/xorg.conf.d 他们是: 10-evdev.conf 11-evdev-quirks.conf 50-vmmouse.conf 50-wacom.conf 51-突触-quirks.conf 检查当前手册。 如果您创建xorg.conf文件,则以该文件的配置为准。 还要检查这个答案。 Wolfgang Silbermayr 2011-04-29T00:40:31+08:002011-04-29T00:40:31+08:00 通常,你不再需要了xorg.conf。 如果您仍然需要配置某些设备,您可以通过在/usr/lib/X11/xorg.conf.d/(Ubuntu 10.04) 或/usr/share/X11/xorg.conf.d/(自 Ubuntu 10.10) 中放置一个文件来实现。此目录中已经有一些文件。 您可以在xorg.conf.d上找到更多信息(德文,但配置文件当然是英文)。重要的是文件名应该以大于 10 的两位数开头。 另一个英文指南在x org 存档上。它仍在使用 /usr/lib 但它很好。 Laysan_A 2012-06-16T16:22:28+08:002012-06-16T16:22:28+08:00 cookiecaper 的使用建议 sudo X :1 -configure 为我工作 - 就在桌面上!它终于出错了,但在我的主目录中提供了一个不错的新 xorg.conf.new 之前。谢谢cc!我尝试过的所有其他建议都未能生成文件。 哦,顺便说一句, man xorg.conf 在终端中将提供一堆关于编辑 xorg.conf 文件的有用且最新的信息(可能有点简洁)。 ngonkalves 2013-05-07T14:18:17+08:002013-05-07T14:18:17+08:00 这对我来说很好用 Nvidia Optimus (Bumblebee) 没有任何特殊配置,只是默认值: #!/bin/bash # # Source: https://bbs.archlinux.org/viewtopic.php?id=140315 # r=`zenity --width 400 --height 250 --title "Display setup" --text "Choose display mode:" --list --column "Modes" "Internal" "External" "Clone" "Extended"` case "$r" in Internal) xrandr --output LVDS1 --auto \ --output VGA1 --off ;; External) xrandr --output LVDS1 --off \ --output VGA1 --auto ;; Clone) xrandr --output LVDS1 --auto \ --output VGA1 --auto --same-as LVDS1 ;; Extended) xrandr --output LVDS1 --auto --primary \ --output VGA1 --auto --left-of LVDS1 ;; esac 监视器 LVDS1 和 VGA1 在 ~/.config/monitors.xml 中定义。有关 monitor.xml 的更多信息,请查看http://www.sudo-juice.com/dual-monitor-settings-in-ubuntu/。 例子: <monitors version="1"> <configuration> <clone>no</clone> <output name="LVDS1"> <vendor>AUO</vendor> <product>0x213c</product> <serial>0x00000000</serial> <width>1366</width> <height>768</height> <rate>60</rate> <x>1280</x> <y>256</y> <rotation>normal</rotation> <reflect_x>no</reflect_x> <reflect_y>no</reflect_y> <primary>yes</primary> </output> <output name="VGA1"> <vendor>GSM</vendor> <product>0x43ff</product> <serial>0x00035928</serial> <width>1280</width> <height>1024</height> <rate>60</rate> <x>0</x> <y>0</y> <rotation>normal</rotation> <reflect_x>no</reflect_x> <reflect_y>no</reflect_y> <primary>no</primary> </output> <output name="HDMI1"> </output> <output name="DP1"> </output> </configuration> </monitors> Oli 2011-04-29T15:53:36+08:002011-04-29T15:53:36+08:00 是的,对于大多数免费图形驱动程序来说,最新版本的 Ubuntu 不需要 xorg.conf 文件。你可以很容易地生成一个: sudo Xorg -configure Adrian Lopez 2015-07-28T12:10:52+08:002015-07-28T12:10:52+08:00 对于丢失的amd用户:请注意,amd驱动程序提供了一个生成xorg.conf的工具 aticonfig --initial Bendersr 2020-02-05T18:23:28+08:002020-02-05T18:23:28+08:00 对于运行 Ubuntu 19.10 的用户,我可以通过引导进入恢复,选择 root shell,然后运行来确认添加配置文件: X -configure 然后输入: cp /root/xorg.conf.new /etc/X11/xorg.conf 将允许您编辑配置文件,并修复常见的双显示器鼠标闪烁问题。
默认情况下 xorg.conf 不再存在。你可以创建一个。
启动进入恢复模式并选择 Root Shell。然后运行:
然后:
重新启动,您可以编辑新的 Xorg.conf。
配置文件位于
/usr/share/X11/xorg.conf.d
他们是:
10-evdev.conf
11-evdev-quirks.conf
50-vmmouse.conf
50-wacom.conf
51-突触-quirks.conf
检查当前手册。
如果您创建xorg.conf文件,则以该文件的配置为准。
还要检查这个答案。
通常,你不再需要了
xorg.conf
。如果您仍然需要配置某些设备,您可以通过在
/usr/lib/X11/xorg.conf.d/
(Ubuntu 10.04) 或/usr/share/X11/xorg.conf.d/
(自 Ubuntu 10.10) 中放置一个文件来实现。此目录中已经有一些文件。您可以在xorg.conf.d上找到更多信息(德文,但配置文件当然是英文)。重要的是文件名应该以大于 10 的两位数开头。
另一个英文指南在x org 存档上。它仍在使用 /usr/lib 但它很好。
cookiecaper 的使用建议
为我工作 - 就在桌面上!它终于出错了,但在我的主目录中提供了一个不错的新 xorg.conf.new 之前。谢谢cc!我尝试过的所有其他建议都未能生成文件。
哦,顺便说一句,
在终端中将提供一堆关于编辑 xorg.conf 文件的有用且最新的信息(可能有点简洁)。
这对我来说很好用 Nvidia Optimus (Bumblebee) 没有任何特殊配置,只是默认值:
监视器 LVDS1 和 VGA1 在 ~/.config/monitors.xml 中定义。有关 monitor.xml 的更多信息,请查看http://www.sudo-juice.com/dual-monitor-settings-in-ubuntu/。
例子:
是的,对于大多数免费图形驱动程序来说,最新版本的 Ubuntu 不需要 xorg.conf 文件。你可以很容易地生成一个:
对于丢失的amd用户:请注意,amd驱动程序提供了一个生成xorg.conf的工具
对于运行 Ubuntu 19.10 的用户,我可以通过引导进入恢复,选择 root shell,然后运行来确认添加配置文件:
然后输入:
将允许您编辑配置文件,并修复常见的双显示器鼠标闪烁问题。