Author Topic: Call me an idiot but...  (Read 670 times)

TheGreatPoo

  • Member
  • **
  • Posts: 179
  • Kudos: 0
Call me an idiot but...
« on: 13 August 2002, 23:08 »
I don't know how to install a program!  I downloaded Limewire.bin for Linux and don't know how to install it.  I know where it is in the Home Directory (which is still taking some getting used to) and it has the consol icon.  How do I put this on my pooter?

If you think I am dumb then think again, I thought it first!  :D
When Bill Gates throws you a curve ball, hit him in his jewels with the bat!

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
Call me an idiot but...
« Reply #1 on: 13 August 2002, 23:25 »
to install a .RPM you can go into a console and then type 'rpm -Uvh program.rpm' Uvh is for upgrade (which will install it, but looks to check if there is an earlier version), verbose which gives you more info, hash marks marking the progress of install.
That will install the .RPM for you.

a .tar.qz or .tgz are gzipped archives, to install:
1.cd to directory where you want to have it.
2. 'tar zxvf /path/to/program.tar.gz'
3. cd to ./program ( '.' means current directory)
4. less INSTALL and less README (less is a program for viewing files like the README or INSTALL file if there is one)
5. ./configure or /path/to/program/configure (runs the program configure)
6. make (compiles some stuff)
7. make install (compiles the program)
thats it.

if its just .tar then do exactly the same as above  but change the tar zxvf /path/to/program to 'tar xvf /path/to/program.
the 'z' is for automatically running the gunzip program to change it from .tar.gz to just .tar, you could also do this by doind 'gunzip program.tar.gz' and that will make it program.tar.


if its a .bin binary file then all you do is '/path/to/program.bin' and it will do the rest.

if its a .sh then do 'sh program.sh'

if it doesnt have an extension then try chmodding to change the permissions so it can be executed:
chmod +x program
then try running the program:
./program or /path/to/program

remember that to run a program it isnt relative links so you have to include the path such as:
./program or /path/to/program

[ August 13, 2002: Message edited by: Master of Reality / Bob ]

Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

Bazoukas

  • Member
  • **
  • Posts: 866
  • Kudos: 140
    • http://whitehouse.com
Call me an idiot but...
« Reply #2 on: 13 August 2002, 23:26 »
I am in class now so i cant say much but here is a small web site i made.

Geocities web site so you may need to drag and drop.

 It tells you on how to install NVIDIA drivers but you can follow the same procedure with any program you want to install.

 Just remember to put the name of the file you want to install AS YOU SEE IT.


 I assume that you downloaded the .tar file.
 If not, then am afraid the instructions on my web site wont be much help for you in this particular program
Yeah

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
Call me an idiot but...
« Reply #3 on: 13 August 2002, 23:29 »
i think limewire is a binary .bin file so it should be easy to isntall.
I dont recommend Limewire though, i recomend gtk-gnutella for Linux.
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
Call me an idiot but...
« Reply #4 on: 13 August 2002, 23:31 »
oh yeah... kde has the graphical interface package manager 'kpackage' for RPMs but i never use it and have no clue how to work it.
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

TheGreatPoo

  • Member
  • **
  • Posts: 179
  • Kudos: 0
Call me an idiot but...
« Reply #5 on: 14 August 2002, 00:10 »
WOW!  :eek:    This is hard!  I am so used to Windows and Mac OS 9.1.  OK, I am trying to install Limewire (I know you recommend GTK-Gnutella.  I have in fact downloaded that too but I want to start on something simple) and it is a .bin file.  When I go into the console, I typed "/home/shane/Limewire/Limewirelinux.bin" which is the exact filename and location.  I hit enter and all it does is tell me that the directory or file does not exist.  :confused:

OIY!  This is going to take some getting used to!

Thanx for the replies by the way!
When Bill Gates throws you a curve ball, hit him in his jewels with the bat!

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
Call me an idiot but...
« Reply #6 on: 14 August 2002, 00:32 »
you might not want your name on the internet?
the easier way than typing in the full path would be to use the autofinish (i dunno what its actually called).
when you start typing a path like /ho and then press tab it will finish the word for you or if there is more than one that starts with /ho it will show you the possibilities. This means that you cant get it wrong if you use tab. You must have typed it in wrong or something, remember that Linux is case sensitive.
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
Call me an idiot but...
« Reply #7 on: 14 August 2002, 00:48 »
I just dled limewire.
you have to change the permissions on Limewire.bin to let it be executed.
do:
chmod a+x Limewire.bin
that will let all users execute it.

if you ever list the contents while in the console and the program you want to execute isnt green (in mandrake and redhat at least) then it isnt executable and needs to be. Make sure you are in root whenever installing anything. You su into root by typing 'su -' or 'su - root' that will give you a root login shell.

let me know if ya get it workin'. I got an error when i tried to install it.

[ August 13, 2002: Message edited by: Master of Reality / Bob ]

Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

CaptainCool

  • Member
  • **
  • Posts: 129
  • Kudos: 0
Call me an idiot but...
« Reply #8 on: 14 August 2002, 01:53 »
I need help installin it to I can get it to extract but when it tries to install it says "No Java virtual machine could be found from your PATH environment variable.You must install a VM prior to running this program"

Anyone know were i can get a VM at???

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
Call me an idiot but...
« Reply #9 on: 14 August 2002, 02:10 »
i assume that means that you dont have Java installed on your computer. Search www.google.ca/linux for it. I cant remember where i dled it from for my other computer (its somewhere in the linux forum though).

[ August 13, 2002: Message edited by: Master of Reality / Bob ]

Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

TheGreatPoo

  • Member
  • **
  • Posts: 179
  • Kudos: 0
Call me an idiot but...
« Reply #10 on: 14 August 2002, 03:13 »
I GOT LIMEWIRE INSTALLED!!!!  :D  

I know that doesn't sound like much but it is for me.  I actually got it to work quite some time ago, I have just been playing with it and forgot to tell everybody!  Maybe tomorrow I'll try GTK-Gnutella

One question though, I don't have any sound!!!???  My hardware is supported and the driver (form what my limited knowledge can see) is working but no dice!!??  :confused:
What do I do to fix that?  I know my hardware is supported; hell, this whole motherboard is listed on Mandrake's site!  I've already downloaded two songs and I can't listen to them!  Any suggestions?

Thanx for everyone's help with the install and any further help will be worshipped upon!  ;)
When Bill Gates throws you a curve ball, hit him in his jewels with the bat!