This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
управление_по_в_linux [2023/10/18 18:04] val [Поиск пакета (в том числе среди неустановленных) в который входит файл] |
управление_по_в_linux [2025/01/02 06:34] (current) val [Установка пакета] |
||
---|---|---|---|
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 17: | Line 18: | ||
* [[Сервис OpenFire#Установка]] сервиса OpenFire (!!! требует JRE) | * [[Сервис OpenFire#Установка]] сервиса OpenFire (!!! требует JRE) | ||
+ | <code> | ||
+ | # dpkg-deb -I gitlab-runner_amd64.deb | ||
+ | ... | ||
+ | Version: NN.N.N-N | ||
+ | ... | ||
+ | |||
+ | # dpkg-deb -i gitlab-runner_amd64.deb | ||
+ | </code> | ||
==== Установленные пакеты ==== | ==== Установленные пакеты ==== | ||
<code> | <code> | ||
Line 55: | Line 64: | ||
</code> | </code> | ||
==== Настройка репозитория ==== | ==== Настройка репозитория ==== | ||
- | |||
- | === Debian 10 === | ||
* [[https://www.debian.org/mirror/list|Мировые серверы-зеркала Debian]] | * [[https://www.debian.org/mirror/list|Мировые серверы-зеркала Debian]] | ||
<code> | <code> | ||
- | # cat /etc/apt/sources.list | + | # apt install netselect-apt |
- | </code><code> | + | |
- | #deb http://deb.debian.org/debian/ buster main contrib non-free | + | |
- | #deb http://deb.debian.org/debian buster-updates main contrib non-free | + | |
- | deb http://ftp.ru.debian.org/debian/ buster main contrib non-free | + | # netselect-apt |
- | deb http://ftp.ru.debian.org/debian/ buster-updates main contrib non-free | + | |
- | deb http://security.debian.org/ buster/updates main contrib non-free | + | # less /etc/apt/sources.list |
- | #deb-src http://deb.debian.org/debian buster main contrib non-free | + | # sed -i -e 's/deb.debian.org/mirror.docker.ru/g' /etc/apt/sources.list |
- | #deb-src http://deb.debian.org/debian buster-updates main contrib non-free | + | |
- | #deb-src http://security.debian.org/ buster/updates main contrib non-free | + | # apt update |
</code> | </code> | ||
Line 80: | Line 83: | ||
* [[https://docs.microsoft.com/ru-ru/sql/linux/sql-server-linux-setup-ubuntu|Install SQL Server on Ubuntu]] | * [[https://docs.microsoft.com/ru-ru/sql/linux/sql-server-linux-setup-ubuntu|Install SQL Server on Ubuntu]] | ||
+ | * [[https://vk.com/wall-95686747_13620|Для установки Elasticsearch и остальных продуктов Elastic, можно использовать репозиторий https://mirror.yandex.ru/mirrors.]] | ||
+ | <code> | ||
+ | # cat /etc/apt/sources.list | ||
+ | ... | ||
+ | deb [trusted=yes] https://mirror.yandex.ru/mirrors/elastic/8/ stable main | ||
+ | ... | ||
+ | </code> | ||
==== Обновление списка доступных пакетов ==== | ==== Обновление списка доступных пакетов ==== | ||
<code> | <code> | ||
Line 303: | Line 312: | ||
# yum grouplist | # yum grouplist | ||
- | # yum -y groups install "GNOME Desktop" | + | centos# yum -y groups install "GNOME Desktop" |
+ | almalinux# yum groupinstall "Server with GUI" | ||
+ | |||
+ | almalinux# systemctl set-default graphical && reboot | ||
</code> | </code> | ||
Line 359: | Line 371: | ||
* [[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?]] | ||
+ | * [[https://snapcraft.io/docs/installing-snap-on-debian|Installing snap on Debian]] | ||
* [[Инструмент Gitea]] | * [[Инструмент Gitea]] | ||
<code> | <code> | ||
+ | debian# apt install snapd | ||
+ | |||
# snap refresh | # snap refresh | ||