Linux - Debian uname -a >> 출력
Linux HomeLT 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux
나는 Asus TUF FX504 GM을 가지고 있습니다. 인텔 i7 8750H와 GTX 1060이 있는데 문제는.. 기본적으로 HDMI 포트에 연결되어 있는 외부 모니터를 사용할 수 없다는 점이다. 아래 가이드에 명시된 대로 이 프로필을 사용하지 않는 이상 Intel iGPU, UHD 630이 기본으로 사용됩니다.
"nvidia-driver" 패키지를 설치했습니다.
http://us.download.nvidia.com/XFree86/Linux-x86/375.26/README/randr14.html
/etc/X11/xorg.conf.d/10-nvidia.conf
Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection
Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration"
EndSection
Section "Device"
Identifier "intel"
Driver "modesetting"
BusID "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
어쨌든 컴퓨터가 Intel 화면에 표시되도록 이 파일을 변경할 수 있습니까? 또한 "xrandr --auto" 명령을 실행할 때 두 모니터가 모두 표시되도록 nvidia 드라이버를 "비활성"으로 유지해야 합니다.
넣어보려고
Screen 0 "intel"
Inactive "nvidia"
그러나 이것은 작동하지 않습니다. 시험을 마친
Screen 0 "intel"
Screen 1 "nvidia
"비활성 회선이 없습니다. 그것도 그다지 효율적이지 않습니다.
나도 달려야 해
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
시동 후.
누구든지 도와줄 수 있나요?
답변1
조금 늦었지만 문서에 따르면 BusID 형식은 다음과 같습니다.
"%d@%d:%d:%d", bus, domain, device, function
첫 번째 :를 @로 바꿔 보겠습니다.