我在2009年的iMac上也遇到了类似的问题,我的第二台显示器是通过火线转VGA适配器连接的。我尝试了所有方法来解决此问题,在重新引导后将nvram重置为工作状态,但是下次显示器“休眠”时,该问题再次发生。当我尝试手动设置分辨率时,即使按住'option'键以显示更多分辨率,也未列出我的分辨率(1920x1080)。
我在embdev.net上的Andreas Schwarz的这篇帖子中找到了一个解决方案(请参见下面的代码链接,我不能发布两个以上的链接)并不是直接解决该问题,但它确实对我有用。
可以通过覆盖显示器的EDID数据来解决此问题,以告知OS X显示器仅支持RGB。这可以通过使用“ ioreg -l”读取EDID,修改有问题的位(请参阅Wikipedia文章中的规范)并为OS X创建显示配置替代文件来完成。
然后,他提供了一个ruby脚本来创建此替代文件:
#!/usr/bin/ruby
# Create display override file to force Mac OS X to use RGB mode for Display
# see http://embdev.net/topic/284710
#
# Update 2013-06-24: added -w0 option to prevent truncated lines
require 'base64'
data=`ioreg -l -w0 -d0 -r -c AppleDisplay`
edid_hex=data.match(/IODisplayEDID.*?<([a-z0-9]+)>/i)[1]
vendorid=data.match(/DisplayVendorID.*?([0-9]+)/i)[1].to_i
productid=data.match(/DisplayProductID.*?([0-9]+)/i)[1].to_i
puts "found display: vendorid #{vendorid}, productid #{productid}, EDID:\n#{edid_hex}"
bytes=edid_hex.scan(/../).map{|x|Integer("0x#{x}")}.flatten
puts "Setting color support to RGB 4:4:4 only"
bytes[24] &= ~(0b11000)
puts "Number of extension blocks: #{bytes[126]}"
puts "removing extension block"
bytes = bytes[0..127]
bytes[126] = 0
bytes[127] = (0x100-(bytes[0..126].reduce(:+) % 256)) % 256
puts
puts "Recalculated checksum: 0x%x" % bytes[127]
puts "new EDID:\n#{bytes.map{|b|"%02X"%b}.join}"
Dir.mkdir("DisplayVendorID-%x" % vendorid) rescue nil
f = File.open("DisplayVendorID-%x/DisplayProductID-%x" % [vendorid, productid], 'w')
f.write '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">'
f.write "
<dict>
<key>DisplayProductName</key>
<string>Display with forced RGB mode (EDID override)</string>
<key>IODisplayEDID</key>
<data>#{Base64.encode64(bytes.pack('C*'))}</data>
<key>DisplayVendorID</key>
<integer>#{vendorid}</integer>
<key>DisplayProductID</key>
<integer>#{productid}</integer>
</dict>
</plist>"
f.close
在终端中使用“ ruby patch-edid.rb”执行此脚本会创建一个名为“ DisplayXXX”的文件夹
将包含的文件夹移动到/ System / Library / Displays / Overrides中。重新启动后,监视器应显示已使用RGB颜色。
重新启动后,分辨率不正确,但是我能够在显示设置中设置正确的分辨率。
~/Library/Application Support/Preferences/com.apple.desktop.plist
没有更新。但是我不确定这是否就是存储的地方。