Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
03-31-2006, 10:55 PM
|
#1
|
Member
Registered: Mar 2006
Distribution: Lilidog!
Posts: 347
Rep:
|
how do i install rpms properly?
Ok, so I'm new to linux and need a helping hand. First. How do you install an entire rpm package in a download? What I am saying is that I downloaded open office on my wifes computer, transferred it to cd, and am able to load it onto my computer. . . . but! I do not understand how to install it. When I open the package, it shows me all of the rpm's. If I open one rpm, it tells me it needs another rpm(in the same package) in order to install. When I go to install the one it says it needs, I get the same type of problem(it tells me it needs another rpm in the package to install.
Right then! Obviously, I need to somehow install the whole thing at once, so it will all take at the same time, but . . . . I don't have a clue, and am here trying to get one  I really need someone to write out step by step how to do this please. This isnt the only program I've run into that does this, so by logic, I'm the one with the problem, not the program. As a side note, when windows 95 came out, I almost started in wiith unix . . . . . and now . . . . aaarrrgggg!!!!
|
|
|
03-31-2006, 11:29 PM
|
#2
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
After you download and unpack**, you have a folder called "RPMS". In this folder, simply type rpm -i *.rpm (This command runs the rpm installer on every file that ends with .rpm)
**When you download, you will have a file ending in .tar.gz To unpack this, type "tar -xvf <filename> (Do this in the folder where you want OOo to wind up---eg /opt)
|
|
|
03-31-2006, 11:53 PM
|
#3
|
Member
Registered: Mar 2006
Distribution: Lilidog!
Posts: 347
Original Poster
Rep:
|
When you say type in this folder do you mean open a terminal window? I tried that in /opt and put: "tar -xvf 00o_2.0.2Linuxintel_install.tar.gz is the " supossed to be there?
|
|
|
03-31-2006, 11:54 PM
|
#4
|
Senior Member
Registered: Jan 2005
Distribution: Slackware, BackTrack, Windows XP
Posts: 1,020
Rep:
|
hi,
in case your rpm complains about dependencies.....you can come out with:
#rpm -ivh --nodeps name.rpm .......in many cases it will work. Otherwise resolve the dependencies first.
regards
|
|
|
03-31-2006, 11:54 PM
|
#5
|
Member
Registered: Mar 2006
Distribution: Lilidog!
Posts: 347
Original Poster
Rep:
|
right now I have the whole package in a folder I named Temp inside my desktop folder
|
|
|
04-01-2006, 12:50 AM
|
#6
|
Member
Registered: Mar 2006
Distribution: Lilidog!
Posts: 347
Original Poster
Rep:
|
I know this is simple stuff, but I really need somebody to walk me through this start to finish as though I was a 6 year old. After that, I'll have it! The name of the file program is: 00o_Linuxintel_install.tar.gz ( this is open office) I copied it off of a cd I downloaded from the internet, and put it in: file:/home/sleekmason on my computer
I really dont know what I'm doing at all. I dont know where to write (in a terminal?), or what to write or any number of steps I might need to take to make this work.
I know this will be a little time consuming for any body who takes the time and I am extremely grateful for your help.
|
|
|
04-01-2006, 01:12 AM
|
#7
|
Senior Member
Registered: Jan 2005
Distribution: Slackware, BackTrack, Windows XP
Posts: 1,020
Rep:
|
|
|
|
04-01-2006, 09:28 AM
|
#8
|
Member
Registered: Mar 2006
Distribution: Lilidog!
Posts: 347
Original Poster
Rep:
|
I tried this but it doesnt want to do it. Is this correct ? or was something left out?
I get "no such file or directory"
(3) Now you will need to navigate to your folder with the .gz file in it using the change directory command (cd)
cd path_to_the_00o_Linuxintel_install.tar.gz file
|
|
|
04-01-2006, 03:42 PM
|
#9
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
I'll give you some help with this since you seem to be struggling. - Download or copy OOo_2.0.2_LinuxIntel_install.tar.gz to somewhere in your home directory e.g. /home/user/downloads.
- Start a terminal such as Konsole or gnome-terminal.
- Change into the place you put OOo_2.0.2_LinuxIntel_install.tar.gz by doing something like
Code:
$cd /home/user/downloads
- Extract the contents of OOo_2.0.2_LinuxIntel_install.tar.gz by doing
Code:
$tar -zxvf OOo_2.0.2_LinuxIntel_install.tar.gz
- Change into the extracted RPM subdirectory of the extracted directory by doing
Code:
$cd OOB680_m5_native_packed-1_en-US.9011/RPMS
- If you are not using GNOME, delete openoffice.org-gnome-integration-2.0.2-5.i586.rpm by doing
Code:
$rm openoffice.org-gnome-integration-2.0.2-5.i586.rpm
This prevents you having dependency issues with gnome-vfs.
- Switch to root by doing
- Install the rpms by doing
Code:
#rpm -Uvh *.rpm desktop-integration/*redhat*
Last edited by reddazz; 04-05-2006 at 03:09 PM.
Reason: fix minor error
|
|
|
All times are GMT -5. The time now is 06:04 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|