Today I downloaded and installed OpenOffice through the PPA repositories, using apt-get (hope that's what I mean to say), and when the program checked for updates it said there was a new version - 3.4.1 which I need to download from the website.
I am reluctant to download from the website, because I tried this earlier (before using the PPAs) and while I was able to download the .tar.gz file and extract the DEBS, I couldn't figure out how to install it. I found instructions on the internet that told me how to install, but for some reason, Ubuntu didn't know the application was installed! Couldn't find it in Dash, and to run I had to find the OpenOffice folder and doubleclick soffice.bin.
So my question is, how to I download and install the latest version of OpenOffice without it being messed up as above?
dpkg -i *.deb
can't be replaced with multipledpkg -i %package%
commands unless you guess the correct order of installation to resolve all dependencies. That's the only problem that makes it a bad idea to use graphical package installers for these DEB packages. – Max Alibaev May 13 '13 at 17:24If the method you suggest is the only way to do it then I'll have to just stick with the older version unfortunately.
– Sam H May 14 '13 at 08:01I used apt-get --purge OpenOfficeorg to remove the software, then I downloaded the package and used the dpkg -i command to install all the debs. Then I installed the desktop-integration debs, and it is all working now!
In short I have no idea what I did wrong last time, but it is working! Thanks everyone for your help!
– Sam H May 14 '13 at 15:25