VMWare Tools under Ubuntu Linux

A very complete explanation about installing this usefull VMWare Tools inside VMWare Player.

As other sites have demonstrated, it is possible to create a VMware disk image using free tools and install a full-fledged virtual operating system using the free VMware Player. However, VMware Player does not provide VMware Tools, a set of programs that considerably improve VMware performance.

The following procedure shows how to extract and install the VMware Tools image from the VMware Workstation “tarball” (.tar.gz

1. Download the latest “Archived Version” of VMware Workstation in “.tar.gz” format at http://www.vmware.com/download/ws/. You do not need to be registered nor have a VMware Workstation license key to download this version.

Example:
wget http://download3.vmware.com/software/wkst/VMware-workstation-5.5.0-18463.tar.gz

2. Locate and extract the windows.iso VMware Tools image from the tarball.

Locate the windows.iso file (example):
$ tar ztvf VMware-workstation-5.5.0-18463.tar.gz | grep windows.iso
vmware-distrib/lib/isoimages/windows.iso

Extract the windows.iso file (example):
$ tar zxvf VMware-workstation-5.5.0-18463.tar.gz vmware-distrib/lib/isoimages/windows.iso

3. Mount the windows.iso file as a loopback file system, and either share the loopback file system with Samba, or copy the VMware Tools files to a location accessible by your guest system.

$ mkdir /tmp/vmware_tools
# mount -o loop vmware-distrib/lib/isoimages/windows.iso /tmp/vmware_tools

4. In your guest system, run setup.exe from the VMware Tools directory.

file). In this example, my guest system is Windows XP Professional, and my host system is Fedora Core 4.

source

Fon : extend your wifi with La Fontenna

Mail reçu hier, commande passée aujourd’hui, réception sous 3 semaines.

Cher Fonero,

Dans les semaines qui viennent, nous allons lancer La
Fontenna, notre nouvelle antenne semi-directionnelle qui
porte votre signal WiFi FON jusqu’à 5 fois plus loin, qui
augmente la couverture de la Communauté FON et qui
améliore votre expérience WiFi.

En tant qu’un de nos plus fidèles Foneros, nous
souhaitons vous remercier en vous proposant une Fontenna
GRATUITE.

Il vous suffit de vous rendre sur la Boutique FON, de saisir
le code promotionnel suivant, et de commander votre Fontenna
GRATUITE (taxes et frais de ports couverts par FON).

Code promotionnel : XXXXX

Pour toute question concernant cette offre n’hésitez
surtout pas à nous contacter ici.

Bon surf avec FON !

Votre équipe FON

(édit: photo de la fontenna)

getfile.jpeg

Thunderbird & Ubuntu : Dictionarie for spellcheck

The XPI package for your language doesnt work?

Here is the solution, Thuderbird use the system’s dictionarie “myspell”, so you have to copy file in /usr/share/myspell/dicts/

Or just copy and paste with the good dictionary file you can find here:

http://wiki.services.openoffice.org/wiki/Dictionaries 

wget http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/fr_FR.zip

sudo unzip fr_FR.zip -d /usr/share/myspell/dicts/

and just restart Thunderbird.

Symfony with Xampp

Si vous rencontrez un souci de page blanche (page vide, rien à l’écran) lorsque vous testez votre sandbox Symfony toute fraîche, la solution est ici :

Affichage d’une page blanche

Si lorsque vous appelez la page index.php du dosser web de votre sandbox, vous obtenez comme réponse une page blanche, faîtes la manip suivante :

  1. Rendez-vous dans www\sf_sandbox\apps\frontend\config
  2. Editez le fichier settings.yml
  3. Dans prod .settings, rajoutez la ligne : strip_comments: off
  4. Enregistrez, quittez et faîtes symfony clear-cache dans la console

La page blanche devrait maintenant laisser place à une belle page de félicitations !

source