Contribute
Register

HDMI input/video not working GA-Z87X-UD5 TH GeForce GTX 760

Status
Not open for further replies.
Joined
Nov 10, 2014
Messages
2
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. 0
Hello.

Just recently updated to El Capitan. I can't seem to get my HDMI monitor to work, nor can I find anyone who's having the same problems on the forums. I also tried changing the SMBios system definition to iMac14,2 to no avail

Hardware:
GA-Z87X-UD5 TH motherboard
GeForce GTX 760 video card
Acer H236HL monitor

any help would be appreciated.
 
Hello.

Just recently updated to El Capitan. I can't seem to get my HDMI monitor to work, nor can I find anyone who's having the same problems on the forums. I also tried changing the SMBios system definition to iMac14,2 to no avail

Hardware:
GA-Z87X-UD5 TH motherboard
GeForce GTX 760 video card
Acer H236HL monitor

any help would be appreciated.
[READ ME FIRST!] Graphics Setup & Troubleshooting
 
Thank you! I apparently couldn't find this the first time around.

for those who have similar problems, this was my solution:

HDMI or DP ports not working
This is usually caused by having GraphicsEnabler=Yes when using Chameleon/Chimera or Inject/NVidia/True when using Clover. Change it to No or False respectively to enable all ports.

Upon booting the computer, I went to the options part of clover and then graphics, then changed the Inject NVidia [X] to Inject NVidia [ ] by hitting enter.

Thank you.
 
Thank you! I apparently couldn't find this the first time around.

for those who have similar problems, this was my solution:

HDMI or DP ports not working
This is usually caused by having GraphicsEnabler=Yes when using Chameleon/Chimera or Inject/NVidia/True when using Clover. Change it to No or False respectively to enable all ports.

Upon booting the computer, I went to the options part of clover and then graphics, then changed the Inject NVidia [X] to Inject NVidia [ ] by hitting enter.

Thank you.

You do know that doesn't change the option permanently, it only changes it for that boot. To change it permanently, you'll need to change it in your Clover config.plist file, located in /EFI/EFI/CLOVER. In the "Graphics" section, change

Code:
  <key>Graphics</key>
  <dict>
    <key>Inject</key>
    <dict>
      <key>ATI</key>
      <false/>
      <key>Intel</key>
      <false/>
      <key>Nvidia</key>
      <[B]true[/B]/>
    </dict>
  </dict>

to

Code:
  <key>Graphics</key>
  <dict>
    <key>Inject</key>
    <dict>
      <key>ATI</key>
      <false/>
      <key>Intel</key>
      <false/>
      <key>Nvidia</key>
      <[B]false[/B]/>
    </dict>
  </dict>
 
Last edited:
Status
Not open for further replies.
Back
Top