Author Topic: installing and linux  (Read 842 times)

gilligan8503

  • Newbie
  • *
  • Posts: 2
  • Kudos: 0
    • http://dreamdepot.tripod.com/
installing and linux
« 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.

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
installing and linux
« Reply #1 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
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

gilligan8503

  • Newbie
  • *
  • Posts: 2
  • Kudos: 0
    • http://dreamdepot.tripod.com/
installing and linux
« Reply #2 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!

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
installing and linux
« Reply #3 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 ]

Someone please remove this account. Thanks...

KernelPanic

  • VIP
  • Member
  • ***
  • Posts: 1,878
  • Kudos: 222
installing and linux
« Reply #4 on: 7 September 2002, 01:39 »
Nice plan
Contains scenes of mild peril.

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
installing and linux
« Reply #5 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.
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'