Меню Рубрики

Sis 771 671 driver linux

Устанавливаем видеодрайвер для видеокарт семейства SIS M671/M672 под Ubuntu 11.04

От переводчика, т.е. меня:
Я потратил достаточно много времени на то, чтобы заставить корректно работать видеокарту на моем ASUS K50C. Все решения, которые находились поисковиками, были расчитаны на релиз X-Server’а более ранний (1.8), чем тот, что в Natty Narwhal (1.10). В конце концов я нашел запись на одном из забугорных блогов. И это решение сработало!
Надеюсь мой перевод кому-нибудь поможет потратить время на что-то более полезное.

Итак: как поставить видеодрайвер для видеокарт семейства SIS M671/M672 под Ubuntu 11.04

Как вы знаете, новый релиз X-Server вышел всего пару дней назад, и он уже включен в состав Ubuntu 11.04.
Так вот: этот драйвер будет корректно работать на Ubuntu 11.04, проверено!

Установка несколько отличается от ранних вариантов. Старый драйвер надо было просто скопировать в папку /usr/lib/xorg/modules/drivers/ и настроить xorg.conf, а сейчас вы должны собрать его и настроить самостоятельно. Хотя есть и положительный момент: с xorg.conf не придется возиться заново.
Я полагаю, что вы уже знаете как собирать и устанавливать и имеете для этого все необходимое.

Вот список того, что понадобится:
— git
— xorg-dev
— mesa-common-dev
— libdrm-dev
— libtool

Я забыл имена остальных пакетов, просто напомните мне их и я добавлю остальные -dev пакеты.

Исходники (драйвера, прим.перев.) уже пропатчены мной и вам не требуется их патчить. Папка с патчем доступна всем кто хочет помочь в поддержке актуальности драйвера в будущем.

Ну, давайте откроем терминал и начнем сборку:

$ git clone git://github.com/hellnest/xf86-video-sismedia-0.9.1.git
$ cd xf86-video-sismedia-0.9.1
$ ./configure —prefix=/usr —disable-static
$ make
$ sudo make install

Перезагрузка и готово!

Небольшой комментарий для пользователей с разрешением 1366х768:
Вам потребуется добавить в xorg.conf эти строки (конечно, если их там еще нет):

Section «Device»
Identifier «Configured Video Device»
Option «UseTiming1366» «yes»
EndSection

Section «Monitor»
Identifier «Configured Monitor»
EndSection

Section «Screen»
Identifier «Default Screen»
Monitor «Configured Monitor»
Device «Configured Video Device»
EndSection

Ок, на этом всё. Я надеюсь, что вам понравится этот релиз (драйвера, прим.перев.).
Еще раз спасибо Paulo Zaunoni за этот патч. Я действительно многим вам обязан.

upd: Спасибо всем, кто в q&a на мой вопрос о карме отозвался помощью 🙂

upd2: Решение под X-Server 1.8 (Ubuntu 10.10 и ранее)

upd3: Благодаря хабражителю GamePad64 организован PPA на данный драйвер, а значит установка стала еще проще!

Источник

Ubuntu-desktop.ru

Установи Linux! Стань свободным!

Установка драйвера sis671 (Ubuntu 12.04)

После установки ОС Ubuntu 12.04 возникли проблемы с видеоадаптером sis671 (ноутбук Depo 8510C), но все оказалось не так сложно, удалось получить разрешение экрана 1280×800 60Гц.

Установите все обновления при помощи менеджера обновлений или при помощи терминала:

git clone git://github.com/hellnest/xf86-video-sismedia-0.9.1.git

Section «Device»
Identifier «Configured Video Device»
Driver «sis671»
Option «UseTiming1280» «yes»
EndSectionSection «Monitor»
Identifier «Configured Monitor»
HorizSync 30-83
VertRefresh 50-75
EndSectionSection «Screen»
Identifier «Default Screen»
Monitor «Configured Monitor»
Device «Configured Video Device»
EndSection

Вывод: устранены падения X сервера при просмотре полно-экранного видео, увеличено быстродействие видеокарты.

Источник

fevangelou / install_sis_graphics_on_linux.sh

#! /bin/bash
# Bash script to install SiS Mirage 3+ graphics drivers on Linux
# Supports 671/672MX graphics cards
#
# Created in March 2019
#
# Tested on:
# — Lubuntu 18.04 (32-bit) with X.Org v1.19
# — Xubuntu 18.04 (64-bit) with X.Org v1.20
# installed on a Fujitsu-Siemens Esprimo Mobile v5535 laptop (specs: https://www.notebookcheck.net/Fujitsu-Siemens-Esprimo-Mobile-V5535.9149.0.html)
#
# Execute as root user with:
#
# $ sudo su
# (then type your password)
# $ cd

