TinyURL

Enter a long URL to make tiny:

mercoledì 7 aprile 2010

Linux x86_64 e gli avatar di Skype

Ciao a tutti, se avete la vostra distribuzione linux a 64bit (e non sapete come avete fatto a vivere senza fino ad ora), ma non riuscite più a vedere gli avatar dei vostri contatti su skype (anche il vostro) allora potete:
  1. Seguire questo consiglio su un workaroud che trovate in questa pagina e che potete leggere anche qui sotto.
  2. O continuare a leggere e seguire quei semplici passi che vi permetteranno di usare gli avatar (non tutti blu mi raccomando).


On some amd64 distributions avatars are not showing, this is a problem with 32-bits emulation Qt library. Qt tries to find its image format plugins, but finds a 64-bits version instead and fails to load it.A workaround is to specify a plugin path when launching skype like this:
  • Ubuntu 64 bit: install "ia32-libs" package and launch Skype with: QT_PLUGIN_PATH=/usr/lib32/qt4/plugins skype
  • Arch 64 bit (with 32 bit chroot installed in /opt/arch32): QT_PLUGIN_PATH=/opt/arch32/usr/lib/qt/plugins skype
  • Other distributions might have a different path.
Quello che dovete fare è abbastanza semplice.
Vi basta creare uno script (ad esempio skype32.sh) nella directory /usr/bin:
cd /usr/bin
sudo vim skype32.sh

Cosi fatto:
#!/bin/sh
export QT_PLUGIN_PATH=/usr/lib32/qt4/plugins
skype &
Poi renderlo eseguibile con il comando:
sudo chmod +x skype32.sh
Modificare il lanciatore che avete sul pannello (o sulla scrivania) per lanciare skype32.sh invece di skype ed il gioco è fatto.
Larry

Nessun commento:

Posta un commento