web-dev-qa-db-ja.com

Ubuntu 12.04でLCDのディスプレイ解像度を追加する方法は? xrandr問題

Ubuntuは初めてです。 Ubuntu 12.04をインストールしましたが、LCDディスプレイに正しい解像度を設定しようとして立ち往生しています。

LCDのネイティブ解像度は1920x1080です

xrandrからの出力は次のとおりです。

$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 720, maximum 4096 x 4096
LVDS1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x720 60.0*+
800x600 60.3 56.2 
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)

次に、新しいモードラインを作成します。

$ cvt 1920 1080 60
1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

ここまでは順調ですね。次に、xrandrを使用して新しいモードを作成します。

$ xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

ただし、何らかの理由で、LCD出力(LVDS1)ではなくVGA(VGA1)出力用に新しいモードが作成されました。

$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 720, maximum 4096 x 4096
LVDS1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x720 60.0*+
800x600 60.3 56.2 
640x480 59.9 
VGA1 disconnected (normal left inverted right x axis y axis)
1920x1080_60.00 (0xbc) 173.0MHz <---------- ????!!!!!!
h: width 1920 start 2048 end 2248 total 2576 skew 0 clock 67.2KHz
v: height 1080 start 1083 end 1088 total 1120 clock 60.0Hz

そのため、LVDS1にモードを追加しようとすると、エラーが発生します。

$ xrandr --addmode LVDS1 "1920x1080_60.00"
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 149 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 25
Current serial number in output stream: 26

その新しいモードをVGA1に追加しても正常に機能しますが、そのVGA1出力は使用しません。

51
SeregaI

Xrandrを使用して、不足している解像度をUbuntu 12.04に追加できます。

まず、cvtを使用して新しい解像度モードを作成します。

Sudo cvt 1920 1080 60

出力の一部は次のようになります。「Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync + vsync "(引用符なし)。

次に、新しい解決モードを宣言します。

Sudo xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

次に、ビデオデバイスの名前を確認します。

Sudo xrandr -q

私の名前は「Virtual1」(仮想マシンの実行)です。デバイスの名前がわかったら、最後に、デバイス/システムに新しい解像度モードを追加できます。

Sudo xrandr --addmode Virtual1 1920x1080_60.00

詳細については、「検出されない解像度の追加」セクションをご覧ください。 https://wiki.ubuntu.com/X/Config/Resolution/#Adding_undetected_resolutions

74
zvineyard

このリンク 助けてくれました。

要するに、xrandrとcvtを実行したように実行してから、次のファイルを作成します。

/usr/share/X11/xorg.conf.d/10-monitor.conf

ファイルで、仕様に従って<>のパラメーターを変更します。

Section "Monitor"
  Identifier "Monitor0"
  <INSERT MODELINE HERE>
EndSection
Section "Screen"
  Identifier "Screen0"
  Device "<INSERT DEVICE HERE>"
  Monitor "Monitor0"
  DefaultDepth 24
  SubSection "Display"
    Depth 24
    Modes "<INSERT MODENAME HERE>"
  EndSubSection
EndSection
15
elomage