시스템: 리눅스 민트 19.1 시나몬.
하드웨어: 노트북 화면: 3840x2160 + HDMI 화면 1920x1080;
그래픽 프로세서:엔비디아,엔비디아 지포스 GTX 1060,최대 Q 값 설계, 6GB비디오 메모리
일반 설정에서 듀얼 DPI를 활성화했습니다. 노트북 모니터에서는 잘 작동했지만 이제 외부 풀 HD 모니터가 연결되었으므로 두 배나 많은 내용을 볼 수 있습니다.
현재 스케일링을 수정하기 위해 다음 명령을 사용합니다.
xrandr --output HDMI-0 --scale 2x2
내 의도는 재부팅 등을 통해 영구적이고 내구성을 갖도록 만드는 것입니다.
이 작업을 어떻게, 어떤 파일에서 수행할 수 있나요?
하나를 찾아보았 xorg.conf
으나 얻은 것은 이것이 전부입니다.
$ locate -i xorg.conf
/usr/share/X11/xorg.conf.d
/usr/share/X11/xorg.conf.d/10-amdgpu.conf
/usr/share/X11/xorg.conf.d/10-nvidia.conf
/usr/share/X11/xorg.conf.d/10-quirks.conf
/usr/share/X11/xorg.conf.d/10-radeon.conf
/usr/share/X11/xorg.conf.d/11-nvidia-prime.conf
/usr/share/X11/xorg.conf.d/40-libinput.conf
/usr/share/X11/xorg.conf.d/70-wacom.conf
/usr/share/doc/xserver-xorg-video-intel/xorg.conf
/usr/share/man/man5/xorg.conf.5.gz
/usr/share/man/man5/xorg.conf.d.5.gz
저는 Nvidia를 사용하므로 이 두 가지가 관련될 수 있습니다.
$ cat /usr/share/X11/xorg.conf.d/10-nvidia.conf
Section "OutputClass"
Identifier "nvidia"
MatchDriver "nvidia-drm"
Driver "nvidia"
Option "AllowEmptyInitialConfiguration"
ModulePath "/usr/lib/x86_64-linux-gnu/nvidia/xorg"
EndSection
이:
$ cat /usr/share/X11/xorg.conf.d/11-nvidia-prime.conf
# DO NOT EDIT. AUTOMATICALLY GENERATED BY gpu-manager
Section "OutputClass"
Identifier "Nvidia Prime"
MatchDriver "nvidia-drm"
Driver "nvidia"
Option "AllowEmptyInitialConfiguration"
Option "IgnoreDisplayDevices" "CRT"
Option "PrimaryGPU" "Yes"
ModulePath "/x86_64-linux-gnu/nvidia/xorg"
EndSection
답변1
해결책을 시도해 보셨나요? https://enochtsang.com/articles/scaling-two-monitors- Differently-on-linux-mint ?
귀하의 경우 홈 디렉토리에라는 파일을 만들고 .xsession
터미널에서 사용할 수 있습니다touch ~/.xsession
둘째, 텍스트 편집기로 열고 다음을 붙여넣습니다.
#!/usr/bin/env bash
xrandr --output HDMI-0 --scale 2x2
파일을 실행 가능하게 만들기chmod +x ~/.xsession
시작 응용 프로그램으로 추가신청 시작>> (+) >> 사용자 정의 명령.
Name: Displays
Command: /home/your_user_name/.xsession
Comment:
Startup delay: 0
또한 Mint 포럼이나 Github에 댓글을 게시하는 것도 나쁘지 않으므로 Linux Mint 팀은 이 기능을 완전히 구현했습니다.