Cette page va vous aider à configurer votre Amilo L7310GW pour qu'il fonctionne sous Ubuntu.
Le tableau suivant récapitule la prise en charge du matériel du portable par les différentes versions d'Ubuntu. Il utilise les notations suivantes :
Version | Live CD | Affichage | Son | Réseau | Périph. entrée | Energie | Carte SD | Modem | USB | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Video | Acc 3d | Effets 3d | Wifi | Touchpad | Raccourcis multimédia | Batterie | Veille | Hiber. | Ecran | ||||||
"Dapper Drake" 6.06 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
"Edgy etch" 6.10 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
"Feisty Fawn" 7.04 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
"Gutsy Gibbon" 7.10 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
"Hardy Heron" 8.04 | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
"Itrepid Ibex" 8.10 | |||||||||||||||
"Jaunty Jackalope" 9.04 | |||||||||||||||
"Karmic Koala" 9.10 | |||||||||||||||
"Lucid Lynx" 10.04 | ? |
Il vous suffit d'aller la régler dans Système/Préférences/résolution de l'écran en 1280*800. Une fois l'installation terminé, vous aurez à passer à l'étape suivante.
Nous allons configurer Xorg pour utiliser le pilote openchrome et désactiver la 3D.
Commencez par faire une sauvegarde de votre fichier de configuration xorg.conf, ouvrez un terminal et tapez :
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
En cas d'échec de vos tentatives de configuration, vous pouvez rétablir votre configuration graphique précédente en restaurant votre fichier xorg.conf avec la commande :
sudo cp /etc/X11/xorg.conf.bak /etc/X11/xorg.conf
Ensuite
sudo gedit /etc/X11/xorg.conf
# 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 "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 "Device" Identifier "Configured Video Device" Busid "PCI:1:0:0" Driver "openchrome" #Sélectionne le pilote openchrome démarrage Screen 0 EndSection Section "Monitor" Identifier "Configured Monitor" Vendorname "Generic LCD Display" Modelname "LCD Panel 1280x800" Horizsync 31.5-50.0 Vertrefresh 56.0 - 65.0 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 800 Modes "1280x768@60" "1280x720@60" "800x600@60" "1280x800@60" "800x600@56" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" screen 0 "Default Screen" 0 0 Inputdevice "Synaptics Touchpad" EndSection Section "Module" Load "dri" #désactivé la 3D EndSection
Pour faire fonctionner votre usb, il faut rajouter irqpoll comme option au démarrage du noyau.
Pour GRUB1
sudo gedit /boot/grub/menu.lst
title Ubuntu 8.10, kernel 2.6.27-9-generic uuid 5ceca9b1-b5dc-4552-b560-90831745dfa7 kernel /boot/vmlinuz-2.6.27-9-generic root=UUID=5ceca9b1-b5dc-4552-b560-90831745dfa7 ro irqpoll quiet splash initrd /boot/initrd.img-2.6.27-9-generic quiet
Pour GRUB2
sudo gedit /etc/default/grub
Modifier la ligne où se trouve le paramêtre “GRUB_CMDLINE_LINUX_DEFAULT” en rajoutant irqpoll
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash irqpoll"
Puis relancer le GRUB
sudo update-grub