![LXDE에서 GUI 도구를 사용하여 모니터를 회전하는 방법은 무엇입니까?](https://linux55.com/image/81242/LXDE%EC%97%90%EC%84%9C%20GUI%20%EB%8F%84%EA%B5%AC%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC%20%EB%AA%A8%EB%8B%88%ED%84%B0%EB%A5%BC%20%ED%9A%8C%EC%A0%84%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F.png)
LXDE를 사용하고 있습니다. 모니터의 디스플레이를 회전(예: 90도)할 수 있는 유틸리티, 메뉴 항목 또는 기타 GUI와 유사한 방법이 있습니까? lxrandr
이 옵션은 나에게 제공되지 않는 것 같습니다.
내 시스템은 일종의 Intel 온보드 그래픽 칩인 Debian Stretch 64비트이고 모니터는 Dell U2312입니다. Windows에서 작동합니다.
답변1
arandr
GUI 프런트 엔드를 사용할 수 있습니다 xrandr
. 화면 회전도 활성화됩니다. 데비안 저장소에 있습니다.
알란델의 웹사이트주소또한 대체 GUI 도구가 언급되었지만 최신 버전인지는 확실하지 않습니다.
답변2
이 작업에 적합한 도구는 입니다 xrandr
.
먼저 모니터를 식별하십시오.
$ xrandr --verbose | awk '/ connected/{print $1}'
LVDS1
이제 사용을 시작할 수 있습니다
xrandr --output LVDS1 --rotate left
xrandr --output LVDS1 --rotate inverted
xrandr --output LVDS1 --reflect x
xrandr --output LVDS1 --reflect xy
화면이 너무 복잡해지면 그냥 실행하세요.
xrandr --output LVDS1 --rotate normal
xrandr --output LVDS1 --reflect normal
답변3
먼저 회전하려는 화면이 어떻게 표시되어 있는지 확인해야 합니다.
xrandr -q
출력은 다음과 유사해야 합니다.
Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
1366x768 60.1*+
1360x768 59.8 60.0
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA2 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
그러면 이름 옆에 연결됨이 표시된 연결된 모니터가 표시됩니다. 어느 것을 회전할지 결정하십시오. 다음으로 상황을 바꾸고 싶습니다. 이를 위해 다음 중 하나를 사용합니다.
xrandr --output <label> --rotate right
xrandr --output <label> --rotate left
xrandr --output <label> --rotate inverted
xrandr --output <label> --rotate normal
물론 위 명령에 모니터 라벨을 대체하면 화면을 회전시킬 수 있습니다.