답변:
xorg.conf 자체는 xserver-1.16에서 더 이상 사용되지 않습니다 . 이제 구성이 자동 감지되고 관리자 / 사용자가 /etc/X11/xorg.conf.d/
** 에서 구성을 수정할 수 있습니다.
당신이 수동으로 그 자리에서 회전 모니터를 원한다면 가장 좋은 도구 xrandr
입니다.
예를 들면 다음과 같습니다. xrandr --output DP1-2 --auto --right-of DP1-1 --rotate left
DP1-2의 모니터를 모니터 DP1-1의 오른쪽 위치로 설정하고 왼쪽으로 회전시킵니다.
** 내 50-monitor.conf :
Section "Monitor"
Identifier "eDP1"
EndSection
Section "Monitor"
Identifier "DP1-1"
Option "RightOf" "eDP1"
Option "PreferredMode" "1920x1080"
Option "Primary" "True"
EndSection
Section "Monitor"
Identifier "DP1-2"
Option "RightOf" "DP1-1"
Option "Rotate" "left"
Option "PreferredMode" "1920x1080"
EndSection
Section "Monitor"
Identifier "HDMI1"
Option "RightOf" "eDP1"
Option "PreferredMode" "1920x1080"
Option "Primary" "True"
EndSection