1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | $ sudo get-edid |parse-edid This is read-edid version 3.0.1. Prepare for some fun. Attempting to use i2c interface No EDID on bus 0 No EDID on bus 1 No EDID on bus 2 No EDID on bus 3 No EDID on bus 4 No EDID on bus 5 No EDID on bus 7 No EDID on bus 9 3 potential busses found: 6 8 10 Will scan through until the first EDID is found. Pass a bus number as an option to this program to go only for that one. 128-byte EDID successfully retrieved from i2c bus 6 Looks like i2c was successful. Have a good day. Checksum Correct Section "Monitor" Identifier "� @" ModelName "� @" VendorName "AUO" # Monitor Manufactured week 0 of 2012 # EDID version 1.4 # Digital Display DisplaySize 310 170 Gamma 2.20 Option "DPMS" "false" Modeline "Mode 0" 112.60 1600 1664 1706 1954 900 903 906 960 -hsync -vsync EndSection $ sudo get-edid -b 8 |parse-edid 8 This is read-edid version 3.0.1. Prepare for some fun. Attempting to use i2c interface No EDID on bus 0 No EDID on bus 1 No EDID on bus 2 No EDID on bus 3 No EDID on bus 4 No EDID on bus 5 No EDID on bus 7 No EDID on bus 9 3 potential busses found: 6 8 10 Only trying 8 as per your request. 256-byte EDID successfully retrieved from i2c bus 8 Looks like i2c was successful. Have a good day. Checksum Correct Section "Monitor" Identifier "B19-5" ModelName "B19-5" VendorName "FUS" # Monitor Manufactured week 34 of 2008 # EDID version 1.4 # Digital Display DisplaySize 380 300 Gamma 2.20 Option "DPMS" "true" #Not giving standard mode: 1280x1024, 60Hz Modeline "Mode 0" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync Modeline "Mode 1" 189.83 2560 2608 2720 2968 1024 1025 1028 1066 +hsync +vsync Modeline "Mode 2" 189.83 2560 2608 2720 2968 1024 1025 1028 1066 +hsync +vsync EndSection $ sudo get-edid -b 10 |parse-edid 1 0 This is read-edid version 3.0.1. Prepare for some fun. Attempting to use i2c interface No EDID on bus 0 No EDID on bus 1 No EDID on bus 2 No EDID on bus 3 No EDID on bus 4 No EDID on bus 5 No EDID on bus 7 No EDID on bus 9 3 potential busses found: 6 8 10 Only trying 10 as per your request. 256-byte EDID successfully retrieved from i2c bus 10 Looks like i2c was successful. Have a good day. Checksum Correct Section "Monitor" Identifier "B19-5" ModelName "B19-5" VendorName "FUS" # Monitor Manufactured week 34 of 2008 # EDID version 1.3 # Digital Display DisplaySize 380 300 Gamma 2.20 Option "DPMS" "true" Horizsync 30-82 VertRefresh 56-76 # Maximum pixel clock is 140MHz #Not giving standard mode: 1280x1024, 60Hz Modeline "Mode 0" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync EndSection |