LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 09-06-2002, 12:50 PM   #1
needamiracle
Member
 
Registered: Apr 2002
Location: North Attleboro, MA
Distribution: RH 7.3
Posts: 106

Rep: Reputation: 15
Can't stand RPMs


What distro sticks to ./config(ure) make, make install montra? I hate RPMs. I've been using RH7.3, and have some spare PCs lying around (go to a local corporation and ask for old hardware...I was able to build 6 PCs w/ an average config of 192MB ram 400MHz AMD/PII, 10GB HDs from stuff that they no longer used...they gave me 9 machines total). I have an extensive library of books about most things Linux and the majority of the time the compile method is prefered to the RPM method. So what distro is still *pure*.

Regards,
Ryan
 
Old 09-06-2002, 01:00 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Slackware... ??
 
Old 09-06-2002, 03:22 PM   #3
ChaosX2
Member
 
Registered: Aug 2001
Location: Sacramento, CA
Distribution: Gentoo 1.4+
Posts: 195

Rep: Reputation: 30
What Linux needs is a Install Shield Like program with a management feature for uninstalling the apps.
 
Old 09-06-2002, 03:30 PM   #4
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Quote:
Originally posted by ChaosX2
What Linux needs is a Install Shield Like program with a management feature for uninstalling the apps.
Install Shield only won't help. The problem is in dependencies. In Linux, most programs are not statically linked to their libraries. In Windows, they are. When a program don't have dependencies (like OpenOffice or Mozilla), there's no problem. On the other hand, all programs with statically linked libraries (for example popular ones like ssl) will make a standard Linxu install BIGGER.
 
Old 09-06-2002, 03:34 PM   #5
ChaosX2
Member
 
Registered: Aug 2001
Location: Sacramento, CA
Distribution: Gentoo 1.4+
Posts: 195

Rep: Reputation: 30
Quote:
Originally posted by Mara
Install Shield only won't help. The problem is in dependencies. In Linux, most programs are not statically linked to their libraries. In Windows, they are. When a program don't have dependencies (like OpenOffice or Mozilla), there's no problem. On the other hand, all programs with statically linked libraries (for example popular ones like ssl) will make a standard Linxu install BIGGER.
First off your wrong about the statically linked vs dynamically linked. Many windows apps have dynamically linked libraries (DLL). In fact I believe Linux/Unix uses a much better format for having dynamically linked libs. I mean look at Open Office/Star Office, they both have a very nice install program.
 
Old 09-06-2002, 03:59 PM   #6
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
In my understanding, refering to the original question, the most source based linux distro isn't slackware nor RH and Co., it is gentoo - during isntall you are given precompiled binaries to manipulate tar, filesystem manipulation, etc, you install the distro by extracting all the needed programs from bz2balls (precompiled binaries), then you compile your own kernel, and then you are off to wonder how to install everything else if you don't feel right in home with compilation from source. Another is LFS. I think you can put these two distros side by side, even Slackware has its own tool to install pre-compiled binaries.

Last edited by neo77777; 09-06-2002 at 04:01 PM.
 
Old 09-06-2002, 04:33 PM   #7
needamiracle
Member
 
Registered: Apr 2002
Location: North Attleboro, MA
Distribution: RH 7.3
Posts: 106

Original Poster
Rep: Reputation: 15
Here is the thing...I like the RH graphical installer. I think what I will do from now on is to install just the development packages and the kernel development stuff. Then install everything from source from there on in.
 
