web-dev-qa-db-ja.com

Ubuntu 14.04の画面解像度が低すぎる(SiS 671グラフィックスカード)

Ubuntu 14.04をインストールしましたが、画面の解像度が低すぎます。新しいものを追加しようとしましたが、

xrandr: Failed to get size of gamma for output default

私は試した :

$ xrandr -q
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected primary 640x480+0+0 0mm x 0mm
   640x480        73.0* 
  1024x768_60.00 (0x194)   63.5MHz
        h: width  1024 start 1072 end 1176 total 1328 skew    0 clock   47.8KHz
        v: height  768 start  771 end  775 total  798           clock   59.9Hz

(Ubuntu 13.10 13.04 12.04ではこの問題はありませんでした)

$ xrandr --newmode "1024x768_60.00"   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync
xrandr: Failed to get size of gamma for output default

$ lspci | grep VGA
01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter (rev 10)

================================================== ==========================昨日Ubuntu 12.04でアップデートを行ったところ、 1204_HWE_EOLが原因で画面解像度が台無しになりました

私はUbuntu 14.04に戻って、ニースの画面解像度を取得する唯一の方法は、リカバリメニューから起動して起動を再開することです。

11
unfamous

私は解像度に関して同じ問題を抱えていました。 VirtualBoxを使用していますが、解像度には1つの解像度オプションしかありませんでした。

  1. 検索バーに行って追加のドライバーを検索しました
  2. 次に、x86仮想化ソリューションを使用-dkmsのゲスト追加モジュールソースをクリックしました
  3. 最後に、Ubuntuを実行している仮想マシンを再起動しました。

起動するとすぐに、解像度はすでに修正されています。

5
Ronnie

/etc/X11/xorg.confの作成/編集:

Section "Device"
  Identifier "Generic Video Card"
    VendorName  "Silicon Integrated Systems [SiS]"
        BoardName   "771/671 PCIE VGA Display Adapter"
    Busid "PCI:1:0:0"
    Driver "vesa"
    Screen 0
        Option "UseFBDev" "true"
        Option "DPMS"
        Option "ShadowFB"
        Option "MaxXFBMem"
        VideoRam 262016
        Option "RenderAccel" "true"
        Option "AllowGLXWithComposite" "true"
        Option "backingstore" "true"
        Option "AddARGBGLXVisuals" "True"

EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
    Vendorname    "Generic LCD Display"
    Modelname    "LCD Panel 1280x800"
    HorizSync 20-107
        VertRefresh 50-185
  modeline  "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
  modeline  "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
  modeline  "1280x768@60" 80.14 1280 1344 1480 1680 768 769 772 795 -hsync +vsync
  modeline  "1280x720@60" 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync
  modeline  "1280x800@60" 83.46 1280 1344 1480 1680 800 801 804 828 -hsync +vsync
    Gamma    1.0
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    Device        "Configured Video Device"
    Defaultdepth    24
    SubSection "Display"
        Depth    24
        Virtual    1280    768
        Modes        "1280x768@60"    "1280x720@60"    "800x600@60"    "1280x800@60"    "800x600@56"
    EndSubSection
EndSection

Section "Module"
    Load "dri"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx" # 3D layer
    Load "GLcore"
    Load "i2c"
    Load "bitmap"
    Load "ddc"
    Load "int10"
    Load "vbe"
    Load "speedo"
    Load "record"
EndSection

Section "DRI"
        Mode 0666
EndSection

これは私のために働いた。 ( buntuフォーラムのこのスレッド で見た)

4
chesterman

Sis 671はUbuntuでサポートされていません。少なくとも解像度を変更できるが、Ubuntu 12.0.2以降では機能しない(悪い)ドライバーがあります。 12.04の古いバージョンおよびその他の派生物は引き続き動作します。

このページ Ubuntuのインストールガイドが含まれていましたが、しばらく前にLinux Mintガイドに変更されました。

運が良ければ、Ubuntu 12.04でも動作します。

1年前、Xubuntu 12.04で動作するようになりましたが、その方法を思い出せません。

同じ問題を抱えた古いLaunchpadバグレポートを見つけました。多分 このコメント の解決策はあなたのために働く:

0
user222723