본문 바로가기
기타

[Raspberry Pi3] 라즈베리 파이3 모니터(HDMI) 화면 회전하기

by guru_k 2022. 2. 28.
728x90
반응형

xrandr 명령어를 이용해서 화면 회전

아래 명령어를 사용해서 화면을 회전할 수 있다.

xrandr --output HDMI-1 --rotate normal
xrandr --output HDMI-1 --rotate left 
xrandr --output HDMI-1 --rotate right
xrandr --output HDMI-1 --rotate inverted

재부팅 이후에도 영구적으로 화면 회전

재부팅 이후에도 화면 회전을 유지하기 위해선 /boot/config.txt 에 아래와 같이 설정을 추가한다.

1. display_hdmi_rotate 추가

display_hdmi_rotate 결과
0 회전 없음
1 시계 방향으로 90도 회전
2 시계 방향으로 180도 회전
3 시계 방향으로 270도 회전

2. vc4-fkms-v3d 주석 처리

$ sudo vi /boot/config.txt
display_hdmi_rotate=1           # rotate 방향 추가

# For more options and information see
# http://rpf.io/configtxt
# Some settings may impact device functionality. See link above for details

...

# Enable DRM VC4 V3D driver
#dtoverlay=vc4-kms-v3d          # 해당 라인 주석처리
max_framebuffers=2

# Disable compensation for displays with overscan
disable_overscan=1

[cm4]
# Enable host mode on the 2711 built-in XHCI USB controller.
# This line should be removed if the legacy DWC2 controller is required
# (e.g. for USB device mode) or if USB support is not required.
otg_mode=1

[all]

[pi4]
# Run as fast as firmware / board allows
arm_boost=1

[all]
enable_uart=1

3. 재부팅

$ sudo reboot

4. 확인

화면 회전

728x90
반응형

댓글