Skip to content Skip to navigation

Connexions

You are here: Home » Content » Linux for Computer Scientists and Engineers

Navigation

Recently Viewed

This feature requires Javascript to be enabled.

Linux for Computer Scientists and Engineers

Module by: Algis Rudys. E-mail the author

User rating (How does the rating system work?)
Ratings

Ratings allow you to judge the quality of modules. If other users have ranked the module then its average rating is displayed below. Ratings are calculated on a scale from one star (Poor) to five stars (Excellent).

How to rate a module

Hover over the star that corresponds to the rating you wish to assign. Click on the star to add your rating. Your rating should be based on the quality of the content. You must have an account and be logged in to rate content.

:
(0 ratings)

Linux is used a great deal in the computer science and engineering communities. This is largely because of the wealth of tools available in these problem domains. Engineers and computer scientists have historically relied on various versions of UNIX, so this has been a natural progression. Here we mention a small subset of the available tools.

Emacs

Emacs is a well-known textfile editor originally developed for UNIX. It is a graphical editor, and is extremely extensible and configurable. Emacs is configured and extended using a programming language (called elisp), which basically means that extensions can be arbitrarily powerful. Emacs' features include syntax highlighting, auto-indenting, multiple buffers and windows, support for CVS, and many others.

VI

Vi is another popular editor for UNIX. It is much smaller and less extensible than emacs. For the uninitiated, it is cryptic (you have to type a command just to be able to start typing). However, once you learn the relevant commands, it is surprisingly powerful.

Make

Make is an automated tool originally written to for recompiling programs based on which files have changed. It has developed into a general-purpose tool for satisfying dependencies. You specify a configuration file which contains an encoding of a dependency graph and associated commands to execute to satisfy a particular dependency. Then depending on which dependencies still need satisfying, make will run the respective commands.

Example 1

This is perhaps best-illustrated by an example. Consider the following "Makefile":


prog: prog.o
	gcc prog.o -o prog

prog.o: prog.c
	gcc -c prog.c -o prog.o
		

This is an example showing how to build the program prog from the source file prog.c. It shows the file prog depending on the intermediate file prog.o, and prog.o depends on prog.c. If prog.o is out of date relative to its dependencies (that is, prog.c), then it is regenerated using the associated command (that is, gcc -c prog.c -o prog.o).

CVS

CVS is a version management system. It is used as backup storage for the current version of a file and as a repository for old versions of the file. It is most commonly used to track versions of source code, but can also be used for tracking LaTeX documents, web pages, and has been used for configuration files as well.

LaTeX

LaTeX is a document-generation system. It uses plaintext source files with mark-up tags to indicate how the text should be formatted (a lot like HTML). It supports document sectioning, tables, embedded figures, and (perhaps most relevant to computer scientists and engineers) incredible support for mathematical equations, formulas, and theorems.

Content actions

Give Feedback:

E-mail the module author | Rate module ( How does the rating system work?)

Rating system

Ratings

Ratings allow you to judge the quality of modules. If other users have ranked the module then its average rating is displayed below. Ratings are calculated on a scale from one star (Poor) to five stars (Excellent).

How to rate a module

Hover over the star that corresponds to the rating you wish to assign. Click on the star to add your rating. Your rating should be based on the quality of the content. You must have an account and be logged in to rate content.

(0 ratings)

Download:

Add module to:

My Favorites (?)

'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.

| A lens (?)

Definition of a lens

Lenses

A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual Connexions member, a community, or a respected organization.

What are tags? tag icon

Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

| External bookmarks