web-dev-qa-db-ja.com

X.org設定ファイルはどこにありますか?そこでXを構成するにはどうすればよいですか?

Ubuntu 10.10は、グラフィックカード(Intel 82852/855GM)を自動的に検出せず、手動でインストールした後でも対応するIntelドライバーを使用しないように見えるため、Xを手動で構成することを検討しています(そうではありませんか?)。編集する必要がある構成ファイルはどこにありますか?

104
Ivan

Xorg.confはデフォルトではもう存在しません。ただし、作成できます。

リカバリモードで起動し、ルートシェルを選択します。次に実行します:

X -configure

次に:

cp /root/xorg.conf.new /etc/X11/xorg.conf

再起動すると、新しいXorg.confを編集できます。

80
NightwishFan

構成ファイルは/usr/share/X11/xorg.conf.dにあります

それらは:

10-evdev.conf

11-evdev-quirks.conf

50-vmmouse.conf

50-wacom.conf

51-synaptics-quirks.conf

現在のマニュアルを確認してください。

xorg.confファイルを作成すると、このファイルの設定が優先されます。
チェックも この答え

55
desgua

通常、xorg.confはもう必要ありません。

とにかくいくつかのデバイスを設定する必要がある場合は、/usr/lib/X11/xorg.conf.d/(Ubuntu 10.04)または/usr/share/X11/xorg.conf.d/(Ubuntu 10.10以降)にファイルを配置することで設定できます。このディレクトリには既にいくつかのファイルがあります。

xorg.conf.d に関する詳細情報を見つけることができます(ドイツ語ですが、設定ファイルはもちろん英語です)。重要なのは、ファイル名が10より大きい2桁の数字で始まることです。

別のガイド(英語)は x org archive にあります。まだ/ usr/libを使用していますが、それでも問題ありません。

23

使用するcookiecaperの提案

Sudo X :1 -configure

私のために働いた-デスクトップから直接!最終的にエラーが発生しましたが、ホームディレクトリに新しいxorg.conf.newを提供する前ではありません。どうもありがとう!私が試みた他のすべての提案は、ファイルの作成に失敗しました。

あっ、そういえば、

man xorg.conf

ターミナルでは、xorg.confファイルの編集に関する有用な最新の情報(少し簡潔な情報)を提供します。

12
Laysan_A

ほとんどの無料のグラフィックドライバーについては、Ubuntuの最近のリリースではxorg.confファイルは必要ありません。ただし、非常に簡単に生成できます。

Sudo Xorg -configure
1
Oli

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で定義されています。 monitors.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>
1
ngonkalves

失われたAMDユーザーの場合:AMDドライバーはxorg.confを生成するツールを提供することに注意してください

aticonfig --initial
0
Adrian Lopez