Stop Microsoft

Operating Systems => Linux and UNIX => Topic started by: rdsii64 on 6 April 2002, 09:54

Title: install a program
Post by: rdsii64 on 6 April 2002, 09:54
I'm a real newbie at linux i just downloaded limeware for linux. now that i have I don't know how to install it. can anyone help me with locating some documentation that I can read to learn the basics of installing programs in linux. incase it helps I am using suse 7.3 personal.

thanx
Ron
Title: install a program
Post by: Calum on 7 April 2002, 22:33
and if it's a .rpm file, just open a prompt, switch to superuser (type 'su' then yr passwrd)
and type:

rpm -Uvh whatever.it.is1386whatever.rpm

and it'll all work out beautifully...
Title: install a program
Post by: Master of Reality on 9 April 2002, 03:53
quote:
Originally posted by X11:
If it is a tar.gz do this:
# gzip -d [filename].tar.gz
# tar -xvf [filename].tar
# cd [program]
# less INSTALL




or,
# gzip -d [filename] | tar -xvf -
should do both at once.
then do
# CD [directory where it extracted itself]
# less INSTALL
normally it would tell you to do:
# make INSTALL

ps.
If i do "make INSTALL" and i forgot to su in and it cant make a directory because permission is denied, does that mean i have to do "make INSTALL" again as root???

[ April 08, 2002: Message edited by: Master of Reality ]

Title: install a program
Post by: voidmain on 9 April 2002, 04:50
quote:
Originally posted by Master of Reality:


or,
# gzip -d [filename] | tar -xvf -
should do both at once.
then do



...or "tar -xvzf filename.tar.gz" will do both.
 
quote:

If i do "make INSTALL" and i forgot to su in and it cant make a directory because permission is denied, does that mean i have to do "make INSTALL" again as root???



Yes, but it will not have to recompile, just the install portion (as long as you didn't do a "make clean").  Of course all of these tags "install", "clean", etc are programmer defined.  The two I mention are fairly standardly implemented.
Title: install a program
Post by: Master of Reality on 10 April 2002, 07:53
if i use "make INSTALL" to intall a program, how do i uninstall it?
Title: install a program
Post by: dbl221 on 10 April 2002, 08:25
I installed LimeWire for Linux 1.7 the other day.  You will need to install the Java virtual machine for Linux...get it from www.sun.com (http://www.sun.com)

The sun documentation was very good, just take the time to read it carefully.

Then go to www.limewire.com (http://www.limewire.com) and read the userguide.
Read everything.
If you are behind a firewall open a port or run nmap to find out what is open.

Remember...install the java virtual machine first.

Good Luck and let us know how you make out.
Title: install a program
Post by: untz on 14 April 2002, 21:47
rdsii64

I'd suggest taking a look at www.linuxdoc.org. (http://www.linuxdoc.org.)  Its the Linux Documentation Project and you can find a lot of great How-tos for Linux.  Its filled with great info for a beginner and a sysadmin.

Here is the howto on building software

http://www.tldp.org/HOWTO/Software-Building-HOWTO.html (http://www.tldp.org/HOWTO/Software-Building-HOWTO.html)
Title: install a program
Post by: rdsii64 on 16 April 2002, 08:05
quote:
Originally posted by untz:
rdsii64

I'd suggest taking a look at www.linuxdoc.org. (http://www.linuxdoc.org.)  Its the Linux Documentation Project and you can find a lot of great How-tos for Linux.  Its filled with great info for a beginner and a sysadmin.

Here is the howto on building software

http://www.tldp.org/HOWTO/Software-Building-HOWTO.html (http://www.tldp.org/HOWTO/Software-Building-HOWTO.html)


thanx a place where i could read up and basically figure it out is just what I needed
thanx
I will let you know how i make out
Title: install a program
Post by: Master of Reality on 17 April 2002, 01:13
when i install soemthing from the source (ie. webim.tar.gz) and have it succesfully installed, how do i take out the installed program????
Title: install a program
Post by: voidmain on 17 April 2002, 07:01
File by file. That's why you should use RPMs if you have an RPM based system, or *.deb if you are using Debian, or *.pkg.tgz if using Solaris, or....

Before package management you either just didn't remove software, or you had to figure out what files were associated with what program and remove them one by one.  Packages/RPMs make install/remove very easy. If you are installing webmin on your RedHat system download the RPM rather than the tar.gz file.

[ April 16, 2002: Message edited by: VoidMain ]

Title: install a program
Post by: Master of Reality on 26 April 2002, 02:36
how do i install a .bin file?
Title: install a program
Post by: Calum on 26 April 2002, 03:01
good question, hopefully somebody (i suspect VoidMain) will answer it!  (http://smile.gif)
Title: install a program
Post by: Master of Reality on 26 April 2002, 04:01
being the computer guru that i am, i figured it out easily.
./[file].bin
Title: install a program
Post by: voidmain on 26 April 2002, 06:15
That's another one that bites n00bs in the but. By default "." (current directory) is not part of your PATH like it is in Windows. This is a security feature and a good practice. You *can* however add "." to your PATH if you aren't too concerned about there being other users on your system that you may be concerned about dropping a trojan in on you.  I suggest adding it as the last thing in your PATH if you do (in your ~/.bashrc file).  That way you don't actually have to type "./" in front of the filename you are trying to run in the current directory.
Title: install a program
Post by: Calum on 26 April 2002, 15:05
ehm, i think typing a dot and a slash is a fair price to pay for security...
Title: install a program
Post by: kinky on 27 April 2002, 05:44
if your running SuSE, your prolly running KDE... so all you really have to do is click the file in Konqueror, and it should open up Kpackage, and you can install with point and click
Title: install a program
Post by: Master of Reality on 28 April 2002, 11:39
what do i do with a .bz2 file?
Title: install a program
Post by: Calum on 28 April 2002, 17:27
yeah, that one pissed me off for a while, you need to unzip it with "bzip2" (man bzip2 for a list of options), but it irritates me that gzip doesn't support .bz2 files...