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