https://www.debian.org/mirror/list – официальные зеркала
http://www.webobraz.ru/linux/a[..]ling-debian8-01.html
http://linuxforum.ru/topic/43 – Списки репозиториев Debian GNU/Linux
http://4debian.info/lessons/pa[..]settings-repository/




http://www.webobraz.ru/linux/a[..]ling-debian8-01.html mht
Добавить в sources.list

# - Основные репозитории, обновления, безопасность, свободные и несвободные пакеты

deb http://ftp.ru.debian.org/debian stable main contrib non-free
deb-src http://ftp.ru.debian.org/debian stable main contrib non-free
 
deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.debian.org/debian/ jessie-updates main contrib non-free
 
deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free



Добавить/удалить архитектуру

http://linuxsoid.com/add-del-a[..]32-64-bitubuntulinux mht


sudo dpkg --add-architecture amd64
sudo apt-get update


sudo dpkg --remove-architecture i386
sudo apt-get update


Команды

После редактирования /etc/apt/sources.list выполнирть команду


Обновить пакеты, обновить систему, перегрузить


Узнать какому пакету принадлежит файл


Посмотреть установленные пакеты


Установка пакета *.deb
http://dskarataev.ru/2012/04/d[..]anovka-zavisimostej/
Что бы разрешить зависимости при установке *.deb, когда не хватает пакетов

> dpkg -i имя_пакета.deb
# здесь будет сообщение, что не хватает пакетов
> apt-get -f install


apt-get через прокси

В файл конфига /etc/apt/apt.cong.d/proxy добавить


Acquire::http::Proxy "http://login:password@192.168.1.1:80";
AcquireProxy "true";