Acer Aspire Touchpad with Ubuntu 9.04

juin 20th, 2009

I just installed 9.04 release on my Acer Aspire 5500 and all was ok except the touchpad.

If you want it back, follow these instructions (in a terminal) :

sudo  pico /etc/modprobe.d/psmouse.conf

Add this line in the file and save (CTRL-O / CTRL-X):

options psmouse proto=exps

Reboot or try the new setting with :

sudo modprobe -r psmouse && sudo modprobe psmouse

Pourquoi faut-il acheter ?

mai 26th, 2009

La réponse en 2 min avec ce directeur développement Habitat. Un vrai régal, ça me rassure sur la qualité de conseils du Crédit Lyonnais.

http://immobilier.lcl.fr/conseils-experts/interviews/noel-brissault-1/

Change system email sender in postfix

mai 7th, 2009

For example, you would like to change your root@localhost with admin@mydomain.com.

In /etc/postfix/main.cf, add :

canonical_maps = hash:/etc/postfix/canonical

In /etc/postfix/canonical, add :

root admin@mydomain.com

Then do :

postmap /etc/postfix/canonical

/etc/init.d/postfix restart

Ubuntu 9.04 Bluetooth Mouse Problem (Microsoft Notebook Mouse 5000)

mai 3rd, 2009

Seems to be an issue with this mouse since the version 9.04: even though gnome bluetooth interface can scan the device, the paring is not done.
Solution: install backward compat packages:

sudo apt-get install bluez-compat

Then put your mouse in paring mode and:

sudo hidd -s

Change locale charset in linux terminal

avril 24th, 2009

If you want to be in French UTF8 :

export LC_ALL=fr_FR.UTF-8

convert Microsoft Reader .LIT files to HTML

avril 13th, 2009

Since Ubuntu 8.10 Intrepid, no need to compile, juste type:

sudo apt-get install convlit

Usage:

clit crippled-book.lit ./free_html_folder/

Enjoy

sudo apt-get install convtlit

Usage:

clit crippled-book.lit ./free_html_folder/

Enjoy
Upcoming: nautilus script to convert to pdf

Symfony Datagrid component

avril 6th, 2009

A very good and well documented Symfony Datagrid component (plugin) :

http://www.symfony-project.org/plugins/sfDatagridPlugin

sfDataGrid

Compatible FE et IX

avril 3rd, 2009

Lu sur 01Net : “Les trois dictionnaires sont consultables sur Explorer, Firefox et Safari, sur PC, Mac ou Linux.”

Ca veut dire quoi “sur PC, Mac ou Linux” ?

Je propose aux journalistes en herbes qui ont encore du mal avec tout ce jargon informatique, d’utiliser l’astuce suivante pour s’y retrouver.

Si on peut dire “je viens de m’acheter un ___” alors, ça signifie que vous parlez de matériel.

A l’inverse, si on peut dire “je viens d’installer ___ “, alors ça signifie que vous parlez de logiciel.

Allez, quelques exemples pour la route, histoire d’enfoncer le clou :

  • je viens de m’acheter un PC
  • je viens de m’acheter un Mac
  • je viens de m’installer Linux
  • je viens de m’installer Windows
  • je viens de m’installer MacOS
  • je viens de m’acheter un palm
  • je viens d’installer Android

Et qu’on arrête de sortir des conneries “compatible PC et Mac”, pour info, MacOS fonctionne sur une architecture PC…

Ubuntu 9.04 on eeePC 901

mars 28th, 2009

Just a outlook on the new Jaunty

Pretty sleek and flawless for an eeePC 901, everything work:

-wifi

-camera

-bluetooth

-hotkey (but the wireless/bt)

-suspend

Hot stuf:

26 second with 2Gb ram on a Atom 1.6, wifi connected.

Not bad, closer and closer to the Xandros (16s) and WinXP(24s)
First OpenOffice 3

904-ooo.png
Janitor: to clean and remove old and non-used packages

904-ooo.png

Very important: my claimed bug: selectable network’s information

904-nm.png

But huge disappointment: cannot resize nor rotate pics in nautilus:

904-pics.png

Anyway, this new version, once again sounds promising. Stay tuned for tip and tricks.

Compare 2 floats with PHP

mars 17th, 2009

Only one way :

$res = bccomp($a,$b,$decimals);