web-dev-qa-db-ja.com

1024x768の解像度を強制するにはどうすればよいですか?

ubuntu 9に戻ると、サポートされている最大解像度は960x600でした。xorg.confを編集することにより、1024x768の解像度を得ることができました。私は最近ubuntu 11.10。をインストールしました。ディスプレイパネルで取得できる最大解像度は960x600です。xorgを編集しようとしましたが、xorgがありませんでした。

Linuxコマンドは初めてなので、ステップバイステップのヘルプをいただければ幸いです。

次を含む/etc/X11/xorg.confを追加しました。

Section "Device"
    Identifier    "Configured Video Device"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
    HorizSync       30.0-62.0
    VertRefresh     50.0-70.0
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    Device        "Configured Video Device"
    DefaultDepth    24
    SubSection "Display"
        Depth    24
        Modes     "1024x768" "800x600"
    EndSubSection
EndSection 
6
nepallic
  1. 端末に次のコマンドを入力します。

    gksu gedit /etc/X11/xorg.conf
    
  2. 次のオプションをコピーしてそのファイルに貼り付けます。

    Section "Device"
        Identifier    "Configured Video Device"
    EndSection
    
    Section "Monitor"
        Identifier    "Configured Monitor"
        HorizSync       30.0-62.0
        VertRefresh     50.0-70.0
    EndSection
    
    Section "Screen"
        Identifier    "Default Screen"
        Monitor        "Configured Monitor"
        Device        "Configured Video Device"
        DefaultDepth    24
        SubSection "Display"
            Depth    24
            Modes     "1024x768" "800x600"
        EndSubSection
    EndSection 
    
  3. 編集内容を保存し、再起動します(ログアウトしてから再度ログインするか、再起動します)。

楽しい。

5
Zekz

これはxrandrを使用して75hzで1280x1024のresoultionを強制する私のソリューションです...〜/ .xprofileに以下を配置します

#!/bin/bash
xrandr --newmode "1280x1024_75.00"  138.75  1280 1368 1504 1728  1024 1027 1034 1072 -hsync +vsync
xrandr --addmode VGA1 "1280x1024_75.00"
xrandr --output VGA1 --mode "1280x1024_75.00"

注:VGA1は調整するディスプレイデバイスです。また、cvtコマンドを使用して、必要な/必要な新しいモードラインを作成することもできます。参照URIが見つかりました: https://wiki.ubuntu.com/X/Config/Resolution

3
meaje

私は非常によく似た問題を抱えており、 これらの手順に従って で確実に動作するようになりました。試してみる!

前に使用したのと同じ方法を使用できますが、xorg.confを作成する必要がある場合は、次のようにします。コマンドライン(「ターミナル」)から:

gksudo gedit /etc/X11/xorg.conf

そこに設定を貼り付けて保存します。これでファイルが存在し、以前と同じように編集できるはずです。

ここまで進んでさらにヘルプが必要な場合は、質問を編集してください。続行できます。 :)

1
dpb