LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-07-2007, 03:46 PM   #1
linuxpokernut
Member
 
Registered: Jul 2007
Distribution: Slackware 14
Posts: 237
Blog Entries: 8

Rep: Reputation: 59
Learn to compile before or after I choose a second distro?


I am currently running Moonshine, and from what I understand there were problems with compiling. Compiling is one of the last tasks I have to conquer as a nublet. I am looking to try a new flavor of linux, still planing on keeping FC7 but I want to try (at least) slackware and debain.

I have remotely compiled eggdrop bots a few times and once or twice in the past (maybe FC4).

If I install debain or slackware will I have to compile anything to get them up and running? I would guess that I will with slackware, but possibly not on debain as it utilizes package managers much like fedora.

Also a link to a compiling primer would be a nice bonus...

As always thanks in advance.
 
Old 10-07-2007, 04:04 PM   #2
Tischbein
Member
 
Registered: Oct 2006
Distribution: debian
Posts: 124

Rep: Reputation: 15
You don't need to know how to compile anything in order to run Debian. However you're right, learning to write programs & compile them is definitely something you need to do in order to gain complete and utter control over your computer. Well, not quite definitely. I have three hundred slaves in a dungeon writing a new network protocol stack for me as I type because I heard that some guy in Redmond had one that uses even more memory than mine. Intolerable! But then if everyone had the luxury of programmers to do their every bidding it wouldn't be fun having them anymore...

What happens if you type "gcc --version" in a terminal window on your Black Hat box?

Regards, Hvitben
 
Old 10-08-2007, 07:42 AM   #3
Su-Shee
Member
 
Registered: Sep 2007
Location: Berlin
Distribution: Slackware
Posts: 510

Rep: Reputation: 53
No, you won't have to compile on Slackware either, because - despite of what the public says - there ARE package collections and package manager for Slackware, if you choose to use them.

And "compiling" stuff gets usally as complicated as "configure && make && make install" in the appropriate direcory.

At least on Slackware.
 
Old 10-08-2007, 07:59 AM   #4
b0uncer
LQ Guru
 
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131

Rep: Reputation: Disabled
I agree, nowadays you can pick up pretty much any distribution and trust that you don't have to compile anything to get it running, and not necessarily ever after either..you can, if you want, but in most cases there are (pre-compiled binary) alternatives. Learning to compile is not difficult, as it's usually just a matter of running an executable (gcc, for example), possibly with some command-line options to get the desired result; sometimes it's even easier, because many projects are developed in such a way that they utilize something that automates everything; an example of this is make. With it there's no need to compile and link every file the right way (assuming that we're talking about something like C here), since it's already described in a special Makefile, so all you need to do is run a script that configures the sources for your environment - for example checks that you have all that is needed, and if there are optional packages, which ones of them you have => which ones need to be "taken in" during compilation - and after it just execute 'make', which follows the (developer-given) instructions to build the program more or less automatically. The usual case is to run the configure script (in the source directory), and if it succeeds (you have everything in place to get the compilation successfully done), run 'make' which does a lot of things (works with compiler/linker etc.) and eventually the binaries are produced; in many cases you'll then run, if you want, a special make rule called 'install' ('make install' is the command) which follows the 'install' rule and places the produced binaries and other files into right places on the system (binaries to a bin/ directory, man pages to man page directory, system-wide configuration files to /etc and so on).

Learning to program is then a whole different thing. It's definitely useful, but takes more time - it's something you don't learn in a day, not well at least (the longer you do it, the more you know; basics are often quickly learned, though).

All the needed instructions to compile a source code into a working thing are usually (read: should be) included in the package; they're described in files called README and/or INSTALL. After reading them you know what to do - as long as you have all the needed tools installed (without a compiler you can't compile). On Debian you don't necessarily have them right out of the box unless you chose so, and that's the case with many other operating systems as well (Fedora too, if I'm not wrong). On most distributions you can select them during the setup, but not always.

You don't need to know how to compile source code in order to install a new distribution - go ahead, download and install it, be it Debian or Slackware. Learn to compile when you have time, it's easy as long as you read the instructions (and after some time you'll know your way around without them too).
 
Old 10-08-2007, 04:50 PM   #5
Kahless
Member
 
Registered: Jul 2003
Location: Pennsylvainia
Distribution: Slackware / Debian / *Ubuntu / Opensuse / Solaris uname: Brian Cooney
Posts: 503

Rep: Reputation: 30
I tend to do quite a bit of compiling on my slackware machines, but usually that is because I use alot of packages that not enough people care about to actually package. I like to experiment


If you want to be compiling things, slack is a great environment to work in.
 
Old 10-08-2007, 06:06 PM   #6
dafunks
Member
 
Registered: Sep 2007
Location: UK
Distribution: Slackware 12
Posts: 62

Rep: Reputation: 15
Does it come in handy? Yes. Do you absolutely need to? No! As stated previously in the thread, compiling most packages from source is a three step process anyway. The README or INSTALL documentation will always keep you right.
 
Old 10-09-2007, 04:56 AM   #7
Su-Shee
Member
 
Registered: Sep 2007
Location: Berlin
Distribution: Slackware
Posts: 510

Rep: Reputation: 53
I usally do compile much either, but I could have things easier if I want to.

And btw - "programming" does not necessearily involve knowing how to compile things anymore.

One can easily program very sophisticated and interesting stuff in programming languages without ever touching a compiler.

And even then writing a simple makefile is really no big deal, that's not where the challenge awaits you.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to choose a distro kernel77 Linux - Newbie 7 12-07-2006 05:10 AM
Help Me Choose A Distro itz2000 Linux - Distributions 26 02-18-2006 09:03 AM
What distro should I choose ZackTheSpacestation Linux - Distributions 5 09-28-2005 06:50 AM
Which distro should i choose ? RedRabbit Linux - Distributions 4 02-10-2004 10:56 AM
Which Distro to Choose???!!! Humanguin Linux - Newbie 19 07-03-2003 03:22 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:45 AM.

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