Skip to content

Linux, bash, and Git resources

Bob Yantosca edited this page Jun 29, 2023 · 10 revisions

Linux

We have collated a few resources for getting started with Linux.

You can also find a lot of third-party information online with information about Linux (including Youtube videos).

What's in a name?

Q. Some of the links above refer to Linux and others to Unix. What's going on?

A. Unix was originally one of the first time-sharing operating systems, originally developed for the Digital PDP-11 computer. Over time, a number of Unix flavors (e.g. IRIX for Silicon Graphics machines, Solaris for Sun machines, AIX for IBM machines, UNICOS for Cray machines, etc.) have come and gone. So you can think of Unix as more of a family of operating systems than as a single operating system.

Linux refers to any Unix-like operating system that specifically uses the Linux kernel (named for its inventor, Linus Torvalds). Thus, Linux is technially a subset of Unix. But in common usage the terms Linux and Unix are bandied about interchangeably.

The bash shell and bash scripting

One of the nice features of Linux is that you can highly customize your environment by selecting a different user interface, or shell. While there are several Unix shells that you can pick from, we recommend using bash, which is the de-facto standard on most HPC computing systems.

You can also write shell scripts to perform several commands (such as copying files or running programs) sequentially. This will save you the trouble of having to type the same commands over and over at the command-line prompt.

Here are some resources that you can use to learn more about the bash shell:

Git

Many scientific software applications (including GEOS-Chem, and GCPy) use Git for version control and for source code distribution. If you have never used Git before, we invite you to view the following resources:

Basic Git usage

Github

We use Github to store the GEOS-Chem source code, as well as source code for related software packages such as GCPy. You may also report a bug or request support by opening an issue on the issue tracker attached to the relevant Github repository. You may also search for past issues (to see if a given bug has already been fixed). Please see:

Clone this wiki locally