This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
управление_по_в_linux [2022/05/26 11:01] val [Какие пакеты можно/нужно обновить] |
управление_по_в_linux [2023/12/02 08:11] (current) val [DPKG] |
||
---|---|---|---|
Line 8: | Line 8: | ||
* [[https://ru.wikipedia.org/wiki/Dpkg|Dpkg - Википедия]] | * [[https://ru.wikipedia.org/wiki/Dpkg|Dpkg - Википедия]] | ||
+ | * [[https://packages.ubuntu.com/search?keywords=asterisk]] | ||
<code> | <code> | ||
Line 152: | Line 153: | ||
==== Поиск пакета (в том числе среди неустановленных) в который входит файл ==== | ==== Поиск пакета (в том числе среди неустановленных) в который входит файл ==== | ||
<code> | <code> | ||
+ | # apt install apt-file | ||
+ | |||
# apt-file update | # apt-file update | ||
# apt-file search stddef.h | # apt-file search stddef.h | ||
+ | |||
+ | # apt-file search identify | grep '/bin' | ||
+ | </code> | ||
+ | |||
+ | ==== Удаление архива установленных пакетов ==== | ||
+ | <code> | ||
+ | # apt clean | ||
</code> | </code> | ||
Line 161: | Line 171: | ||
* [[https://stackoverflow.com/questions/16919114/run-sudo-apt-get-install-without-internet-connection|Run sudo apt-get install without internet connection]] | * [[https://stackoverflow.com/questions/16919114/run-sudo-apt-get-install-without-internet-connection|Run sudo apt-get install without internet connection]] | ||
- | <code> | + | * [[#Удаление архива установленных пакетов]] |
- | # apt clean | + | |
+ | <code> | ||
# apt install -d zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-agent | # apt install -d zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-agent | ||
Line 201: | Line 211: | ||
==== Настройка на использование http_proxy ==== | ==== Настройка на использование http_proxy ==== | ||
- | <code> | ||
- | # export http_proxy="http://gate.isp.un:3128/" | ||
- | в будущем, может понадобиться | + | * [[Переменные окружения]] |
- | # export https_proxy="http://gate.isp.un:3128/" | + | |
- | </code> | + | |
===== RPM ===== | ===== RPM ===== | ||
Line 354: | Line 360: | ||
* [[https://tutorials.ubuntu.com/tutorial/basic-snap-usage|Basic snap usage]] | * [[https://tutorials.ubuntu.com/tutorial/basic-snap-usage|Basic snap usage]] | ||
* [[https://askubuntu.com/questions/979233/how-to-list-files-installed-by-a-snap-package|How to list files installed by a snap package?]] | * [[https://askubuntu.com/questions/979233/how-to-list-files-installed-by-a-snap-package|How to list files installed by a snap package?]] | ||
+ | * [[Инструмент Gitea]] | ||
<code> | <code> | ||
Line 378: | Line 385: | ||
* [[Сервис TACACS+]] | * [[Сервис TACACS+]] | ||
* [[Сервис Grafana]] | * [[Сервис Grafana]] | ||
+ | |||
+ | ===== Список desktop приложений ===== | ||
+ | |||
+ | * [[https://unix.stackexchange.com/questions/20979/how-do-i-list-all-installed-programs]] | ||
+ | |||
+ | <code> | ||
+ | $ ls /usr/share/applications | awk -F '.desktop' ' { print $1}' - | ||
+ | </code> | ||
===== Работа с исходными текстами ===== | ===== Работа с исходными текстами ===== | ||