User Tools

Site Tools


управление_по_в_linux

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
управление_по_в_linux [2019/02/21 09:45]
val [Настройка репозитория]
управление_по_в_linux [2022/09/07 13:58]
val [Настройка на использование http_proxy]
Line 56: Line 56:
 ==== Настройка репозитория ==== ==== Настройка репозитория ====
  
-=== Debian ​===+=== Debian ​10 === 
 + 
 +  * [[https://​www.debian.org/​mirror/​list|Мировые серверы-зеркала Debian]]
  
 <​code>​ <​code>​
 # cat /​etc/​apt/​sources.list # cat /​etc/​apt/​sources.list
 </​code><​code>​ </​code><​code>​
-deb http://​deb.debian.org/​debian/ ​stretch ​main contrib non-free +#deb http://​deb.debian.org/​debian/ ​buster ​main contrib non-free 
-deb http://​deb.debian.org/​debian ​stretch-updates main contrib non-free +#deb http://​deb.debian.org/​debian ​buster-updates main contrib non-free
-deb http://​security.debian.org/​ stretch/updates main contrib non-free+
  
-#deb-src http://deb.debian.org/​debian ​stretch ​main contrib non-free +deb http://ftp.ru.debian.org/​debian/ buster ​main contrib non-free 
-#deb-src http://deb.debian.org/​debian ​stretch-updates main contrib non-free +deb http://ftp.ru.debian.org/​debian/ buster-updates main contrib non-free
-#deb-src http://​security.debian.org/​ stretch/​updates main contrib non-free +
-</​code>​+
  
-=== Ubuntu 16 ===+deb http://​security.debian.org/​ buster/​updates main contrib non-free
  
-<​code>​ +#deb-src http://deb.debian.org/debian buster ​main contrib non-free 
-cat /​etc/​apt/​sources.list +#deb-src http://deb.debian.org/debian buster-updates main contrib non-free 
-</​code><​code>​ +#deb-src http://​security.debian.orgbuster/​updates main contrib non-free 
-deb http://ru.archive.ubuntu.com/ubuntu/ xenial ​main restricted universe multiverse +</​code>​
-deb http://ru.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse +
-deb http://​security.ubuntu.com/ubuntu xenial-security main restricted universe multiverse+
  
-#deb-src http://​ru.archive.ubuntu.com/​ubuntu/​ xenial main restricted universe multiverse 
-#deb-src http://​ru.archive.ubuntu.com/​ubuntu/​ xenial-updates main restricted universe multiverse 
-#deb-src http://​security.ubuntu.com/​ubuntu xenial-security main restricted universe multiverse 
-</​code>​ 
  
 ==== Подключение сторонних репозиториев ==== ==== Подключение сторонних репозиториев ====
Line 111: Line 104:
 <​code>​ <​code>​
 # apt install clamav-daemon # apt install clamav-daemon
 +
 +# DEBIAN_FRONTEND=noninteractive apt -y install postfix
 </​code>​ </​code>​
  
Line 123: Line 118:
 <​code>​ <​code>​
 # apt purge snort # apt purge snort
 +</​code>​
 +
 +==== Отключение автоматических обновлений ====
 +
 +<​code>​
 +# apt purge unattended-upgrades
 </​code>​ </​code>​
  
Line 156: Line 157:
 </​code>​ </​code>​
  
 +==== Загрузка пакетов и зависимостей для offline установки ====
 +
 +  * [[https://​stackoverflow.com/​questions/​16919114/​run-sudo-apt-get-install-without-internet-connection|Run sudo apt-get install without internet connection]]
 +
 +<​code>​
 +# apt clean
 +
 +# apt install -d zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-agent
 +
 +# find /​var/​cache/​apt/​archives/​
 +
 +# cd /​var/​cache/​apt/​archives/​
 +</​code>​
 +
 +  * Сервис NFS [[Сервис NFS#​Установка,​ настройка и запуск сервиса]]
 +  * Сервис NFS [[Сервис NFS#​Установка nfs клиента]]
 +  * Сервис NFS [[Сервис NFS#​Установка ПО]]
 ==== Исправление состояния базы данных APT ==== ==== Исправление состояния базы данных APT ====
  
Line 163: Line 181:
 # apt -f install # apt -f install
  
 +# reboot
 # dpkg --configure -a # dpkg --configure -a
  
Line 182: Line 201:
  
 ==== Настройка на использование http_proxy ==== ==== Настройка на использование http_proxy ====
-<​code>​ + 
-# export http_proxy="​http://​gate.isp.un:​3128/"​ +  * [[Переменные окружения]]
-</​code>​+
  
 ===== RPM ===== ===== RPM =====
Line 203: Line 221:
 # wget -O openfire-4.3.2-1.x86_64.rpm https://​www.igniterealtime.org/​downloadServlet?​filename=openfire/​openfire-4.3.2-1.x86_64.rpm # wget -O openfire-4.3.2-1.x86_64.rpm https://​www.igniterealtime.org/​downloadServlet?​filename=openfire/​openfire-4.3.2-1.x86_64.rpm
  
-rpm -i rpm -i openfire-4.3.2-1.x86_64.rpm+# rpm -i openfire-4.3.2-1.x86_64.rpm
 </​code>​ </​code>​
  
Line 299: Line 317:
 === Установка пакета === === Установка пакета ===
 <​code>​ <​code>​
 +# emerge lynx
 +
 # emerge app-admin/​sudo # emerge app-admin/​sudo
 </​code>​ </​code>​
Line 349: Line 369:
 </​code>​ </​code>​
  
 +===== Docker =====
 +
 +  * [[Технология Docker]]
 +  * [[Сервис TACACS+]]
 +  * [[Сервис Grafana]]
 ===== Работа с исходными текстами ===== ===== Работа с исходными текстами =====
  
Line 357: Line 382:
 === Debian/​Ubuntu === === Debian/​Ubuntu ===
 <​code>​ <​code>​
-# apt install build-essential autoconf automake ​checkinstall+# apt install build-essential autoconf automake
 </​code>​ </​code>​
  
Line 369: Line 394:
 ==== Примеры сборки программ из исходных текстов ==== ==== Примеры сборки программ из исходных текстов ====
  
-  * [[Сервис SNORTSAM#​Сборка Snort с поддержкой Snortsam в Ubuntu]] 
   * [[Сервис Asterisk#​Сборка asterisk из исходных текстов]]   * [[Сервис Asterisk#​Сборка asterisk из исходных текстов]]
  
Line 435: Line 459:
  
 === Использование сервера Ubuntu === === Использование сервера Ubuntu ===
 +
 +  * [[https://​help.ubuntu.ru/​wiki/​apt-mirror|Создание зеркала репозиториев с помощью apt-mirror]]
 +
 <​code>​ <​code>​
 root@rep:~# apt-get install apt-mirror root@rep:~# apt-get install apt-mirror
управление_по_в_linux.txt · Last modified: 2024/02/19 10:49 by val