Results 1 to 10 of 21
how do i install programs when they aren't RPM"s?
I need to install one that ends tar.gz
ok i know that this is a' zip' type file
I need to ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 11-14-2003 #1
how do i install programms?
how do i install programs when they aren't RPM"s?
I need to install one that ends tar.gz
ok i know that this is a' zip' type file
I need to install one that ends .bin
Where and how do i do this?~Mike ~~~ Forum Rules
Testing? What's that? If it compiles, it is good, if it boots up, it is perfect. ~ Linus Torvalds
http://loft306.org
- 11-14-2003 #2Linux Guru
- Join Date
- Apr 2003
- Location
- London, UK
- Posts
- 3,284
for .tar.gz:
tar -zxvf filename.tar.gz
cd filename -(notice no .tar.gz!!)
./configure
make
su
make install
for .bin:
sh filename.bin
Those are only very generic guidelines, you should check the documentation of the software for 100% accurate install details.
Jason
- 11-14-2003 #3Linux Newbie
- Join Date
- Jun 2003
- Location
- 55 (degrees) north 7 west
- Posts
- 126
would that work for most programmes tho?
i honestly dont like the tar.gz files (i think they are a pain in the glutimus maximus to install)Thanks v much
\"Anything bigger than my ego i want it caught and killed\"- Zaphod Beeblebrox
Multi boot:
Win xp home, SuSE 8.2 and Slackware 9.1
- 11-14-2003 #4Linux Guru
- Join Date
- Apr 2003
- Location
- London, UK
- Posts
- 3,284
that is a general guide, like i say though, every bit of software is different so taking 5 mins to read the install instructions will proberly save your a lot of time and headaches
- 11-14-2003 #5Just Joined!
- Join Date
- May 2003
- Posts
- 43
source installs are the best. I say this because my previous experience with a package manager (rpm) is pure crap.
there is nearly alwase a README or INSTALL file bundled in with that program's code. read that for a more detailed instruction on installing that app, in general tho,
./configure && make
su (if not already root)
make install
- 11-15-2003 #6
ok, i've read your how too's and the syntax is spinning in my head
time to start fumbling around probably figure it out~Mike ~~~ Forum Rules
Testing? What's that? If it compiles, it is good, if it boots up, it is perfect. ~ Linus Torvalds
http://loft306.org
- 11-16-2003 #7
Ok coooool! it all worked .
Now how do i create a link (shortcut to the exacutable file)
Ok so i can't spell..~Mike ~~~ Forum Rules
Testing? What's that? If it compiles, it is good, if it boots up, it is perfect. ~ Linus Torvalds
http://loft306.org
- 11-16-2003 #8Linux Guru
- Join Date
- Apr 2003
- Location
- London, UK
- Posts
- 3,284
in X windows you mean?
Which Desktop KDE / GNOME / Other?
- 11-16-2003 #9
KDE
~Mike ~~~ Forum Rules
Testing? What's that? If it compiles, it is good, if it boots up, it is perfect. ~ Linus Torvalds
http://loft306.org
- 11-16-2003 #10Linux Guru
- Join Date
- Apr 2003
- Location
- London, UK
- Posts
- 3,284
Right click on the Kmenu icon at the bottom left and choose menu editor. A new window will open up with your menu in it, and you will have "new" buttons at the top.
Jason


Reply With Quote
