Установка драйвера SIS671 для Xubuntu 14.04-15.04

Для установки драйвера для видеокарты SIS671 в терминале выполните следующие команды:

wget https://github.com/gununu/xf86-video-sis-stable/archive/master.zip
unzip master.zip
cd xf86-video-sis-stable-master/

sudo apt-get install xorg-dev xutils-dev mesa-common-dev libdrm-dev libtool 
aclocal
autoheader
libtoolize
automake --add-missing
autoconf
./configure --prefix=/usr --disable-static
make
sudo make install

Далее измените файл xorg.conf

sudo nano /etc/X11/xorg.conf

В файл xorg.conf вставьте следующий текст:

Section "Device"
	Identifier "Default device"
	Driver "sisimedia"
EndSection

Section "Screen"
	Identifier "Default Screen"
	Device "Default device"
EndSection

Перезагрузите компьютер.

375962987

Comments

  1. для ubuntu 14.04

    sudo add-apt-repository ppa:mati75/sis771
    sudo apt-get update
    sudo apt-get install xserver-xorg-video-sisimedia

    sudo apt-get install xorg-video-abi-15 — если возникнут зависимости

    Файл: /etc/X11/xorg.conf

    Section «Device»
    Identifier «sis671»
    Driver «sisimedia»
    Screen 0
    EndSection

    Section «Files»
    ModulePath «/usr/lib/xorg/modules»
    ModulePath «/usr/lib64/xorg/modules»
    EndSection

    Section «Monitor»
    Identifier «tft»
    Option «PreferredMode» «1280×800»
    Gamma 1
    EndSection

    Section «Screen»
    Identifier «Default Screen»
    Device «sis671»
    Monitor «tft»
    DefaultDepth 24
    SubSection «Display»
    Virtual 1280 800
    Depth 24
    Modes «1280×800@60» «1024×768@60»
    EndSubSection
    EndSection

    Section «ServerFlags»
    Option «IgnoreABI» «True»
    EndSection

Добавить комментарий для Виктор Отменить ответ