Stop Microsoft

Operating Systems => Linux and UNIX => Topic started by: gilligan8503 on 7 September 2002, 00:50

Title: installing and linux
Post by: gilligan8503 on 7 September 2002, 00:50
i have decided that i hate microsoft (many reasons, most minor) but i wont get into that.

im wanting an ibook for collage, but that is about a year off.  the point is, i unistalled windows xp pro and installed red hat linux 7.3.  installing the operating system was easy, installing programs on the operating system is not.

im really not sure how to install applications and i need help (i dont have an instruction manual).

???

Thanks in advance.
Title: installing and linux
Post by: Master of Reality on 7 September 2002, 00:59
.RPM - you can install .RPM files by typing into the commandline:
# rpm -Uvh /path/to/something.RPM
the U is for upgrade/install. v is for verbose, and h will display hash marks to display the progress.

source (tar.gz, tgz) - isntall these by cding to the diectory where you want them installed (it should make its own directory later). Then do:
# tar zxvf /path/to/app.tar.gz
this will ungzip and untar the file.
if it is just a .TAR then do:
# tar xvf /path/to/app.tar
if it is .tar.bz2 then do:
# unbzip2 /path/ro/app.tar.bz2
# tar xvf /path/to/app.tar
OR
# tar jxvf /path/to/app.tar.bz2
this will unbzip2 and untar it.
 
After that you must cd into the directory you just unpacked then type:
# ./configure &&
> make &&
> make install
(the && will make it so that the next command will only run if the previous command runs)
Make sure you read INSTALL and README files before installing in case there is any special parameters you must use.
# less INSTALL

If the file is a binary .bin then just run it by typing the full path to it or if you are in its directory, then tpye ./installer.bin ("." means current directory) and that will proabably run an install program.

Is there anything i missed
Title: installing and linux
Post by: gilligan8503 on 7 September 2002, 01:08
thank you again.
post was fast, and i needed that :)
i tried my .bin file, and it worked, thanks a lot!
Title: installing and linux
Post by: voidmain on 7 September 2002, 01:15
Someone should start our own MES FAQ that we can add to and point people to. It could end up being quite the rage. I could write a database driven PHP app to do something like this (or there might already be one out there).  

I would host it on one of my servers but I would rather host it somewhere else. It could become an importand resource and draw more traffic if done right.  Wait, hasn't this been brought up before? Seems to have a familiar ring...

It could go something like this:

Code: [Select]

[ September 06, 2002: Message edited by: void main ]

Title: installing and linux
Post by: KernelPanic on 7 September 2002, 01:39
Nice plan
Title: installing and linux
Post by: Master of Reality on 7 September 2002, 07:16
well.. it cant/shouldnt be on my server, its down for a few hours weekly after i screw around with it and it isnt very fast.