LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 06-15-2009, 03:13 PM   #1
fr33r1d3
LQ Newbie
 
Registered: May 2009
Posts: 2

Rep: Reputation: 0
What is your favourite programming dist?


I'm just qurious...

What is your favourite linux dist to program on?
What desktop env?

Any other setup to make your programming sessions a little better?
 
Old 06-15-2009, 03:23 PM   #2
noctilucent
Member
 
Registered: Jun 2009
Distribution: slackware
Posts: 123

Rep: Reputation: 34
Hello. I use Debian SID because Scut from TESO said he uses it in "Phrack prophile on Scut" and I hope to be a famous hacker like him one day. I run notepad under WINE because that's my favorite text editor for when I program in C, C++, C# and Objective-C -- at the same time.

P.S.: It was a (stupid) joke.
 
Old 06-15-2009, 03:23 PM   #3
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
I'm not really sure if there are better/worse distros in terms of programming. If, for example, you want to program in python, it's just a question of installing it (if it's not already installed on your system). The same applies to the desktop environment. What probably matters most is an editor/IDE that you use and how you set it up for a particular programming language. Some people use set up vim or emacs for their programming needs. Others prefer complete IDEs like Eclipse. I would never call myself a programmer - just playing with python and php. I use vim and sometimes emacs with a python mode enabled. That's completely sufficient for me as I don't do any advanced stuff.

That's just 5 pence from a newbie programmer

Last edited by sycamorex; 06-15-2009 at 03:25 PM.
 
Old 06-16-2009, 01:25 PM   #4
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
It makes no odds really,
though some come with more stuff ready installed,

I use BSD.
 
Old 06-16-2009, 03:18 PM   #5
ta0kira
Senior Member
 
Registered: Sep 2004
Distribution: FreeBSD 9.1, Kubuntu 12.10
Posts: 3,078

Rep: Reputation: Disabled
Quote:
Originally Posted by sycamorex View Post
I'm not really sure if there are better/worse distros in terms of programming.
In my experience this is far from true. For example, Ubuntu comes with almost nothing for development: it doesn't have headers for most libraries, it doesn't have manpages 2&3, it doesn't have the glibc infopages, and it doesn't have autotools. Everything must be installed a package at a time when you realize it isn't there. Slackware, on the other hand, allows you to install almost everything needed for programming up front. Not only that, but Slackware allows you access to the packages it installs from the CD, whereas Ubuntu doesn't. One generally has to connect to the web immediately after installing Ubuntu to download the rest of the packages needed, which is quite inconvenient when one is, e.g., waiting for network access for a new server.
Kevin Barry
 
Old 06-16-2009, 03:29 PM   #6
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
Quote:
Originally Posted by ta0kira View Post
In my experience this is far from true. For example, Ubuntu comes with almost nothing for development: it doesn't have headers for most libraries, it doesn't have manpages 2&3, it doesn't have the glibc infopages, and it doesn't have autotools. Everything must be installed a package at a time when you realize it isn't there. Slackware, on the other hand, allows you to install almost everything needed for programming up front. Not only that, but Slackware allows you access to the packages it installs from the CD, whereas Ubuntu doesn't. One generally has to connect to the web immediately after installing Ubuntu to download the rest of the packages needed, which is quite inconvenient when one is, e.g., waiting for network access for a new server.
Kevin Barry
Valid point - I didn't think of it that way. I only used Ubuntu for a few weeks. What I meant is that once you've installed whatever is needed on ubuntu then it isn't any worse/better than slackware as a programming platform, is it?
 
Old 06-16-2009, 04:24 PM   #7
ta0kira
Senior Member
 
Registered: Sep 2004
Distribution: FreeBSD 9.1, Kubuntu 12.10
Posts: 3,078

Rep: Reputation: Disabled
Quote:
Originally Posted by sycamorex View Post
Valid point - I didn't think of it that way. I only used Ubuntu for a few weeks. What I meant is that once you've installed whatever is needed on ubuntu then it isn't any worse/better than slackware as a programming platform, is it?
So far it's been about the same. So long as the packages you need are available, all distros should be comparable after everything is installed. BSD is something else altogether, though.
Kevin Barry
 
Old 06-16-2009, 04:27 PM   #8
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
Quote:
BSD is something else altogether, though
Can you elaborate on it? I'm intrigued
 
Old 06-16-2009, 09:45 PM   #9
ta0kira
Senior Member
 
Registered: Sep 2004
Distribution: FreeBSD 9.1, Kubuntu 12.10
Posts: 3,078

Rep: Reputation: Disabled
Quote:
Originally Posted by sycamorex View Post
Can you elaborate on it? I'm intrigued
Programming in Linux and BSD can be quite a bit different, for one, because some programs and functions with the same names in both systems don't work the same (this is especially apparent in shell scripting.) That's why we have things like autoconf and the POSIX standard, but you still have to pay attention to how things might be implemented differently.
Kevin Barry
 
Old 06-17-2009, 03:39 AM   #10
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
Quote:
Originally Posted by ta0kira View Post
Programming in Linux and BSD can be quite a bit different,
but mostly 99% the same for general everyday programming.
solaris too.
 
Old 06-17-2009, 06:31 AM   #11
giftlftr_23
Member
 
Registered: Oct 2008
Location: I live where I'm currently standing on
Distribution: fedora, opensuse
Posts: 34

Rep: Reputation: 17
I'm using fedora distribution and I usually used the KDE 3.5 before but when the fedora changed its KDE to 4 I switched to gnome, for stability reason.
I just basically installed every devels I need and also some IDE's like netbeans, kdevelop3, eclipse and codeblocks.
 
Old 06-18-2009, 09:46 AM   #12
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
I think it depends on whether your programming is more narrowly focused on specific types of applications and/or programming environments, or whether you are more interested in paddling around trying out different things. In the former case, you can probably install specific packages of interest on any otherwise satisfactory distro. For the latter, it can be very convenient to have a good collection of programming tools pre-installed along with compatible libraries, header files, etc. Exploring things like new programming languages can be a lot friendlier if you know that all of the required pieces are properly installed and are compatible with each other. Recent releases of Fedora seem to have done a good job of this, IMHO.
--- rod.
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
What's your favourite Wine ? frenchn00b General 7 12-17-2007 12:51 AM
Favourite Xbrowser? zhenwu Linux - General 35 07-26-2004 07:32 AM
What's your favourite browser, again? nxny General 27 05-02-2003 12:24 PM
Favourite Distro?? RVK Linux - Distributions 4 03-14-2003 10:32 PM
RPM-dist to Source dist GAVollink Linux - Distributions 4 08-16-2002 10:06 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 03:26 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