문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
|
linux:xrandr [2020/10/18 21:43] kwon37xi |
linux:xrandr [2023/11/22 09:45] (현재) kwon37xi [XRandr] |
||
|---|---|---|---|
| 줄 2: | 줄 2: | ||
| * Linux 화면 / display / monitor 해상도 정보 보기/ | * Linux 화면 / display / monitor 해상도 정보 보기/ | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| * xrandr 명령을 로그인시 마다 실행하고자 한다면 '' | * xrandr 명령을 로그인시 마다 실행하고자 한다면 '' | ||
| + | * [[linux: | ||
| ===== 해상도 변경 ===== | ===== 해상도 변경 ===== | ||
| 줄 10: | 줄 12: | ||
| # 모니터가 두 대 이상일 때 그냥 해상도만 지정하면 Mirror방식(동일 화면)으로 됨 | # 모니터가 두 대 이상일 때 그냥 해상도만 지정하면 Mirror방식(동일 화면)으로 됨 | ||
| xrandr --output VGA1 --mode 1024x768 --rate 60 | xrandr --output VGA1 --mode 1024x768 --rate 60 | ||
| + | </ | ||
| + | |||
| + | ===== 모니터 주사율(refresh rate hz) 설정 ===== | ||
| + | * [[https:// | ||
| + | |||
| + | <code sh> | ||
| + | xrandr --output DP-1-1 --mode 3840x2160 --rate 60.00 | ||
| </ | </ | ||
| 줄 27: | 줄 36: | ||
| </ | </ | ||
| - | ===== Scale ===== | + | ===== Scale / HiDPI ===== |
| * [[https:// | * [[https:// | ||
| - | * '' | + | * '' |
| <code sh> | <code sh> | ||
| xrandr \ | xrandr \ | ||
| 줄 35: | 줄 44: | ||
| --output DP-2 --pos 3840x0 --scale 2x2 \ | --output DP-2 --pos 3840x0 --scale 2x2 \ | ||
| --output eDP-1-1 --off | --output eDP-1-1 --off | ||
| + | </ | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | <code sh> | ||
| + | xrandr --dpi 120 | ||
| + | </ | ||
| + | * The recommended values are 96 (default value), 120 (25% higher), 144 (50% higher), 168 (75% higher) and 192 (100% higher). | ||
| + | |||
| + | ===== 밝기 조절 - brightness ===== | ||
| + | * [[https:// | ||
| + | |||
| + | <code sh> | ||
| + | xrandr -q | grep " connected" | ||
| + | # 목록에서 모니터 이름 확인 | ||
| + | |||
| + | xrandr --output LVDS1 --brightness 0.5 # 1.0 이 max | ||
| </ | </ | ||
| 줄 47: | 줄 73: | ||
| ===== 참조 ===== | ===== 참조 ===== | ||
| - | * [[https://nilsonsales.wordpress.com/2019/10/31/changing-monitor-dpi-on-kde-using-xrandr/|Changing monitor DPI on KDE using ‘xrandr’ – Experimental Blog]] | + | * [[https://www.maketecheasier.com/change-screen-resolution-ubuntu/ |
| - | * [[https://blog.summercat.com/configuring-mixed-dpi-monitors-with-xrandr.html|Configuring mixed DPI monitors with xrandr | + | * [[https:// |
| + | * [[https://www.baeldung.com/linux/ | ||