LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 07-14-2004, 05:14 PM   #1
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Rep: Reputation: 15
Help with OpenOffice install


Alright...I'm new to installing apps. I D/L and installed OpenOffice to (from an unknown reason) /root/openoffice1.1.2.

Well, I guess this wasn't a good place to install to. I tried to add it to my KDE menu under office, with :

OpenOffice.org1.1.2/soffice

as the command, but it will not do anything. How do I uninstall it? kappfinder would not find it, either. Help!

Andrew
 
Old 07-14-2004, 05:22 PM   #2
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
OOo installs into its own directory, just remove it and install it as a normal user into your home directory.
 
Old 07-14-2004, 05:28 PM   #3
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
So, I can just delete the entire directory? No worries? I guess I was thinking of windows, where the registry would get beat to hell after awhile.

Just delete the folder, install as normal user.

Where should I install these programs too? Sorry I'm so new...just used to the program files folder where you could put everything!

Andrew
 
Old 07-14-2004, 05:40 PM   #4
rotvogel
Member
 
Registered: Oct 2003
Posts: 534

Rep: Reputation: 30
It will suggest ~/Openoffice.org1.1.2 or something (~ = home dir of user installing OOo). That's fine. It will add menu entires in your KDE menu as well.
 
Old 07-14-2004, 06:42 PM   #5
heema
Senior Member
 
Registered: Sep 2003
Location: Egypt
Distribution: Arch
Posts: 1,528

Rep: Reputation: 47
here is how to install openoffice

http://www.openoffice.org/dev_docs/i...ons.html#linux
 
Old 07-15-2004, 04:23 AM   #6
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
Quote:
Originally posted by ajbrouwe
So, I can just delete the entire directory? No worries? I guess I was thinking of windows, where the registry would get beat to hell after awhile.

Just delete the folder, install as normal user.

Where should I install these programs too? Sorry I'm so new...just used to the program files folder where you could put everything!

Andrew
To get the best out of linux add a user:

adduser [username]

then fill out the user info with the defaults for now, such as user id, room no etc.
give yourself a good password, then log out from the root account and log back in as the newly created user. You will find that your home is now /home/username/ and is refered to as ~/ (the sqiggle is just an abreviation; try "cd ~" and then "pwd")
If you need to edit things or do anything as root, log in as a user and type:

su
[password]

This will give you "superuser" privellages and allow you to do what you've got to do.
Install OOo when logged in as your ordinary user and it will be installed to ~/openofficesomething. This does mean that only you can use that installation but at least it's secure.
 
Old 07-15-2004, 10:46 AM   #7
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
But, I can just delete the old install folder?

Yeah, I know all about the super user and things; I just read the network install on the open office site, and got confused, I guess. The installing is just sort of confusing- i'm too used to add/remove programs, program files, and the registry...where "just deleting the folder" wouldn't do a thing!

Thanks for you patience!

Andrew
 
Old 07-15-2004, 10:51 AM   #8
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
yes, you can delete the folder. In linux, a file is a file, wysiwyg! The only thing similar is linked libraries (.so instead of .dll) and perhaps (depending on your distribution) a package manager, for .rpm's, .pkg's, .deb's etc. But even these basically just keep a record of the software on your computer; you can if you like, uninstall a package manager and keep track of your installed software on a piece of paper. There is no registry as such, explore and enjoy.
 
Old 07-15-2004, 12:26 PM   #9
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
Alright...I know rmdir will work for an empty directory- what about for the full? I suppose I could just man it when I boot into slack...alright, thanks guys

Andrew
 
Old 07-15-2004, 03:52 PM   #10
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
nope, it's:

rm -r /root/OpenOffice.org-1.1.2/ #:~]

edit: took me ages to work that out once!

Last edited by Tuttle; 07-15-2004 at 03:55 PM.
 
Old 07-16-2004, 07:55 AM   #11
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
Code:
root@Home:/home/andrew# rm -r /root/OpenOffice.org-1.1.2
rm: cannot remove `/root/OpenOffice.org-1.1.2': No such file or directory
Any help?

Andrew
 
Old 07-16-2004, 08:20 AM   #12
carboncopy
Senior Member
 
Registered: Jan 2003
Location: Malaysia
Posts: 1,210
Blog Entries: 4

Rep: Reputation: 45
This is how you should install OpenOffice in Linux (Unix) for multiuser.

1. Login as root.
2. Untar and cd into the openoffice installation file.
3.
Code:
./setup -n
#-n will give you network installation)
4. it will install as usuall, and the installer will suggest to install in /opt/openoffice1.1.2, If you don't mind, that is a good location (for me).
5. Just finisih up with the installation.
6. If you want to use openoffice as root, cd /opt/openoffice1.1.2
7. ./setup and choose network installation (2.3 something megabyte only.
8. to install openoffice for other users, log in as the user, cd /opt/openoffice1.1.2
9. ./setup and the same.

Last edited by carboncopy; 07-16-2004 at 08:21 AM.
 
Old 07-16-2004, 08:22 AM   #13
carboncopy
Senior Member
 
Registered: Jan 2003
Location: Malaysia
Posts: 1,210
Blog Entries: 4

Rep: Reputation: 45
Quote:
Originally posted by ajbrouwe
Code:
root@Home:/home/andrew# rm -r /root/OpenOffice.org-1.1.2
rm: cannot remove `/root/OpenOffice.org-1.1.2': No such file or directory
Any help?

Andrew
I believe it is /root/OpenOffice.org1.1.2 (without the dash)
 
Old 07-16-2004, 09:17 AM   #14
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
Thanks carboncopy, I didn't know that.

ajbrouwe:
If you are working in a terninal and you are typing a path or filename, try typing the first two or three letters of the path like so:

rm -r /ro

then press tab and it should auto-complete:

rm -r /root/

then repeat for the next bit:

rm -r /root/Op

press tab:

rm -r /root/OpenOffice1.1.2

if it doesn't auto-complete then either there are more than one file with the same(ish) name or it doesn't exist.

Last edited by Tuttle; 07-16-2004 at 09:19 AM.
 
Old 07-19-2004, 08:53 AM   #15
carboncopy
Senior Member
 
Registered: Jan 2003
Location: Malaysia
Posts: 1,210
Blog Entries: 4

Rep: Reputation: 45
You are welcome, Tuttle.

The bashcompletion package in slackware-10.0/extra is really great.

It will detect what command you are using for example:

tar -xjvf linux-

and you press tab, it will automagically choose .tar.bz2 file. (-j flag)
and same with installpkg it will automagically choose .tgz file.

How is the OpenOffice installation?
 
  


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
OpenOffice install in FC$ ApocalypticDreamz Linux - Software 6 10-24-2005 09:30 PM
THe best way to install OpenOffice shole Linux - Software 7 04-12-2005 03:53 AM
Openoffice install mm3000 Slackware 12 08-02-2004 04:22 AM
Install OpenOffice post Distro install? xrobevansx Linux - Newbie 4 06-15-2004 05:43 AM
need to install OpenOffice devit Linux - Software 10 02-07-2004 01:01 AM

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

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