/ # $ wget —no-check-certificate https://gist.githubusercontent.com/fevangelou/46a2885233c45011ad5c8752f18eac73/raw/79b407db60589d98e78cd131b56a1652756fb7b2/install_sis_graphics_on_linux.sh # $ chmod +x install_sis_graphics_on_linux.sh # $ ./install_sis_graphics_on_linux.sh # # IMPORTANT: # If you X.Org version is not 1.20, edit the variable «XORG_VERSION» below accordingly and re-run the script. # # References: # https://github.com/rasdark/xf86-video-sis671 (driver) # https://ubuntuforums.org/showthread.php?t=2350126&page=4&p=13599531#post13599531 (how-to) XORG_VERSION= » 1.20 « # Check for /etc/X11/xorg.conf if [ ! -f » /etc/X11/xorg.conf » ] ; then touch /etc/X11/xorg.conf fi # Install required packages apt-get -y install build-essential xorg-dev autoconf automake git libtool-bin xutils-dev inxi # Build the driver cd

/ git clone https://github.com/rasdark/xf86-video-sis671.git cd xf86-video-sis671/ git checkout for-xorg- $XORG_VERSION autoreconf automake ./configure —prefix=/usr —disable-static make make install # Check if the drivers were installed ls -la /usr/lib/xorg/modules/drivers/sis671 * echo » « echo » « inxi -G echo » « echo » « if [ -f » /usr/lib/xorg/modules/drivers/sis671_drv.so » ] ; then # Setup the SiS graphics driver cat > » /etc/X11/xorg.conf » EOF Section «Device» Identifier «Configured Video Device» Driver «sis671» EndSection Section «Monitor» Identifier «Configured Monitor» EndSection Section «Screen» Identifier «Default Screen» Monitor «Configured Monitor» Device «Configured Video Device» EndSection EOF # Now reboot echo » « echo » « echo » *** The installation for SiS graphics drivers is now complete *** « echo » « echo » === ——————————————————— === « echo » === PLEASE REBOOT YOUR SYSTEM NOW === « echo » === ——————————————————— === « echo » « else echo » « echo » « echo » *** The installation for SiS graphics drivers FAILED *** « echo » « echo » === —————————————————- === « echo » === Check your X.Org version! === « echo » === —————————————————- === « echo » « fi

This comment has been minimized.

Copy link Quote reply

fevangelou commented Mar 27, 2019 •

Screenshot of SiS 672 on Xubuntu 18.04 (64-bit) with Qogir theme:

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 26, 2019 •

Hi,
I have Asus k50c notebook with sis mirage 3+ and I wanted install a lightweight linux distro, like lubuntu or xubuntu. So I installed xubuntu 18.04 like you, After the installation of Xubuntu 18.04 i ran your script in terminal. First I wrote sudo su, then cd

/ chmod +x and then the script. After script installation I restarted my computer (Script was completed with no errors) And after restarting a computer I have still fucking 640X480 res. I dont get it, I did everything right, but no native res. Is a problem, that my laptop has 1366×768 resolution, and you have 1280×800? Pls help man.

This comment has been minimized.

Copy link Quote reply

fevangelou commented May 27, 2019

Did you check for your installed X.Org version? See the comments in the script.

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 27, 2019

First of all. Thank you for fast reply. Im glad you are active. Can you please tell me how can I check it? I am the Linux beginner so I dont know these commands. Is that inxi -G? In that case it shows me Display server: X11 (X. Org. 1.20.1) in Xubuntu 18.04.

This comment has been minimized.

Copy link Quote reply

fevangelou commented May 27, 2019

Install Screenfetch with «sudo apt-get install screenfetch» and then just run it with «screenfetch». See the screenshot above. At the lower part the X.Org version is referenced clearly (1.20 in my case).

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 27, 2019

I have it same as you. X.Org 1.20.1 so i dont know man.

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 27, 2019

This comment has been minimized.

Copy link Quote reply

fevangelou commented May 27, 2019

Try manually changing the resolution and make sure the refresh rate is not so high (set it to 60Hz if possible).

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 27, 2019

BTW: screenshot is after clean system install. so I havent installed this script yet.

This comment has been minimized.

Copy link Quote reply

fevangelou commented May 27, 2019

Then follow the instructions to the letter to install the script.

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 27, 2019

Yeah, I was thinking on the same thing. But pls tell me how? Can you give me a link on a some website?

This comment has been minimized.

Copy link Quote reply

TheSawage commented May 27, 2019

Ok now im gonna install your script, after the installation, I will tell you more.

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

  • По поддержки windows не удалось сохранить на выбранном диске mac os
  • Плюсы и минусы операционной системы mac os
  • Плюсы и минусы mac os и windows
  • Плюсы и минусы mac os sierra
  • Плюсы mac os по сравнению с windows