Ubuntu SIS 771/671 Grafiktreiber Konfiguration

Konfigurationen zu Systemfunktionen von Betriebssystemen. Also alles was nicht in die Kategorie Anwendungsprogramme passt aber zur Softwarekategorie gehört. In der Regel CPU Architektur Übergreifend (ARM, PPC, x86, x64)
Post Reply
User avatar
h3rb3rn
Administrator
Posts: 189
Joined: Mon 9. Feb 2015, 23:29

Ubuntu SIS 771/671 Grafiktreiber Konfiguration

Post by h3rb3rn »

Grafiktreiber (alt) für Ubuntu unter

http://axebase.net/blog/2014/08/23/sis- ... xorg-1-15/

Für neuere Ubuntu (besonders 64 Bit Systeme) funktioniert die korrekte Ansteuerung des Displays nur mit einer xorg.conf im Verzeichnis /etc/X11/

Code: Select all

sudo vim /etc/X11/xorg.conf


Code kopieren und in die xorg.conf einfügen.

Code: Select all

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


Bei Verschlüsselten Partitionen hab ich nach dem Starten ein Problem beobachtet. Wenn die Key Abfrage zur Entschlüsselung der Partition mit Grafischen Hintergrund erscheint, dann hängt das System und eine Eingabe ist nicht möglich. Nach einem Neustart, startet das System im Secure-Boot Modus. Im Secure-Boot Modus ist es dann möglich den Key zur Entschlüsselung der Partition einzugeben.

Es empfiehlt sich also den Secure-Boot Modus permanent einzuschalten.
Post Reply