LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-15-2005, 08:47 AM   #1
salviadud
Member
 
Registered: Feb 2005
Location: Mexico
Distribution: Gentoo - kernel 4.1.5
Posts: 186

Rep: Reputation: 30
Talking installed open office from linuxpackages.net, don't know how to open it


i feel dumb and newbish-like.

i run what command??? does anyone know...

im not kidding, this is not a joke, i have no idea how to run open office 1.9x

 
Old 04-15-2005, 08:48 AM   #2
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Rep: Reputation: 45
soffice

found in /opt/openoffice.org1.9.73/program/

There's a newer more stable version out btw.

EDIT: here's info on the latest version
http://www.linuxquestions.org/questi...46#post1589546

EDIT 2:

Might as well ..

Code:
tar xvfz OOo_1.9.93_LinuxIntel_install.tar.gz
cd RPMS
rpm2tgz *
rm *.rpm
pkgtool (current, which will install everything from that folder)
Afterwards, you can start OO with the command
Code:
soffice
if its not in /usr/bin, manually link it there
Code:
 cd /usr/bin
ln -s /opt/openoffice.org1.9.93/program/soffice.bin soffice

Last edited by xushi; 04-15-2005 at 08:54 AM.
 
Old 04-15-2005, 08:59 AM   #3
cathectic
Member
 
Registered: Sep 2004
Location: UK, Europe
Distribution: Slackware64
Posts: 761

Rep: Reputation: 35
Unfortunately, you don't get nice icons and menu entries unless you work for them, since with the menus packages provided:

1) All the symlinks to the *.desktop files (the menu entries) are wrong
2) The shell script it uses for launching OOo from the menu entries is wrong (/usr/bin/openoffice.org-1.9 points to an obscure location that doesn't exist (/etc/openoffice-1.9? Where did they get that one from))

You can use the build script I've posted here for those (but you need to download OO.org from the OO.org website for this):
http://www.linuxquestions.org/questi...37#post1604737

It will leave you with nice openofficeorg*.tgz packages in /tmp which you can then just install.

Last edited by cathectic; 04-22-2005 at 10:57 AM.
 
Old 04-15-2005, 09:05 AM   #4
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Rep: Reputation: 45
Very nice script cathectic. Don't forget to mention to change the version in there to

VERSION=1.9.93
ARCH=${ARCH:-i586}
INPUT=OOo_1.9.93_LinuxIntel_install.tar.gz
 
Old 04-15-2005, 09:07 AM   #5
salviadud
Member
 
Registered: Feb 2005
Location: Mexico
Distribution: Gentoo - kernel 4.1.5
Posts: 186

Original Poster
Rep: Reputation: 30
thanx a lot guys
soffice is enough for me!

as long as it works, im happy
 
Old 04-15-2005, 09:16 AM   #6
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Rep: Reputation: 45
cathectic, Can i ask.. I don't use KDE, Gnome, and a few other rpm packages that might be in there.. Is there any way i can exclude them in the script?
 
Old 04-15-2005, 10:23 AM   #7
cathectic
Member
 
Registered: Sep 2004
Location: UK, Europe
Distribution: Slackware64
Posts: 761

Rep: Reputation: 35
Xushi:

I've edited the script with the latest version below. To *not* build the menus, where it says:
Code:
# Say "yes" here if you want menus to be built
# Say "no" if you don't
MENU=yes
Change yes to no.

To exclude packages, add them where I've said:
Code:
# Add any other packages you don't want here
# rm openofficeorg-$PACKAGENAME*
The packages that come with OOo are:

openofficeorg-gnome-integration-1.9.93-1.i586.rpm
openofficeorg-core01-1.9.93-1.i586.rpm
openofficeorg-writer-1.9.93-1.i586.rpm
openofficeorg-calc-1.9.93-1.i586.rpm
openofficeorg-draw-1.9.93-1.i586.rpm
openofficeorg-impress-1.9.93-1.i586.rpm
openofficeorg-math-1.9.93-1.i586.rpm
openofficeorg-graphicfilter-1.9.93-1.i586.rpm
openofficeorg-testtool-1.9.93-1.i586.rpm
openofficeorg-spellcheck-1.9.93-1.i586.rpm
openofficeorg-xsltfilter-1.9.93-1.i586.rpm
openofficeorg-javafilter-1.9.93-1.i586.rpm
openofficeorg-pyuno-1.9.93-1.i586.rpm
openofficeorg-core02-1.9.93-1.i586.rpm
openofficeorg-core03-1.9.93-1.i586.rpm
openofficeorg-core04-1.9.93-1.i586.rpm
openofficeorg-core05-1.9.93-1.i586.rpm
openofficeorg-core06-1.9.93-1.i586.rpm
openofficeorg-core07-1.9.93-1.i586.rpm
openofficeorg-core08-1.9.93-1.i586.rpm

# All the menu packages are automatically deleted
openofficeorg-redhat-menus-1.9.93-1.noarch.rpm
openofficeorg-suse-menus-1.9.93-1.noarch.rpm
openofficeorg-mandrakelinux-menus-1.9.93-1.noarch.rpm
openofficeorg-freedesktop-menus-1.9.93-1.noarch.rpm

Edit

I'm fairly certain you need all the core packages, plus whichever applications you want on top (these seperate packages do have an advantage after all...) I imagine Gnome integration is unecessary. I don't know about the rest (haven't really experimented).

End Edit

Latest version of ooo.SlackBuild
http://www.linuxquestions.org/questi...37#post1604737

Last edited by cathectic; 04-22-2005 at 11:02 AM.
 
Old 04-15-2005, 10:28 AM   #8
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Rep: Reputation: 45
Again, Excellent script. Thanks alot, i was wondering how i could stick the icons in xfce's menu, and it did the job well.

Thanks.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Evolution - open word docs with open office (not KWord) bcarl314 Mandriva 1 06-11-2005 09:18 AM
distro for Pentium 100 for net browse & open office? spudler Linux - Distributions 5 04-09-2005 10:41 PM
Open Office does not open large files linuxfond Linux - Newbie 8 09-26-2004 03:46 AM
How to open a wps file in open office 1.1 oneiric Linux - Software 4 04-15-2004 04:07 AM
Can Open Office open WordPerfect files hemenm Linux - Software 2 03-10-2004 05:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 05:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration