apt,apt-mirror,packages
This commit is contained in:
parent
08f5134797
commit
d2f9f7cebc
6 changed files with 3 additions and 11 deletions
76
in/public/apt/configure.rst
Normal file
76
in/public/apt/configure.rst
Normal file
|
@ -0,0 +1,76 @@
|
|||
*********
|
||||
Configure
|
||||
*********
|
||||
|
||||
Keys
|
||||
====
|
||||
|
||||
.. code:: shell
|
||||
|
||||
apt-key add "path/to/key/file"
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
* etc/apt/apt.conf
|
||||
|
||||
::
|
||||
|
||||
APT::Get::Show-Versions true;
|
||||
Dpkg::Progress-Fancy true;
|
||||
|
||||
Acquire::Check-Valid-Until false;
|
||||
|
||||
* etc/apt/preferences
|
||||
|
||||
::
|
||||
|
||||
Package: *
|
||||
Pin: release n=stretch-backports
|
||||
Pin-Priority: 400
|
||||
|
||||
Package: *
|
||||
Pin: release n=buster
|
||||
Pin-Priority: 200
|
||||
|
||||
Package: *
|
||||
Pin: release n=sid
|
||||
Pin-Priority: 100
|
||||
|
||||
* etc/apt/sources.list
|
||||
|
||||
.. todo::
|
||||
|
||||
deb.debian.org ↔ ftp.cc.debian.org
|
||||
|
||||
::
|
||||
|
||||
deb-src [arch=amd64,i386] https://deb.debian.org/debian sid main contrib non-free
|
||||
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian sid main contrib non-free
|
||||
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian buster main contrib non-free
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian-security buster/updates main contrib non-free
|
||||
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian stretch main contrib non-free
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian stretch-backports main contrib non-free
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian stretch-updates main contrib non-free
|
||||
deb [arch=amd64,i386] https://deb.debian.org/debian-security stretch/updates main contrib non-free
|
||||
|
||||
deb [arch=amd64] https://deb.debian.org/debian jessie main contrib non-free
|
||||
deb [arch=amd64] https://deb.debian.org/debian jessie-backports main contrib non-free
|
||||
deb [arch=amd64] https://deb.debian.org/debian jessie-updates main contrib non-free
|
||||
deb [arch=amd64] https://deb.debian.org/debian-security jessie/updates main contrib non-free
|
||||
|
||||
deb [arch=amd64] https://deb.debian.org/debian wheezy main contrib non-free
|
||||
deb [arch=amd64] https://deb.debian.org/debian wheezy-backports main contrib non-free
|
||||
deb [arch=amd64] https://deb.debian.org/debian wheezy-updates main contrib non-free
|
||||
deb [arch=amd64] https://deb.debian.org/debian-security wheezy/updates main contrib non-free
|
||||
|
||||
.. warning::
|
||||
|
||||
apt's file protocol handling fails with locations containing spaces
|
||||
|
||||
::
|
||||
|
||||
deb file:/media/deb.debian.org/debian stretch main contrib non-free
|
Loading…
Add table
Add a link
Reference in a new issue