Už jsem nainstaloval ubuntu 10.04, takže už jsem tento problém řešil. Upozorňuji, že tento driver zajistí pouze 2D akceleraci, o 3D akceleraci na linuxu s touhle kartou si nejspíš můžeme nechat jen zdát...
Volně jsem postupoval podle tohoto návodu:
http://ubuntuforums.org/showpost.php?p=9104603&postcount=371Zdrojáky jsou zde:
http://estebanordano.com.ar/sis-m671m672-driver-for-xorg-xserver-7-5-on-debian-sidux/Předkompilované ovladače jsou zde:
http://ajoliveira.com/ajoliveira/gen/bin/sis_driver_32-bit_10.04.tar.gz pro 32 bit systém
http://ajoliveira.com/ajoliveira/gen/bin/sis_driver_64-bit_10.04.tar.gz pro 64 bit systém
1. Stáhnout driver (binárku), rozbalitPo rozbalení archivu soubory zkopírujeme do adresáře /usr/lib/xorg/modules/drivers/
sudo cp sis671_drv.* /usr/lib/xorg/modules/drivers/
2. Opravení problému s nečitelnou konzolí a problému s plymouthemsudo -i
echo blacklist vga16fb > /etc/modprobe.d/blacklist-vga16fb.conf
update-initramfs -u
Doporučuji ješte smazat v grubu parametr jádra "splash", aby se plymouth nezobrazoval vůbec, protože stejně vypadá hnusně.
sudo nano /boot/grub/grub.cfg
a v /etc/default/grub upravit 9. řádek na:
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
aby se plymount nezobrazil ani s dalším
update-grub23. Vytvořit /etc/X11/xorg.confZde uvádím příklad svého xorg.conf, můžete ho zkopírovat, doporučuji ale změnit modeline podle vašeho monitoru:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Device"
Identifier "Configured Video Device"
Driver "sis671"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 30-107
VertRefresh 50-185
# 1280x800 @ 85.00 Hz (GTF) hsync: 71.40 kHz; pclk: 123.38 MHz
Modeline "1280x800_85.00" 123.38 1280 1368 1504 1728 800 801 804 840 -HSync +Vsync
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Povinný je řádek
Driver "sis671"
Řádek
Modeline "1280x800_85.00" 123.38 1280 1368 1504 1728 800 801 804 840 -HSync +Vsync
upravuje rozlišení monitoru, čili pokud nemáte stejné rozlišení jako já, vygenerujte si ho příkazem
gtf 1280 1024 80
čísla dosadit vlastní, v tomto případě rozlišení 1280x1024, frekvence 80 HZ
4. restart PCOpravy, úpravy, doplnění vítáno