LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 03-11-2004, 05:07 AM   #1
M.R
Member
 
Registered: Mar 2004
Location: Sydney
Distribution: Win2k, Ubuntu 5.04
Posts: 48

Rep: Reputation: 15
RH9 - Software


Hi, i will be running Red Hat 9 soon. I just wanted to know, how does one go on about install, uninstall and upgrade of the software.

1.If i wanted to install something, would i just unzip it, then ./configure, ./make, and ./make install ?

2. Is there a folder where all the software are installed (such as Program Files on Windows)

3. If so, would it be best to unzip it in that folder and install it from there?

4. For uninstall, how does one go on about it? Just delete all the files? Or would there be an uninstaller? Would there be something like the registry on windows, where you have to get rid of the files as well?

5. To upgrade to a newer version, would it be best to uninstall/delete the previous version first? For example last time i tired to update gaim, i download the new version, just unzipped it in the same place and run ./configure, /make, and ./make install. But i don't think anything happened. So how does one go on about upgrading current software installed on the system?

Thanks

MR

Another question, would it be a security issuse to use Red Hat 9? Since Red Hat doesn't support it anymore. Should i upgrade to Fedora? I have a PIII 500, 256MB RAM, 4GB HD. Will i get better performence with Fedora?
 
Old 03-11-2004, 05:52 AM   #2
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
well on redhat-based systems you usually don't have to compile from source code unless you want to... you can use binary "packages"...

the package management system in redhat is called "rpm"... it means redhat package management or something like that...

look at the man page for it for all the info:

man rpm

or this link:

http://www.die.net/doc/linux/man/man8/rpm.8.html


BASICALLY:


to _install_ an rpm:

rpm -i your-file.rpm


to _remove_ an rpm:

rpm -e your-file


to _upgrade_ and rpm:

rpm -U your-file.rpm





on a side note:

personally, the first rpm i'd install is apt, so as to avoid the dependancy nightmare that rpm can drag you into...


apt for red hat 9 can be obtained here:

http://shrike.freshrpms.net/rpm.html?id=1212


the best documentation for apt would of course be the official debain apt howto:

http://www.debian.org/doc/manuals/ap.../index.en.html

(it's an interesting read)

Last edited by win32sux; 03-11-2004 at 05:55 AM.
 
Old 03-11-2004, 05:59 AM   #3
M.R
Member
 
Registered: Mar 2004
Location: Sydney
Distribution: Win2k, Ubuntu 5.04
Posts: 48

Original Poster
Rep: Reputation: 15
I am actually going with Fedora now. So i guess it's the same thing?

MR
 
Old 03-11-2004, 06:05 AM   #4
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Hi M.R!

Welcome to LinuxQuestions.org. You've got a bunch of questions up there

Quote:
1.If i wanted to install something, would i just unzip it, then ./configure, ./make, and ./make install ?
No, wrong start. The first thing you will do is to read the README file of the program you want to install. In Linux we have a term called RTFM (Read the fuc*** manual). Read it always first, because during ./configure a lot of instructions can be passed to the application, as location to install, enable or not a function (as mplayer to be installed with gui support has to be used with "./configure --enable-gui". for example).

Quote:
2. Is there a folder where all the software are installed (such as Program Files on Windows)
Usually they go to /usr/local. Always read the manual, you can install them, at first, wherever you please .

Quote:
3. If so, would it be best to unzip it in that folder and install it from there?
It won't matter. Wherever you run the install script, or you either specify where to install or accept the defaults, regardless to where you are running the script from. Only root can install/remove program though...

Quote:
4. For uninstall, how does one go on about it? Just delete all the files? Or would there be an uninstaller? Would there be something like the registry on windows, where you have to get rid of the files as well?
When compiling from source, most likely that application has an uninstall script(usually at the same folder that you ran ./configure). If not, delete it and remove all links to the application... This is for source installation, rpm's are totally different beasts...

Quote:
5. To upgrade to a newer version, would it be best to uninstall/delete the previous version first? For example last time i tired to update gaim, i download the new version, just unzipped it in the same place and run ./configure, /make, and ./make install. But i don't think anything happened. So how does one go on about upgrading current software installed on the system?
Read the manual for that application first. Some ask to first remove the application, some won't. Upgrading rpm's are again, totally different beasts.

Quote:
Another question, would it be a security issuse to use Red Hat 9? Since Red Hat doesn't support it anymore. Should i upgrade to Fedora? I have a PIII 500, 256MB RAM, 4GB HD. Will i get better performence with Fedora?
Redhat and Mandrake are slow. At least for me, they have always been (2ghz processor here). That might not be the case for others. No matter the services I'm running or not, it runs slow for me. I'd recommend a better (again in my opinion) distribution, newbie friendly, easy to install and upgrade any package with a simple command line. Libranet 2.7 Classic Free Edition:

www.libranet.com

you can read (please do it, you won't regret) a review of it here:

http://www.linuxquestions.org/review...php?product=99

Just for your information, I've installed Libranet 2.7 in a Compaq with 166 MHZ processor, XFCE(http://www.xfce.org/index.php) desktop enviroment, 32 of RAM and it runs very well, as did Slackware 9.0 in that machine. So that won't be a problem for you computer. Libranet 2.8 and above (non-free) provides even 3D acceleration right out the box.

Best luck!

Last edited by Mega Man X; 03-11-2004 at 06:13 AM.
 
Old 03-11-2004, 06:06 AM   #5
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Another thing, this is a great thread about installing programs, wrote by one of our mods:

http://www.linuxquestions.org/questi...threadid=45094

Regards!
 
Old 03-12-2004, 01:28 AM   #6
M.R
Member
 
Registered: Mar 2004
Location: Sydney
Distribution: Win2k, Ubuntu 5.04
Posts: 48

Original Poster
Rep: Reputation: 15
Thumbs up

Thank you for your great support Megaman X and win32sux also. I just read the libranet review and it sounds excellent. I wanted a Debian based distro, but something easier, as i am still new. It looks like the best distro for me. Thanks again.

MR
 
Old 03-12-2004, 01:41 AM   #7
mossy
Member
 
Registered: Aug 2003
Location: USexIRL
Distribution: *nix
Posts: 849

Rep: Reputation: 30
Megaman X is the man.

My input [which has helped me immensely, no end and that means infinity] is a dae-cent oul - boook. Believe it or not. You will not be able to horde all the bileedin boo-ooks you can muster in the library. I keep sketch on all the sales - you will be surprized. there are plenety of oul booooks that will teach youall the basics an get you a rollicking kickstart.
 
Old 03-12-2004, 02:43 AM   #8
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Cool I hope we can get more peoples to use Libranet. It really is great. I wanted to make LinuxQuestions.org/Libranet forum more active too so it's always good to have another member. win32sux has great points. Redhat's apt-get works neat.

Quote:
Megaman X is the man.
Thanks mossy mate!. I really appreciated it . I thought most of the members in this forum hated me because I have/love the Microsoft Xbox, ghehe . Anyway, thanks. I will work much more happy today . Even if it's to serve food for some riches snobs in a boat. Oh well :S
 
  


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
Server status software for RH9 fturcic Linux - Software 1 03-09-2005 07:44 AM
IDE Software RAID1 (RH9) hoover93 Linux - Hardware 1 08-13-2004 10:37 PM
installing software on rh9 TheGateKeeper Red Hat 3 08-09-2004 08:38 AM
Does rh9 comes with mailserver software? israel Linux - Software 1 01-24-2004 11:50 PM
Vedio Software on RH9 ahmerali Linux - Software 3 10-22-2003 04:15 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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