Tim Igoe's Web Design, Development and Hosting Blog

Blog > Getting Tweetdeck (and Adobe Air) running on Ubuntu 64bit

A lot of people have been trying to get various Adobe Air powered applications to work on their 64 bit Linux installs, while some have succeeded in some form or another, plenty have given up too. I was nearly another.

However, I have finally worked out everything needed to get Adobe Air, and Tweekdeck, BBC iplayer etc all running happily on my Ubuntu Karmic 64 bit machine.

First off, we need to install the 32 bit libraries for Ubuntu.

sudo apt-get install ia32-libs lib32nss-mdns


Now, for those Gnome users, we may run into a small problem before Air Applications will run, there is no nice way to install the 32 bit Gnome Keyring libraries into the system. The libraries installed at 64 bit, we need 32 bit ones for Air to work correctly.

While this is by no means an idea solution, we will manually install the latest libraries into the /usr/lib32 folder.

wget http://archive.ubuntu.com/ubuntu/pool/main/g/gnome-keyring/libgnome-keyring0_2.26.1-0ubuntu1_i386.deb
dpkg-deb -x libgnome-keyring0_2.26.1-0ubuntu1_i386.deb libgnome-keyring0_2.26.1-0ubuntu1_i386
sudo cp libgnome-keyring0_2.26.1-0ubuntu1_i386/usr/lib/* /usr/lib32
rm -R libgnome-keyring0_2.26.1-0ubuntu1_i386


Once this has been done, you should then be able to go to a site, for example that of Tweetdeck, and click on their 'Download it now' link, this should pop up a prompt to install Adobe Air, and then one for Tweekdeck itself.

This method of installing Air, is much easier than manually downloading and installing it.

I have so far done this on both my desktop and laptop, without issues.

Similar Articles from the web

Getting Tweetdeck (and Adobe Air) running on Ubuntu 64bit

In reply to this El1iP3S01D said Keyring

How do i find out what version is the gnome-keyring installed on my System?

In reply to this TimIgoe said

You'll want to use the command line tool dpkg with a command like dpkg -l gnome-keyring

If you'd rather not use command line tools, try looking for the package in Synaptic.

In reply to this El1iP3S01D said Keyring

Thanks, Timigoe...

Post a reply