Currently not logged in. main | wiki | tasks | examples | forums | privacy | login

Installation

By default, the FITSH package does not have any specific dependence. You only have a C compiler (e.g. GCC) and the related standard development headers (that are usually placed in the directory /usr/include) on your system. See also the list of supported operating systems and architectures below.

System-wide installation

The current stable version of the program is 0.9.4, you can browse the available versions here. Instailling the package from the source tarball might go as follows. After extracting the archive, by entering simply (for the latest version):

$ tar xvzf fitsh-0.9.4.tar.gz

Then, go to the appropriate sub-directory (fitsh-0.9.4), and run the standard configure && make procedure, i.e.:

$ ./configure

which is followed by

$ make

After a successful compilation, the binaries and some related libraries might be installed into the target filesystem hierarchy location by entering

$ make install

The "root" of the filesystem hierarchy is the /usr/local directory by default. In order to place the binaries to another location, use an alternative prefix for ./configure, for instance:

$ ./configure --prefix=/opt

Local installation for a single user

If you do not have rights on the computer for system administration, i.e. you cannot install anything under /opt or /usr/local, you can safely use your home directory (or a subdirectory in it) in order to install the package. Supposing that your username is myuser (see also the output of the `whoami` command) and your home directory is /home/myuser, simply type

$ ./configure --prefix=/home/myuser/usr

The installation procedure (see `make install` above) will then create the subdirectories /home/mysuer/usr/bin, /home/mysuer/usr/lib and /home/mysuer/usr/include where the task binaries, lfit shared objects and lfit module headers are installed, respectively. In this case, you should put the directory /home/mysuer/usr/bin into your path in order to access the FITSH tasks from everywhere (at least, from your account). Follow your shell's guidelines to do so, if you use the bash shell, put something similar into your ~/.bashrc file:

export PATH=/home/mysuer/usr/bin:${PATH}

Install as a Debian package

If the DPKG packaging system and the help2man utility is installed on your system, you can use the target

$ make deb

to create a Debian package. In order to install this newly created package, use the command dpkg:

$ dpkg --install ./fitsh_0.9.1_amd64.deb

or use your alternative/favourite Debian package manager. Note that the newly created Debian package is always placed into the root of the source tree.

Supported operating systems and architectures

During the development of the FITSH package, it was tested under the following operating systems and architectures:

The complier was always the system default C compiler from the GNU Compiler Collection (GCC). Since the primary development platfrom is Debian, some compilation-time warnings may occur on other operating systems (even on the above ones).