LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   installing open office (https://www.linuxquestions.org/questions/linux-newbie-8/installing-open-office-384864/)

BackwardsDown 11-20-2005 08:34 AM

installing open office
 
hi, I am a noob in linux and I have a question,

I am running debian and I have 3 window managers: xfce, fluxbox and windowmaker

now I have downloaded open office, it was a .tar.gz, I have unpacked it,

now I have a directory full with .rpm files,

but how do I install them, and wich do I have to pick?

Ruben2 11-20-2005 08:57 AM

If you have debian just use aptitude, dselect or
Code:

apt-get install openoffice.org
to install openoffice.org

I guess that with "wich do I have to pick?" you are refering to the window managers.
I would say: try them and use the one you like the best.
That's the freedom you have in Linux :)

Good luck

Andrew Benton 11-20-2005 08:58 AM

If you have alien installed you could use that. If you have cpio installed you can use this rpm2cpio script http://www.iagora.com/~espel/rpm2cpio like this
Code:

tar -xzf OOo*.tar.gz &&
cd RPMS &&
for i in *.rpm; do rpm2cpio $i | cpio -idv; done

That will create an opt folder inside the RPMS folder and inside that should be an openoffice folder. Move it somewhere convenient and make a link pointing at RPMS/opt/openoffice.org-$ver/program/soffice from somewhere in your path.


All times are GMT -5. The time now is 11:20 AM.