Can a NVIDIA GeForce GT 330M support 2560x1440 (16:9) resolution?

395

Same problem here with the monitor FSM-270YG LED (same seller). When it connects to the MacBook Pro (Early 2011 - AMD Radeon HD 6490M under Lion) the macbook immediately crashes and asks to reboot.

REASON: Apparently this monitor uses "Bypass" and is NOT compatible with the MacBook and a bunch of graphics cards Check info in:

enter image description here

Seems to work udern linux http://isotope11.com/blog/getting-the-fsm-270yg-led-korean-27-ips-panels-working-with-the-nvidia-driver-in-your-xorg-dot-conf

If it will ever work with the macbook ... is still an open question.

Share:
395

Related videos on Youtube

EastsideDev
Author by

EastsideDev

Updated on September 18, 2022

Comments

  • EastsideDev
    EastsideDev almost 2 years
    OS: Windows 10
    Rails 5.1.3
    Ruby 2.4.1 (x64)
    

    In addition, I installed msys and added it to the path, it has all the tools needed.

    I downloaded mysql-connector-c-6.1.3-winx64.zip and unzipped it into the directory c:\MySQLConnector

    I then did:

    gem uninstall mysql2
    

    and uninstalled all the mysql2 versions

    I then did:

    cd c:\MySQLConnector\lib
    rm libmysql.def
    rm libmysql.lib
    gendef.exe libmysql.dll
    dlltool -v --dllname libmysql.dll --def libmysql.def --output-lib libmysql.lib
    rm C:\Ruby24-x64\bin\libmysql.dll
    rm C:\Ruby24-x64\bin\libmysql.lib
    copy libmysql.dll C:\Ruby24-x64\bin
    copy libmysql.lib C:\Ruby24-x64\bin
    gem install mysql2 --platform=ruby -- '--with-mysql-dir="C:/MySQLConnector"'
    

    It completed with no error messages

    This is what I have in my Gemfile:

    gem 'mysql2', '>= 0.3.18', '< 0.5'
    

    I deleted the Gemfile.lock file, and then:

    bundle install
    

    Then

    rails s
    

    To which I get the following error message:

    C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/mysql2-0.4.9-x64-mingw32/lib/mysql2/mysql2.rb:2:in `require': cannot load such file -- mysql2/2.4/mysql2 (LoadError)
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/mysql2-0.4.9-x64-mingw32/lib/mysql2/mysql2.rb:2:in `<top (required)>'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/mysql2-0.4.9-x64-mingw32/lib/mysql2.rb:31:in `require'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/mysql2-0.4.9-x64-mingw32/lib/mysql2.rb:31:in `<top (required)>'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler/runtime.rb:82:in `require'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler/runtime.rb:82:in `block (2 levels) in require'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler/runtime.rb:77:in `each'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler/runtime.rb:77:in `block in require'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler/runtime.rb:66:in `each'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler/runtime.rb:66:in `require'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/bundler-1.15.4/lib/bundler.rb:108:in `require'
        from C:/myapp/config/application.rb:17:in `<top (required)>'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/commands/server/server_command.rb:129:in `require'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/commands/server/server_command.rb:129:in `block in perform'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/commands/server/server_command.rb:126:in `tap'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/commands/server/server_command.rb:126:in `perform'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-0.20.0/lib/thor/command.rb:27:in `run'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-0.20.0/lib/thor/invocation.rb:126:in `invoke_command'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/thor-0.20.0/lib/thor.rb:387:in `dispatch'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/command/base.rb:63:in `perform'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/command.rb:44:in `invoke'
        from C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/railties-5.1.3/lib/rails/commands.rb:16:in `<top (required)>'
        from bin/rails:4:in `require'
        from bin/rails:4:in `<main>'    
    

    Anyone else using Windows 10, with Rails 5 and Mysql2?

    • user142485
      user142485 almost 12 years
      What are you using to connect the laptop to the monitor? Have you tried connecting anything else to it? You state two different resolutions for the monitor: 2560x1440 and 1560x1440.
    • kcurtin
      kcurtin almost 12 years
      my mistake, I updated the post. The external monitor is 2560x1440. I am connecting it to my MacBook Pro via a MiniDP to DVI adapter plus a DVI-Dual link cable
    • Michael Hampton
      Michael Hampton almost 12 years
      Your eBay link is dead, as well. I've submitted a correction.
    • kcurtin
      kcurtin almost 12 years
      Thanks, oops, didn't read the last part. I've updated the link again to show the listing.
    • user142485
      user142485 almost 12 years
      It sounds like there are a lot of variables here, start by making sure your monitor works with another connection/making sure your laptop output concoction is working.
  • kcurtin
    kcurtin almost 12 years
    the MiniDP to DVI adaptar and Dual-link DVI cable work fine when hooked up to another monitor. I don't have another computer to test the monitor with..i am looking in to trying a different type of DVI cable to get an analog signal
  • kcurtin
    kcurtin almost 12 years
    i tried hooking the monitor up to my cable box via a HDMI to DVI cable (HDMI out from the cable box and the DVI connection into the monitor). The monitor was awake (the screen was lit and the power right was blue instead of the red it is when sleeping) which doesn't happen when hooked up to my laptop. The output on the screen was "scrambled", but I'm not sure the cable box is supposed to be compatible. Picture of output here: cl.ly/image/1X2V2V0h2q0E
  • kcurtin
    kcurtin almost 12 years
    bummer.. really disappointing. thanks for the info. now I have to look in to shipping back to korea :/