Upcoming Events
Unite 2010
11/10 - 11/12 @ Montréal, Canada

GDC China
12/5 - 12/7 @ Shanghai, China

Asia Game Show 2010
12/24 - 12/27  

GDC 2011
2/28 - 3/4 @ San Francisco, CA

More events...
Quick Stats
84 people currently visiting GDNet.
2406 articles in the reference section.

Help us fight cancer!
Join SETI Team GDNet!
Link to us Events 4 Gamers
Intel sponsors gamedev.net search:

Welcome, brave soul, to the "Intro to Linux Development" series of Articles on GameDev.net! In this series of articles, I will lead you through basic Linux development of applications with a strong focus on games.

The first tutorial, the one you are viewing right now, will introduce you to many of the development tools that Linux has to offer. We will go through basic programs such as vi (a Text Editor), The GIMP (an Image Editor), and GCC (the most common compiler). Various other topics such as packaging and makefiles will also be covered.

As you probably know, most Linux programs are Open-Source. Open-Source means that the source code is freely distributable and everyone can view it. As well as being distributed as Open-Source, most Linux programs are distributed AS source code and do not give out binary files. Why, you ask? Well, certain systems have to include files into a build, while others don't. If someone compiles it on their system, their system will know exactly what it needs to include and exactly what it doesn't need.

Before we begin, let me set the prerequisites for this tutorial. I expect that you will be familiar with the C programming language. I will also assume that you know basic linux commands (rm, cd, ls). One more thing that I'll assume is that you can work your way around your Window Manager. Some popular ones are KDE, Gnome, Window Maker, and IceWM. Let's not forget BlackBox, Sawfish and Enlightenment though!

So, feel up to the challenge? Put on your Tux and Proceed to the Next page where I'll explain vi and The GIMP.



Page 2

Contents
  Introduction
  Page 2
  Page 3
  Page 4
  Page 5
  Page 6
  Conclusion

  Source code
  Printable version
  Discuss this article

The Series
  Part 1