Clean install of:
I need to install 32 bit firefox and java in order to install run my vpn. I got it to work on Fedora, but would rather use kubuntu, particularly after reading about the multiarch support. However, 32 bit firefox won't install
So far, while troubleshooting, I've installed a number of 32 bit libs. This:
And this:
I've also tried to download and run 32 bit firefox manually from the firefox website:
With the above, I tried setting the LD_LIBRARY_PATH to the firefox directory, but that doesn't work either.
Anyone have suggestions? Is there anything I need to do in order to force apt-get to install the 32 bit dependencies when I try apt-get install firefox:i386?
Thanks in advance for any advice.
Code:
$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 11.10 Release: 11.10 Codename: oneiric uname -a Linux rich-EliteBook 3.0.0-15-generic #26-Ubuntu SMP Fri Jan 20 17:23:00 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
Code:
~$ sudo apt-get install firefox:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: firefox:i386 : Depends: psmisc:i386 but it is not going to be installed Depends: debianutils:i386 (>= 1.16) but it is not going to be installed Depends: libstartup-notification0:i386 (>= 0.8) but it is not going to be installed Recommends: ubufox:i386 but it is not installable E: Unable to correct problems, you have held broken packages.
Code:
sudo apt-get install binutils-multiarch
Code:
sudo apt-get install ia32-libs-multiarch:i386
Code:
rich@rich-EliteBook:~/apps/firefox$ ldd ./firefox linux-gate.so.1 => (0xf77e0000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf77b0000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf77ab000) libstdc++.so.6 => /usr/lib/i386-linux-gnu/libstdc++.so.6 (0xf76bf000) libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xf7695000) libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf7677000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74fb000) /lib/ld-linux.so.2 (0xf77e1000) $ ./firefox XPCOMGlueLoad error for file /home/rich/apps/firefox/libxpcom.so: libxul.so: cannot open shared object file: No such file or directory Couldn't load XPCOM.
Anyone have suggestions? Is there anything I need to do in order to force apt-get to install the 32 bit dependencies when I try apt-get install firefox:i386?
Thanks in advance for any advice.
Comment