]> git.donarmstrong.com Git - neurodebian.git/blob - source/index.rst
Stage one: commandline interface next.
[neurodebian.git] / source / index.rst
1 ***********************************************
2  Welcome to the Debian Neuroscience Repository
3 ***********************************************
4
5 This repository provides mostly neuroscience-related packages to be
6 used on Debian systems (or a Debian-derivates like Ubuntu). It
7 contains both unofficial or prospective packages which are not
8 available from the main Debian archive, as well backported or simply
9 rebuilt packages also available elsewhere.
10
11 This service is provided "as is". There is no guarantee that a package
12 works as expected, so use them at your own risk. They might kill your
13 system (although that is rather unlikely). You've been warned!
14
15 The repository contains both neuroscience-related packages as well as
16 general purpose software which is necessary to resolved dependencies, or
17 is simply useful in the neuroscience context. The featured neuroscience
18 software can be browsed via the repository :ref:`genindex` or through the
19 :ref:`maintainer view <bymaintainer>`.
20
21 All other packages are available through the search engine or from the
22 :ref:`full package list <full_pkg_list>`.
23
24
25 How to use this repository
26 ==========================
27
28 The easiest way to use this repository is to download an APT-configuration
29 file. Simply click on the name of your target distribution/release and save the
30 downloaded file in the `/etc/apt/sources.list.d/` directory on your system
31 (depending on the browser, you might have to right-click and choose 'save as').
32 Saving files in this directory will require superuser privileges, therefore you
33 should probably download the file into a temporary directory and subsequently
34 move it into `/etc/apt/sources.list.d/`. APT-configurations are available for
35 the following releases:
36
37 .. include:: sources_lists
38
39 Once this is done, you have to update the package index. Use your favorite
40 package manager, e.g. synaptic, adept, or whatever you like. In the terminal
41 you can use :command:`aptitude` to achieve the same::
42
43   sudo aptitude update
44
45 Now, you can proceed to install packages, e.g.::
46
47   sudo aptitude install lipsia
48
49 .. note::
50   Not every package is available for all distributions/releases. For information
51   about which package version is available for which release and architecture,
52   please have a look at the corresponding package pages.
53
54
55 Package authentication
56 ----------------------
57
58 When you start using this repository, you might get warning messages
59 like this::
60
61   The following signatures couldn't be verified because 
62   the public key is not available.`
63
64 Or you will be asked questions like this over and over::
65
66   WARNING: The following packages cannot be authenticated!
67   ...
68   Install these packages without verification [y/N]?
69
70 This is because your APT installation initially does not know the GPG
71 key that is used to sign the release files of this repository. Making
72 APT happy again is easy:
73
74 1. Get the key. Either download the `repository key from here
75    <http://apsy.gse.uni-magdeburg.de/debian/apsy.gse.uni-magdeburg.de.asc>`_
76    or fetch it from *subkeys.pgp.net*.
77
78 2. Now feed the key into APT by invoking::
79
80      apt-key add #file#
81
82    Where `#file#` has to be replaced with the location of the key file you just
83    downloaded. You need to have superuser-privileges to do this (either do it
84    as root or use sudo).