次のxrandr
コマンドを使用して、27インチの外部モニターを備えた17インチのラップトップをミラーリングし、プレゼンテーションに使用できるようにします。
xrandr --output LVDS1 --mode 1600x900 --output HDMI1 --mode 1920x1080 --same-as LVDS1
ただし、外部モニター(HDMI1)は1920x1080ではなく1600x900の解像度にフォールバックします。
xrandr出力:
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
LVDS1 connected primary (normal left inverted right x axis y axis
1600x900 60.0 +
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 598mm x 336mm
1920x1080 60.0*+
1680x1050 59.9
1280x1024 75.0 60.0
1440x900 75.0 59.9
1280x960 60.0
1152x864 75.0
1024x768 75.1 70.1 60.0
832x624 74.6
800x600 72.2 75.0 60.3 56.2
640x480 72.8 75.0 66.7 60.0
720x400 70.1
DP1 disconnected (normal left inverted right x axis y axis)
ラップトップでパンしてもかまわない場合は、次のようにしてください。
xrandr --output LVDS1 --rate 60 --mode 1920x1080 --fb 1920x1080 --panning 1920x1080* --output HDMI1 --mode 1920x1080 --same-as LVDS1
xrandr --fb 1920x1080 --output LVDS1 --mode 1600x900 --scale-from 1920x1080 --output HDMI1 --mode 1920x1080 --scale 1x1 --same-as LVDS1
または、別の方法でLVDS1の解像度を基本解像度として使用することもできますが、HDMI1の品質は低くなります。
使用 xrandr --scale-from ...
オプション。
xrandr --output LVDS1 --scale-from 1920x1080
は、外部(HDMI1)モニターの高解像度画像を低解像度のLVDS1ラップトップモニターに縮小します。
モニターの解像度が同じでない場合、xrandr
は--same-as
構成でのデュアルモニターの処理があまり得意ではないようです。両方のモニターの最も高い共通の解像度(このような解像度では満足できないか、存在しない場合もあります)にフォールバックする場合の回避策は、--scale
オプションを使用することです。解像度[monitor 1]
の[resx1]x[resy1]
と解像度[monitor 2]
の[resx2]x[resy2]
が必要な場合は、たとえば
xrandr --output [monitor 1] --mode [resx1]x[resy1] --output [monitor 2] --same-as [monitor 1] --scale `echo "[resx1]/[resx2]" | bc -l`x`echo "[resy1]/[resy2]" | bc -l`
ここで、`echo "[res*1]/[res*2]" | bc -l`
は目的の比率を計算します。ただし、完璧な品質を保証するものではありません。また、上記のように設定された解像度の品質は、[monitor 1]
の解像度によって制限されることに注意してください。
解像度の設定は、--same-as
リレーションを指定した場合に xrandr source が行うことです。
case relation_same_as:
output->x = relation->x;
output->y = relation->y;
やってみました:
xrandr --output HDMI1 --mode 1920x1080 --output LSVD1 --mode 1600x900 --same-as HDMI1
?