Linux Lite Forums

Hardware - Support => Video Cards => Topic started by: lidiaz on August 29, 2014, 03:25:25 PM

Title: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: lidiaz on August 29, 2014, 03:25:25 PM
Hi!

It's my first time using linux and I know nothing about driver installing.

I have an issue with the display resolution (it gives me no video options) and just found out there's actually an incompatibility between some Ubuntu-based distros and the SiS Graphic Cards, specially the 771/671 version.

For some versions of Ubuntu I found the support, but simply couldn't understand it!!!

Does anyone knows if Linux Lite 2.0 has any kind of bug fix, update or anything that could be done to install this SiS graphic card driver?
And, if so, would anyone please try to explain it in a way that a linux begginer completely dummy could understand? =D

Thanks a lot!
Sorry for the bad english..

[]'s
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: sonic on August 29, 2014, 03:40:26 PM
Go to Menu > Settings > Install drivers and check if there are any proprietary drivers to install.
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: Jerry on August 30, 2014, 02:57:14 AM
What resolution do you want?
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: robert on December 22, 2014, 09:52:43 AM
Hi I'm attempting to install LL2.2 on an Advent K1301 which has the SiS chipset in and have same problem low resolution.
Going to give 2.0 a try to see if that will work.

Just tried 2.0 and same.  Live works with a high resolution but when installed goes to 640x480 and no alternatives.
Could I ask why it seems to be okay in live but then not when installed?
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: anon222 on December 22, 2014, 11:01:55 AM
Post the output of
Code: [Select]
lspci | grep VGAIf it's something like this: SiS Graphic Card Support (771/671 PCIE VGA)
check this thread on ubuntuforums.org
http://ubuntuforums.org/showthread.php?t=2167879 (http://ubuntuforums.org/showthread.php?t=2167879)
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: robert on December 23, 2014, 04:14:24 PM
Yep it's  SiS Graphic Card Support (771/671 PCIE VGA)

Still don't understand why it works on live but fails to when installed. 

I understand from other sources that 12.04 should work so which LL is based on this.  is it 1.8?
Thanks
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: anon222 on December 24, 2014, 06:13:17 AM
Linux Lite 1.0.8 is Ubuntu 12.04 LTS based.
However, before installing LL 1.0.8, you can try creating xorg.conf file as suggested in the link I've posted.
Open a Terminal and create a xorg.conf file
Code: [Select]
sudo leafpad /etc/X11/xorg.confIt will open a text editor with elevated user privileges.
Now copy and paste this configuration in it
Code: [Select]
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
Save the file and reboot.
You can select the resolution if you Open the Whisker Menu > Settings > Display
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: robert on December 24, 2014, 10:13:40 AM
Misko thanks for the info, especially the simple way to do it.  People sometimes forget that novices sometimes need to be spoon fed a little early on. 
Thanks again.
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: anon222 on December 24, 2014, 06:41:21 PM
Don't mention it.  Glad to help. All new begining's are hard.
Happy Holidays. :)
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: Scott on January 16, 2015, 10:03:01 AM
@Robert

Did Misko's suggestion in reply #6 fix the problem?

Thanks,
Scott
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: robert on April 11, 2015, 10:50:24 AM
Apolgies for lateness in responding. Hectic times. 
Yes it did work.

I'm still confused as to why live works but once installed it doesn't.
Title: Re: SiS Graphic Card Support (771/671 PCIE VGA)
Post by: platoon408 on August 25, 2017, 05:01:39 PM
Hi!

It's my first time using linux and I know nothing about driver installing.

I have an issue with the display resolution (it gives me no video options) and just found out there's actually an incompatibility between some Ubuntu-based distros and the SiS Graphic Cards, specially the 771/671 version.

For some versions of Ubuntu I found the support, but simply couldn't understand it!!!

Does anyone knows if Linux Lite 2.0 has any kind of bug fix, update or anything that could be done to install this SiS graphic card driver?

Use Linux Lite instead 32 bit the old version 1.0.8 not the new 3.4 which don't do video here's a link I use a very old computer for my TVbetter than nothing. https://sourceforge.net/projects/linuxlite/files/1.0.8/linux-lite-1.0.8-32bit.iso/download
And, if so, would anyone please try to explain it in a way that a linux begginer completely dummy could understand? =D

Thanks a lot!
Sorry for the bad english..

[]'s