Merhabalar,
Monster Tulpar’da İntel GPU + Nvidia RTX3070 ekran kartı bulunmakta.
Benim ortamımda laptop ekranı + ek bir monitör mevcut. Bunları Xorg’a tanıtmak için hazırladığım xorg.conf’u sizlerle paylaşmak istedim. Bu konu altına xorg ile alakalı sorularınızı da sorabilirsiniz.
Özetle Xorg’un çalışma mantığı:
/etc/X11/xorg.conf:
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "ScreenNvidia" # Sadece Nvidia'yı büyük monitörde kullanacağım için:
EndSection
# Drivers
Section "Device"
Identifier "DeviceNvidia"
Driver "nvidia"
BusID "PCI:1:0:0" # lspci komutu ile bulunabilir
EndSection
Section "Device"
Identifier "DeviceIntel"
Driver "modesetting"
BusID "PCI:0:2:0" # lspci komutu ile bulunabilir
EndSection
# Screens
Section "Screen"
Identifier "ScreenNvidia"
Device "DeviceNvidia"
EndSection
Section "Screen"
Identifier "ScreenIntel"
Device "DeviceIntel"
EndSection