Skip to content

Commit

Permalink
Merge pull request #19 from theos-space/patch-1
Browse files Browse the repository at this point in the history
Add barebones "First Steps" to the GNU/Linux page
  • Loading branch information
michaelsilver authored Feb 16, 2018
2 parents 5fad5e4 + 7ef8fb1 commit 593e42a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gnu-linux/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ layout: page
title: GNU/Linux
---

# First Steps
There are many different GNU/Linux distros, but this guide is going to cover Ubuntu, which is one of the more common ones. The first thing you're going to need is the `build-essential` package, which contains the `gcc` and `g++` compilers, as well as the common build tool `make`. In order to do this, simply run (on the command line) `apt-get install build-essential`.

# Editors
If you're planning to write code, you're going to need a way to edit files! The first thing you'll need to decide while picking an editor is whether you prefer a graphical editor or a keystroke based editor. A graphical editor is like a normal computer program, where you interact with your mouse and keyboard. A keystroke based editor is an editor where you interact using your keyboard for everything. We only recommend keystroke based editors once you are more comfortable while programming. Two of the most popular graphical editors are [Atom](https://atom.io) and [Brackets](https://brackets.io), while two of the most popular keystoke based editors are `vim` and `emacs`.

# Getting Started with [x]

{% for post in site.posts %}
Expand Down

0 comments on commit 593e42a

Please sign in to comment.