web-dev-qa-db-ja.com

1920x1080の解像度を強制する方法-Fedora16、VMPlayer、9800GTX

VMplayerでF16を実行していますが、使用しているドライバーがnvidiaカード用ではないと思います。最大解像度は1280 * 768です。

私のカードはEVGA9800GTX +です--- xorg構成を変更する方法の説明が必要です(これが問題だと思います)。


Gnomeディスプレイ設定で、解像度を1920x1080に設定できるようになりました

Xorg.confでvmwareドライバーを強制すると、私のxorg.confは次のatmのようになります。

Section "Device"
    Identifier "device0"
    VendorName "VMware SVGA II Adapter"
    BoardName "VMware SVGA II Adapter"
    Driver "vmware"
    Option "SWcursor"
EndSection

Section "Screen"
    Identifier "screen0"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 24
Subsection "Display"
    Depth 8
    Modes "1920x1080"
EndSubsection
Subsection "Display"
    Depth 15
    Modes "1920x1080"
EndSubsection
Subsection "Display"
    Depth 16
    Modes "1920x1080"
EndSubsection
Subsection "Display"
    Depth 24
    Modes "1920x1080"
EndSubsection
EndSection

ログイン後、解像度が1920x1080に変更されますxorg.confによって取得される唯一の設定はドライバーですvmwareログイン画面での解像度は1024x768です

2
RzK

部分的に解決されました。vmwareツールは正しくインストールされませんでしたが、vmwareのxorgドライバーはインストールされましたが、xorg.confはそれらのドライバーを指していませんでした。

ドライバをデフォルトのvesaからvmwareに変更しました。解像度の完全なリストがgnome設定で利用できるようになりました。

現時点での私のxorg.conf;

Section "Device"
    Identifier "Display0"
    Driver     "vmware"
EndSection

ドライバーがインストールされていることを確認してください。

yum install xorg-x11-drv-vmware

同じ問題に遭遇した人の助けになることを願っています。 GDMは引き続き640x486で起動しますが、ログイン後のgnome設定が優先され、1920x1080の解像度が表示されます。問題を完全に修正することを諦め、F16を削除してUbuntu Server11.10をインストールしました。また、Ubuntu 11.10デスクトップx86も試しました。これは、vmware-toolsのインストールに関しては問題がありませんでした。

うまくいけば、これはvmware-toolsに問題がある人を助けるでしょう。

Seljuq70のおかげで役立つリンクもあります

http://www.sysprobs.com/Fedora-14-vmware-install-vmware-tools-Fedora-14

http://www.crazyhawt.com/2010/01/25/quick-guide-installing-vmware-tools-with-Fedora-12/


私はこれを試していませんが、GDM解像度の問題はおそらくgrub.confの設定に関係していると思います。vmplayerからF16をすでに削除した後でそれについて読みました。

ただし、ログイン前の解決に問題がある場合は、これを確認してください。 http://pierre.baudu.in/other/grub.vga.modes.html

2
RzK

VMwareをインストールした後、同じ問題に直面しました。私のシステムは:

root@:~#uname -a
FreeBSD 9.2-RELEASE FreeBSD 9.2-RELEASE # 0 r255898: Thu Sep 26 22:50:31 UTC 2013 [email protected]:/usr/obj/usr/src/sys/GENERIC AMD64

OK.Solution:"/ etc/X11/xorg.conf"に移動します

Section "Device"
    Identifier "VMware SVGA"
    Driver "vmware"
EndSection

に変更します

Section "Device"
    Identifier "VMware SVGA"
    Driver "vesa"
EndSection

次に探します

Section "Screen"
    Identifier "Screen 1"
    Device "VMware SVGA"
    Monitor "vmware"
    # Don't specify DefaultColorDepth unless you know what you're
    ...
EndSection

追加"DefaultColorDepth 24"

Section "Screen"
    Identifier "Screen 1"
    Device "VMware SVGA"
    Monitor "vmware"
    DefaultColorDepth 24
    # Don't specify DefaultColorDepth unless you know what you're
    ...
EndSection

次に、セクション"display" where "Depht 24"を探し、値を目的の解像度に変更します。例:

Subsection "Display"
    Depth 24
    Modes "1920x1080"
    ViewPort 0 0
EndSubsection

保存"/ etc/X11/xorg.conf" Leave.Next

root@:~#startx

次へ

root@:~#cat /var/log/Xorg.0.log|grep 1920x1080

このようなものを表示します

(II) vmwlegacy (0): Modeline "vmware-default-1920x1080" x1.0 2.60 1920 1921 1922 2402 1080 1081 1082 1083 (1.1 kHz)

これらの値がどこにあるか、またはあるかどうかを書き留めます。

"1920x1080" 2.60 1920 1921 1922 2402 1080 1081 1082 1083

後で、それらは重宝します。 OK

次に、もう一度"/ etc/X11/xorg.conf"を編集します。

Section "Device"
    Identifier "VMware SVGA"
    Driver "vesa"
EndSection

に変更します

Section "Device"
    Identifier "VMware SVGA"
    Driver "vmware"
EndSection

次に探します

Section "Monitor"
    Identifier "vmware"
    VendorName "VMware, Inc"
    HorizSync 1-10000
    VertRefresh 1-10000
EndSection

アイテムを追加"ModeLine"そしてそこに記録された値を挿入します(Xorg.0.logの出力)

Section "Monitor"
    Identifier "vmware"
    VendorName "VMware, Inc"
    ModeLine "1920x1080" 2.60 1920 1921 1922 2402 1080 1081 1082 1083
    HorizSync 1-10000
    VertRefresh 1-10000
EndSection

保存"/ etc/X11/xorg.conf"

root@:~#startx

喜ぶ! =)