]> git.donarmstrong.com Git - neurodebian.git/blob - sphinx/index.rst
Move on to repository config files.
[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
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 .. _repository_howto:
26
27 How to use this repository
28 ==========================
29
30 The easiest way to use this repository is to download an APT-configuration
31 file. Simply click on the name of your target distribution/release and save the
32 downloaded file in the `/etc/apt/sources.list.d/` directory on your system
33 (depending on the browser, you might have to right-click and choose 'save as').
34 Saving files in this directory will require superuser privileges, therefore you
35 should probably download the file into a temporary directory and subsequently
36 move it into `/etc/apt/sources.list.d/`. APT-configurations are available for
37 the following releases:
38
39 .. include:: sources_lists
40
41 Once this is done, you have to update the package index. Use your favorite
42 package manager, e.g. synaptic, adept, or whatever you like. In the terminal
43 you can use :command:`aptitude` to achieve the same::
44
45   sudo aptitude update
46
47 Now, you can proceed to install packages, e.g.::
48
49   sudo aptitude install lipsia
50
51 .. note::
52   Not every package is available for all distributions/releases. For information
53   about which package version is available for which release and architecture,
54   please have a look at the corresponding package pages.
55
56
57 Package authentication
58 ----------------------
59
60 When you start using this repository, you might get warning messages
61 like this::
62
63   The following signatures couldn't be verified because 
64   the public key is not available.`
65
66 Or you will be asked questions like this over and over::
67
68   WARNING: The following packages cannot be authenticated!
69   ...
70   Install these packages without verification [y/N]?
71
72 This is because your APT installation initially does not know the GPG
73 key that is used to sign the release files of this repository. Making
74 APT happy again is easy:
75
76 1. Get the key. Either download the `repository key from here
77    <http://apsy.gse.uni-magdeburg.de/debian/apsy.gse.uni-magdeburg.de.asc>`_
78    or fetch it from *subkeys.pgp.net*.
79
80 2. Now feed the key into APT by invoking::
81
82      apt-key add #file#
83
84    Where `#file#` has to be replaced with the location of the key file you just
85    downloaded. You need to have superuser-privileges to do this (either do it
86    as root or use sudo).