방금 Ubuntu Gnome 17.04에서 17.10으로 업그레이드했습니다. 모니터 2개, 최대 해상도가 3200x1800인 노트북, 최대 해상도가 1920x1080인 보조 모니터가 있습니다.
다른 우분투 버전에서는 이 두 가지 해상도를 일치시킬 수 없었기 때문에 내 솔루션은 노트북 해상도를 1920x1080으로 변경하는 것이었고 작동했습니다.
하지만 이 새로운 업데이트를 사용하면 세션에서 로그아웃하려고 시도할 때마다 노트북 해상도를 변경할 수 없습니다. 그리고 다시 접속하면 동일한 3200x1080 해상도를 갖게 됩니다. Xorg 및 wayland로 이를 테스트합니다.
답변1
사용아란드르(xrandr용 그래픽 인터페이스) 쉽게 할 수 있습니다.
1) 당신은 그것을 설치해야합니다:
sudo apt install arandr
3) 스키마를 저장합니다(폴더에 저장됩니다 ~/.screenlayout
).
4) 만일아란드르1920x1080을 설정할 수 없습니다. 저장한 파일을 엽니다(gedit, nano 또는 기타 텍스트 기반 편집기를 사용하여 값을 변경하세요. 실행하고 저장하세요.
#!/bin/sh
xrandr --output VGA-1 --mode 1280x1024 --pos 1920x0 --rotate left --output DVI-D-1-1 --off --output VGA-1-1 --off --output DVI-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-0 --off
5) 다음 스크립트를 ~/.config/autostart/arandr.desktop
파일에 추가합니다.
[Desktop Entry]
Name=arandr.desktop
GenericName="Monitor Schema"
Comment="Script to automatic set resolution"
Exec=/home/<user>/.screenlayout/<file>.sh
Terminal=false
Type=Application
X-Gnome-Autostart=true
6) chmod +x ~/.config/autostart/arandr.desktop
실행이 가능하도록 합니다.
[1]: https://i.stack.imgur.com/Un9sM.png