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