web-dev-qa-db-ja.com

nVidiaの新しい画面解像度を追加する方法は?

Thinkpad(W510)LCDに画面解像度を追加するにはどうすればよいですか?解像度が少し異なる外部ディスプレイのクローンを作成したい。両方のディスプレイに対してcommonである最適な解像度は非常に低いです。

以前はATIカードを使用していたため、xrandrを使用して新しい解像度を追加しましたが、nVidiaを使用する新しいマシンではどうにか機能しません。

誰かのヒント?

私は非常にシンプルな(デフォルトの)xorg.confファイルを使用しています:

Section "Screen"
    Identifier  "Default Screen"
    DefaultDepth    24
EndSection

Section "Module"
    Load    "glx"
EndSection

Section "Device"
    Identifier  "Default Device"
    Driver  "nvidia"
    Option  "NoLogo"    "True"
EndSection
2
Yonatan Maman

[システム]-> [管理]-> [追加ドライバー]を試しました。これにより、Nvidiaグラフィックカード用のカスタムソフトウェアもインストールされます。

Xorg.confの画面セクションの下に以下を追加してみてください:

Section "Screen"
    ...
    SubSection     "Display"
        Depth       24
        Virtual     xdim ydim #your resolution x, y
    EndSubSection
EndSection
2
topless

次のようなものが欲しいと思います:

 例11.1ファイルの画面セクション/etc/X11/xorg.conf

セクション "Screen" 
 DefaultDepth 16 
 SubSection "Display" 
 Depth 16 
モード "1152x864" "1024x768" "800x600" 
仮想1152x864 
 EndSubSection 
 SubSection "Display" 
 Depth 24モード "1280x1024" 
 EndSubSection 
 SubSection "Display" 
 Depth 32モード "640x480" 
 EndSubSection 
 SubSection "Display" 
 Depth 8モード "1280x1024" 
 EndSubSection 
デバイス "Device [0]" 
識別子 "Screen [0]" 
 Monitor "Monitor [0]" 
 EndSection 

ここにあります:

http://www-uxsup.csx.cam.ac.uk/pub/doc/suse/suse9.3/suselinux-adminguide_en/sec.x11.optimieren.html
かつて、ハードウェアの損傷を引き起こす可能性があるため、モニター機能よりも高い解像度を設定しないように注意するように言われました。

1
desgua