Xrandr 1.4 সহ 2 টি ভিডিও ড্রাইভার সহ দ্বৈত মনিটর


10

আমি 2 টি ভিন্ন ভিন্ন ভিডিও কার্ড ড্রাইভার (i915 এবং এনভিডিয়া) এর সাথে ডুয়াল-স্ক্রিন দেওয়ার চেষ্টা করছি তবে আপনি দেখতে পাচ্ছেন যে xrandr কেবলমাত্র এনভিডিয়া সরবরাহকারীর তালিকাভুক্ত। আমি আর্চ লিনাক্স ব্যবহার করছি। xrandrসরবরাহকারীর তালিকা কোথায় পাওয়া যায় তা আমি ব্যর্থ চেষ্টা করেছি tried

[x@epoch ~]$ xrandr --listproviders
Providers: number : 1
Provider 0: id: 0x279 cap: 0x1, Source Output crtcs: 4 outputs: 6 associated providers: 0 name:NVIDIA-0

[x@epoch /etc/X11]$ sudo lshw -numeric -c video
*-display               
       description: VGA compatible controller
       product: GK104 [GeForce GTX 770] [10DE:1184]
       vendor: NVIDIA Corporation [10DE]
       physical id: 0
       bus info: pci@0000:01:00.0
       version: a1
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress vga_controller bus_master cap_list rom
       configuration: driver=nvidia latency=0
       resources: irq:48 memory:f6000000-f6ffffff memory:e0000000-e7ffffff memory:e8000000-e9ffffff ioport:e000(size=128) memory:f7000000-f707ffff
  *-display
       description: Display controller
       product: Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller [8086:162]
       vendor: Intel Corporation [8086]
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 09
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm bus_master cap_list
       configuration: driver=i915 latency=0
       resources: irq:47 memory:f7400000-f77fffff memory:d0000000-dfffffff ioport:f000(size=64)

এটি আই 915 টি দেখতে না পাবার কোনও কারণ আছে কি?


: এই থ্রেড কটাক্ষপাত bbs.archlinux.org/viewtopic.php?id=168427
SLM

উত্তর:


1

আপনাকে আপনার GPU এর /etc/X11/xorg.conf এ এভাবে সংজ্ঞায়িত করতে হবে:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "<BusID for NVIDIA device here>"
EndSection

Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    # Uncomment this line if your computer has no display devices connected to
    # the NVIDIA GPU.  Leave it commented if you have display devices
    # connected to the NVIDIA GPU that you would like to use.
    #Option "UseDisplayDevice" "none"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

আপনি ফোলিং কমান্ডের সাহায্যে নন-এনভিআইডিএ কার্ড সক্রিয় করতে পারেন:

$ xrandr --setprovideroutputsource modesetting NVIDIA-0
$ xrandr --auto

উত্স: এনভিআইডিআইএ লিনাক্স ডকুমেন্টেশন অধ্যায় 33


1
যদি কেবল ওপিই এখন নিশ্চিত করে, এটি তার পক্ষে কাজ করে ... (বা না)। প্রয়াসের জন্য +1
অ্যালেক্স স্ট্রাজি

0

আমি নিশ্চিত করতে পারি এটি সত্যিই কাজ করে না। এনভিডিয়া ডক্স পৃষ্ঠায় নতুন ইউআরএল এখন http://us.download.nvidia.com/XFree86/Linux-x86/319.12/README/randr14.html (পুরানো কাজ করে না)।

আমার ডুয়াল মনিটর সেটআপ সেটআপটি জিটিএক্স 1080 এবং ইনটেল এইচডি গ্রাফিক্স 4000 (আই 53570) ইন্টিগ্রেটেড গ্রাফিক - প্রতিটি মনিটর রয়েছে।

নিম্নলিখিত xorg.conf আমার জন্য নিখুঁতভাবে কাজ করেছে:

Section "ServerLayout"
        Identifier      "X.org Configured"
        Screen          0  "screen_nvidia"
        Inactive        "card_intel"
        InputDevice     "Mouse0" "CorePointer"
        InputDevice     "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/X11/misc"
        FontPath     "/usr/share/fonts/X11/cyrillic"
        FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
        FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
        FontPath     "/usr/share/fonts/X11/Type1"
        FontPath     "/usr/share/fonts/X11/100dpi"
        FontPath     "/usr/share/fonts/X11/75dpi"
        FontPath     "built-ins"
EndSection

Section "Module"
        Load  "glx"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Device"
        Identifier  "card_nvidia"
        Driver      "nvidia"
        BusID       "PCI:1:0:0"
EndSection

Section "Device"
        Identifier  "card_intel"
        Driver      "modesetting"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "screen_nvidia"
        Device     "card_nvidia"
EndSection

Section "Screen"
        Identifier "screen_intel"
        Device     "card_intel"
EndSection
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.