dconf write /org/gnome/settings-daemon/plugins/xrandr/active true
何もしなかったし、arandrは私にはかなり理解できないように見える。そうでない場合は、xrandrを試してみる価値があります。ドキュメントはこちらです:http : //www.thinkwiki.org/wiki/Xorg_RandR_1.2#First_discover_what_we_have
そして、私はこれを修正することができました:
xrandr --current
xrandr --output VGA1 --off
xrandr --output VGA1 --auto --right-of LVDS1
これらについて説明させてください。
最初のコマンドは、接続したディスプレイを確認することです。
$ xrandr --current
Screen 0: minimum 320 x 200, current 3200 x 1080, maximum 8192 x 8192
LVDS1 connected 1280x800+0+0 (normal left inverted right x axis y axis) 261mm x 163mm
1280x800 60.0*+
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA1 connected 1920x1080+1280+0 (normal left inverted right x axis y axis) 509mm x 286mm
1920x1080 60.0*+
1280x1024 60.0
1440x900 59.9
1280x800 59.8
1152x864 75.0
1024x768 70.1 60.0
800x600 60.3 56.2
640x480 66.7 60.0
720x400 70.1
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
無関係なデータはたくさんありますが、必要なのは2つのディスプレイの名前だけです。そうですか:
LVDS1 connected
そして
VGA1 connected
そして、VGAが外部モニターであると想定するのは安全だと思います。それでオフにします
xrandr --output VGA1 --off
そして再び
xrandr --output VGA1 --auto --right-of LVDS1
カーソルをラップトップ画面の右端に移動すると、外部モニターに表示されます。成功。