Squeeze

ajouter la ligne contrib non-free dans apt/sources.list

aptitude -o 'Acquire::Check-Valid-Until=false' update

Ajouter blacklist pcspkr dans /etc/modprobe.d/blacklist

 # The following directives define some format nicknames for use with
 # a CustomLog directive (see below).
 # If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i

Notes en vrac

lucid poste client

/apps/nautilus/desktop/home_icon_visible true
/apps/nautilus/desktop/trash_icon_visible true

/desktop/gnome/sound/event_sounds false

/apps/panel/default_setup/applets/window_list/prefs/display_all_workspaces true
/apps/panel/default_setup/applets/window_list/prefs/group_windows auto
/apps/panel/default_setup/applets/window_list/prefs/move_unminimized_windows false

/desktop/gnome/font_rendering/antialiasing "rgba"
/desktop/gnome/font_rendering/hinting "full"

/desktop/gnome/lockdown/disable_lock_screen true
/desktop/gnome/lockdown/disable_user_switching true

/apps/gdm/simple-greeter/disable_user_list true

Mysql et les encodages

CREATE DATABASE labdd CHARACTER SET utf8 COLLATE utf8_bin;
use labdd;
show table status;

si c'est pas bon, tout mettre en utf8

SET NAMES 'utf8';

ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin;

Dump de base

mysqldump -p --default_character-set=latin1 -u <username> --skip-set-charset labdd > labdd_database.sql

Import de base

mysql -u <username> -p --default-character-set=utf8 --max_allowed_packet=64M labdd < /home/ndimby/labdd.sql

Forcing du proxy

Après les modifications des paquets sur apt.auf.org, reloader le cache

Checklist sur portable

En attendant auf-poste-client-mobile ou eventuellement auf-laptop

  1. Verification bios
  2. Install system de base
  3. Plugins video audio: depots medibuntu: w32codecs realplay
  4. Systemes/Preferences/AppicationsPreferes/ Mail-> Thunderbird

  5. Verification matériel:
    • raccourcis clavier, touche FN
    • verification hardware lspci, lshw, webcam, xserver-xorg-input-synaptics
    • video apres fermeture ecran

xorg.conf

Section "Device"
        Identifier      "Configured Video Device"
        Driver          "intel"
        Option          "XVideo" "Off"
EndSection
...........

#Administrator user group...
SystemGroup lpadmin
BrowsePoll localhost
BrowsePoll 10.196.1.250

#Show shared printers on the local network.
Browsing On 

NdimbyAndriantsoavina/NotesPerso (dernière édition le 2011-09-08 11:12:41 par NdimbyAndriantsoavina)