2

See question here: ===============> https://superuser.com/questions/218868/tweetdeck-adobe-air-on-ubuntu-10-10

Getting the issue:

sudo apt-get install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 tweetdeckfast.fff259dc0ce2657847bbb4aff0e62062efc56543.1 : PreDepends: adobeair (>= 1.5.3.0) but it is not installable
E: Unmet dependencies. Try using -f.
Drew
  • 370

2 Answers2

1

I just followed this and it worked fine http://support.tweetdeck.com/entries/181425-how-to-install-air-tweetdeck-in-linux-ubuntu-variants

Zabadda
  • 260
0

You have to install TweetDeck and Adobe Air.

Adobe Air Installation:

  • alt text Get Adobe Air from this link.

  • You need Getlibs which helps to install 32-bit libraries in a 64-bit environment.

  • Save the getlibs-all.deb file from this link and double-click to install it.

  • Now you want to Install the dependencies for Adobe Air.Copy/Paste the following in terminal.

    sudo apt-get install lib32asound2 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32z1 libc6 libc6-i386 lib32nss-mdns

  • Now copy and paste each of the following commands into a terminal one at a time.

    sudo getlibs -l libnss3.so.1d
    sudo getlibs -l libnssutil3.so.1d
    sudo getlibs -l libsmime3.so.1d
    sudo getlibs -l libssl3.so.1d
    sudo getlibs -l libnspr4.so.0d
    sudo getlibs -l libplc4.so.0d
    sudo getlibs -l libplds4.so.0d
    sudo getlibs -l libgnome-keyring.so
    sudo getlibs -l libgnome-keyring.so.0
    sudo getlibs -l libgnome-keyring.so.0.1.1

  • Move the Adobe Air.bin to your home folder.

  • Open terminal and type the following command to make the file executable.

    chmod +x AdobeAIRInstaller.bin

  • Install it using the following command

    sudo ./AdobeAIRInstaller.bin

  • Also type the following command in terminal

sudo cp /opt/"Adobe Air"/Versions/1.0/Resources/libadobecertstore.so /usr/lib32

  • Run this command in terminal sudo ldconfig and you are done.

TweetDeck Installation:

karthick87
  • 84,513