Grateful thanks to the following, without whose guidance this would not have been possible:
This is a thread that will help the Fujitsu-Siemens Amilo Li 1705 owners to resolve the video card (Via Chrome 9 HC, code: VN896) and sound card (card 0: VT82xx [HDA VIA VT82xx], device 0: VT1708 Analog [VT1708 Analog]) problems in Ubuntu 8.04 and its derivatives.
Also, this thread will show you how to have all the eye candy look of Compiz but with some simple issues: Compiz deactivate itself after watching a full screen video. It can be simple activated again from the menus).
Attention! I applied these patches on an Ubuntu 8.04 based distro (Linux Mint 5, Elyssa). Its version kernel is „2.6.24-16-generic”. For this kernel version the activation of 3D effects works without problems. For the new kernel versions of Ubuntu 8.04 the 3D effects doesn't work but, anyway, the 2D capabilities of the Via driver are better than the Openchrome or Vesa drivers.
I. The Video Issues:
1. Download the stable driver for Via Chrome 9 HC (CN896 + VT8251) in Ubuntu 8.04 from Via Linux: http://linux.via.com.tw/support/downloadFiles.action
2. I saved the archive on desktop and unpacked it there. I installed it with the following commands (in x-term/terminal):
Code:
cd /home/your_name/Desktop/chrome9.83-242-u804
sudo ./vinstall
Close the x-term. I didn't have any conflicts installing it. In the end you are noticed the former "xorg.conf" is being saved as ”xorg.conf.viabak” (you find it in File System>etc>X11).
3. Do not restart the notebook yet: "xorg.conf" should be edited first. In the x-term you write:
then:
and then:
There, in the „xorg.conf” I did replace only what was written under these lines:
Code:
# 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.
#
# 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 "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "ro"
Option "XkbVariant" "std_cedilla"
EndSection
I did that to keep my personalized keyboard (in my case Romanian with cedilla).
What was below what I wrote previously in the box I replaced with:
Code:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection
Section "Monitor"
Identifier "Monitor"
EndSection
Section "Device"
Driver "via"
Identifier "Configured Video Device"
Option "LCDPort" "DFP_HIGHLOW"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Synaptics Touchpad"
EndSection
Section "Module"
Load "glx"
Load "dri"
Load "extmod"
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Configured Video Device"
Monitor "Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x800"
Virtual 1280 800
EndSubSection
EndSection
In fact, as overall view, my xorg.conf looks like this:
Code:
# 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.
#
# 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 "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "ro"
Option "XkbVariant" "std_cedilla"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection
Section "Monitor"
Identifier "Monitor"
EndSection
Section "Device"
Driver "via"
Identifier "Configured Video Device"
Option "LCDPort" "DFP_HIGHLOW"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Synaptics Touchpad"
EndSection
Section "Module"
Load "glx"
Load "dri"
Load "extmod"
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Configured Video Device"
Monitor "Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x800"
Virtual 1280 800
EndSubSection
EndSection
Save the xorg.conf (Ctrl+X, then press„Y” to confirm and then ”Enter”).
4. Good! Now we have a display which looks OK with a refresh of 60Hz!
But Compiz has still not been activated yet. For this to be done, "compiz" must be edited. You find "compiz" at /usr/bin/compiz. In x-term:
Code:
cd /usr/bin
sudo su
nano compiz
There, search for the line
Code:
WHITELIST="nvidia intel ati radeon i810"
and replace it with
Code:
WHITELIST="nvidia intel ati radeon i810 via"
. By the way, this line you'll find in the first 1/3 of the text (it is difficult to see it).
Save it (Ctrl+X, then press„Y” to confirm and then ”Enter”)
5. This is all for the video issue. Now, restart. In my case, after restart, I noticed the login screen has corresponding sizes for the first time (1280X800). Until now I could see only the up left-side corner and I used to login blindly (probably it had a resolution of 19xx with 1yyy. Anyway: huge size).
Then, I noticed I can activate Compiz, simple in the well-known menus(Appearance>Visual effects>Normal/Extra/Custom).
Every time when Ubuntu 8.04 update the kernel you need to restore the xorg.conf that you edited. More information here: http://ubuntuforums.org/showpost.php...96&postcount=1