LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-17-2009, 11:05 PM   #1
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373
Blog Entries: 2

Rep: Reputation: 32
Help me to install openOffice


OK, so i'm on Kubuntu now and i have openOffice 2.4 installed and wanted to upgrade to openOffice 3. So i went to this site

http://download.openoffice.org/contr...ersion%3D3.0.1

and downloaded, then i extracted it on my desktop and wanted to install it.. Well i really don't get all this installation in linux thing..

So i extracted and got this..

http://xs136.xs.to/xs136/09083/snapshot1855.png

1. See the error? Why do i get this error?
2. How do i install it now?

Last edited by QueenZ; 02-17-2009 at 11:09 PM.
 
Old 02-17-2009, 11:23 PM   #2
Ranguvar
Member
 
Registered: Oct 2008
Location: Upstate NY
Distribution: Arch Linux
Posts: 99

Rep: Reputation: 17
Use a package for your distro.

https://launchpad.net/~openoffice-pkgs/+archive/ppa
https://help.launchpad.net/Packaging...20repositories

That said, my guess is that you need unrar. See that RAR with Java? Yeah. You can confirm by opening that script in a text editor.
 
Old 02-18-2009, 12:48 AM   #3
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
Originally Posted by QueenZ View Post
OK, so i'm on Kubuntu now and i have openOffice 2.4 installed and wanted to upgrade to openOffice 3. So i went to this site

http://download.openoffice.org/contr...ersion%3D3.0.1

and downloaded, then i extracted it on my desktop and wanted to install it.. Well i really don't get all this installation in linux thing..

So i extracted and got this..

http://xs136.xs.to/xs136/09083/snapshot1855.png

1. See the error? Why do i get this error?
2. How do i install it now?
Hi again QZ,
OK, there are two ways you gain go: You can search around the buntu repos and find the packages for OOo3 or.... you can do what you tried to do, go to the Openoffice site. You just picked the wrong file so no harm no foul.
Go to this link:
http://download.openoffice.org/other.html#en-US
There you will see a table. The rows refer to the interface language and the one offering in English is English(US). The columns refer to the type of packages you want. Since you use Kubuntu, choose a "deb" column (either 32 or 64bit according to what Kubuntu you're using (32 or 64) and then click and download the package, ideally to /tmp
Open a terminal and navigate to /tmp and issue the following command (you don't have to be root to do this)
Code:
tar zxvf [name of tar.gz file you just downloaded]
tar will unpack the tarball and you will notice that a new directory has appeared under /tmp (called OOO something). cd into the new directory and do an ls (use that command once you're in the OOO folder). You will see a subdirectory called DEBS. Navigate into that directory. One of the debs has "gnome-integration" in its name. Since you use kde you won't need that and you can delete it. Once you've done that use sudo or become root and give this command:
Code:
sudo dpkg -i *.deb
That will install all the debs. And voila! Your new openoffice has been installed in the /opt directory.
Have fun,
jdk
 
Old 02-18-2009, 09:25 AM   #4
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
javaldx: Could not find a Java Runtime Environment!
??
 
Old 02-18-2009, 09:50 AM   #5
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
ok it installed it in /opt directory but why? Why doesn't it show up in my start menu? If i choose openoffice from start menu it opens 2.4 but if i open it from /opt then it opens 3 ... weird..
 
Old 02-18-2009, 10:13 AM   #6
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Rep: Reputation: 33
Cool

Quote:
Originally Posted by QueenZ View Post
ok it installed it in /opt directory but why? Why doesn't it show up in my start menu? If i choose openoffice from start menu it opens 2.4 but if i open it from /opt then it opens 3 ... weird..
Give a try to install jre then , u can get latest version frm synaptic manager itself
 
Old 02-18-2009, 10:28 AM   #7
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
Originally Posted by QueenZ View Post
ok it installed it in /opt directory but why? Why doesn't it show up in my start menu? If i choose openoffice from start menu it opens 2.4 but if i open it from /opt then it opens 3 ... weird..
That's where debian puts executables that (1) aren't from its own packages (hence OPTional) and (2) aren't things that you have compiled yourself (they go in /usr/local/bin).

C'mon QZ. Editing a menu is a piece of cake; even a 25 year old can do it .
Right-click on the menu item and select "edit item". Replace the command that's there with
Code:
/opt/openoffice.org3/program/soffice -writer %U
(this is for the writer item but you can do the same thing for the other parts of the office suite).
Now that's not very hard, is it?
cheers,
jdk

Last edited by jdkaye; 02-18-2009 at 10:29 AM.
 
Old 02-18-2009, 10:36 AM   #8
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by jdkaye View Post
That's where debian puts executables that (1) aren't from its own packages (hence OPTional) and (2) aren't things that you have compiled yourself (they go in /usr/local/bin).

C'mon QZ. Editing a menu is a piece of cake; even a 25 year old can do it .
Right-click on the menu item and select "edit item". Replace the command that's there with
Code:
/opt/openoffice.org3/program/soffice -writer %U
(this is for the writer item but you can do the same thing for the other parts of the office suite).
Now that's not very hard, is it?
cheers,
jdk
Thanks again! You always make things clear for me !
 
Old 02-18-2009, 10:43 AM   #9
IndyGunFreak
Senior Member
 
Registered: Aug 2003
Location: Indpls
Distribution: Laptops: Debian Jessie XFCE, NAS: OpenMediaVault 3.0
Posts: 1,355

Rep: Reputation: 70
http://tinyurl.com/aj5qhv

Worked fine for me.
 
  


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
want to uninstall openoffice 2.4.1 and install openoffice 3; using ubuntu 8.04 quazisaad Linux - Newbie 10 11-08-2008 09:10 AM
Tried to install OpenOffice but it's nowhere hevymac Linux - Newbie 7 11-25-2006 05:19 PM
THe best way to install OpenOffice shole Linux - Software 7 04-12-2005 03:53 AM
Help with OpenOffice install ajbrouwe Slackware 16 07-19-2004 12:18 PM
Install OpenOffice post Distro install? xrobevansx Linux - Newbie 4 06-15-2004 05:43 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:07 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