Old 09-06-2002, 05:03 PM   #8
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
What I actually did with my RH system - I installed the bare minimum to boot the system and bring up network and internet, and from that point went straight for source (except a couple of packages like XFree86, mozilla, glibc, libc, gcc, etc. I installed them as precompiled RPM's)
 
Old 09-07-2002, 03:17 PM   #9
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Quote:
Originally posted by ChaosX2
First off your wrong about the statically linked vs dynamically linked. Many windows apps have dynamically linked libraries (DLL). In fact I believe Linux/Unix uses a much better format for having dynamically linked libs. I mean look at Open Office/Star Office, they both have a very nice install program.
Maybe I wasn't clear enough, maybe it's because my lack of Windows knowledge, maybe both...
What I meant is that in Windows a situation where you can't install a program because you have libraries in a wrong version is very rare (only Service Packs and DirectX, as far as I know), when in Linux it's quite often. The other reason may be that in Linux many programs use one library, because it's OpenSource, it's code is available etc. In Windows, many libraries are properitary.
I think that Unix/Linux format of dynamically linked libraries is better. But in it's not perfect. RPM format needs a replacement, maybe a never version, that will handle dependencies easier. But I'm not sure how to do this...
 
Old 09-07-2002, 06:10 PM   #10
ChaosX2
Member
 
Registered: Aug 2001
Location: Sacramento, CA
Distribution: Gentoo 1.4+
Posts: 195

Rep: Reputation: 30
Quote:
Originally posted by Mara
Maybe I wasn't clear enough, maybe it's because my lack of Windows knowledge, maybe both...
What I meant is that in Windows a situation where you can't install a program because you have libraries in a wrong version is very rare (only Service Packs and DirectX, as far as I know), when in Linux it's quite often. The other reason may be that in Linux many programs use one library, because it's OpenSource, it's code is available etc. In Windows, many libraries are properitary.
I think that Unix/Linux format of dynamically linked libraries is better. But in it's not perfect. RPM format needs a replacement, maybe a never version, that will handle dependencies easier. But I'm not sure how to do this...
Ok well since you lack some of the windows dll info I'll do my best to inform you. Actually a ton of windows programs use DLL's (Dynamically Linked Libraries) In fact one of the biggest problems with windows is known as DLL hell, because you can only have one version of a DLL on the machine. And being a windows programmer I can tell you this problem is very common and breaks a lot of older programs. The advantage of linux is you can have different versions of the "so" (aka dynamically linked library) I think it is very possible for someone to write some type of install shield. Please if anyone knows a reason why not tell me.
 
Old 09-08-2002, 12:19 AM   #11
pbharris
Member
 
Registered: Apr 2001
Location: chicago, IL
Distribution: debian, redhat
Posts: 280

Rep: Reputation: 30
hello,
you can have soemthing like (actually much better than) isntallshiled - it is called checkinstall , it makes deb, tgz or rpm packages out of programs compiled from source.

http://asic-linux.com.mx/~izto/checkinstall/
 
Old 09-08-2002, 04:33 AM   #12
GT I.N.C
Member
 
Registered: May 2002
Location: Australia, Sydney, St.Clair
Distribution: Rh 7.3
Posts: 836

Rep: Reputation: 30
i have been hearing alot about this RPM WIzard, it is suppose to be similar in function to the Install Shield of windows, and there are 3 versions for KDE GNOME and X11, anyone know much about it ?
 
Old 09-08-2002, 04:49 AM   #13
crashmeister
Senior Member
 
Registered: Feb 2002
Distribution: t2 - trying to anyway
Posts: 2,541

Rep: Reputation: 47
What is the problem?
apt-get debian or emerge gentoo - no rpm's needed.
There is a apt-get version for rpm's.I don't know how good it is though.
 
Old 09-09-2002, 02:29 PM   #14
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Quote:
Originally posted by ChaosX2
Ok well since you lack some of the windows dll info I'll do my best to inform you. Actually a ton of windows programs use DLL's (Dynamically Linked Libraries) In fact one of the biggest problems with windows is known as DLL hell, because you can only have one version of a DLL on the machine. And being a windows programmer I can tell you this problem is very common and breaks a lot of older programs. The advantage of linux is you can have different versions of the "so" (aka dynamically linked library) I think it is very possible for someone to write some type of install shield. Please if anyone knows a reason why not tell me.
Thanks for info, ChaosX2. I program only for Linux, so it's hard to believe that there might be only one version of a library allowed... Thanks. I learn a new thing every day.
 
Old 09-09-2002, 02:39 PM   #15
ChaosX2
Member
 
Registered: Aug 2001
Location: Sacramento, CA
Distribution: Gentoo 1.4+
Posts: 195

Rep: Reputation: 30
Quote:
Originally posted by Mara
Thanks for info, ChaosX2. I program only for Linux, so it's hard to believe that there might be only one version of a library allowed... Thanks. I learn a new thing every day.
No problem, I guess my systems programming course was good for something.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
what does etc stand for? aru_04 Linux - General 22 06-24-2012 09:00 AM
what does the T in T1 stand for? jmral23 Linux - Networking 7 11-23-2009 07:22 AM
Stand By? driftingremains Linux - General 3 01-11-2004 11:46 AM
what does rc.d stand for? german Linux - General 4 11-13-2003 07:55 AM
Red Hat RPMs vs Mandrake RPMs pioniere Linux - Distributions 4 02-27-2003 12:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 03:44 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration