From 7bc2f030a828a06ac808ec77b66a7f249ba6f6c3 Mon Sep 17 00:00:00 2001 From: polistern Date: Wed, 26 Apr 2023 14:23:20 +0000 Subject: [PATCH] chore: Translation of recent changes. --- docs/user-guide/install.md | 17 +++++++++-------- docs/user-guide/install.ru.md | 28 +++++++++++++++++++--------- 2 files changed, 28 insertions(+), 17 deletions(-) diff --git a/docs/user-guide/install.md b/docs/user-guide/install.md index bbf374b..e91129b 100644 --- a/docs/user-guide/install.md +++ b/docs/user-guide/install.md @@ -1,6 +1,8 @@ # Installing -## Debian/Ubuntu +## From precompiled binaries + +### Debian/Ubuntu You can install binary packages from the [latest release page](https://github.com/polistern/pboted/releases/latest). @@ -17,7 +19,7 @@ For building **pboted** you need several things: * openssl >= 1.1.1 * zlib (openssl already depends on it) -## Building on UNIX-like systems +### Building on UNIX-like systems **Supported systems:** @@ -43,7 +45,7 @@ cmake . # See "CMake Options" section below make # You may add VERBOSE=1 to cmdline for debugging ``` -### CMake Options +#### CMake Options Available CMake options(each option has a form of `-D=`, for more information see `man 1 cmake`): @@ -61,19 +63,19 @@ Also there is `-L` flag for CMake that could be used to list current cached opti cmake -L ``` -#### Force GCC +##### Force GCC ```bash CC=gcc CXX=g++ cmake . ``` -#### Force Clang +##### Force Clang ```bash CC=clang CXX=clang++ cmake . ``` -### Debian/Ubuntu +#### Debian/Ubuntu !!! note "Note" @@ -104,7 +106,7 @@ cd pboted debuild --no-tgz-check -us -uc -b ``` -### CentOS/Fedora +#### CentOS/Fedora !!! note "Note" @@ -116,7 +118,6 @@ Install required tools and libraries: sudo dnf install cmake mimetic boost g++ boost-devel mimetic-devel ``` - ### Microsoft Windows WIP diff --git a/docs/user-guide/install.ru.md b/docs/user-guide/install.ru.md index 0955f0a..77a5870 100644 --- a/docs/user-guide/install.ru.md +++ b/docs/user-guide/install.ru.md @@ -1,6 +1,8 @@ # Установка -## Debian/Ubuntu +## Из предварительно скомпилированных файлов + +### Debian/Ubuntu Вы можете установить готовый пакет со [страницы последнего релиза](https://github.com/polistern/pboted/releases/latest). @@ -17,13 +19,13 @@ * openssl >= 1.1.1 * zlib (openssl уже имеет её в зависимостях) -## Сборка на UNIX-подобных системах +### Сборка на UNIX-подобных системах **Поддерживаемые системы:** * GNU/Linux - [Debian/Ubuntu](#debian-ubuntu) (с созданием пакета) - - CentOS/Fedora (WIP) + - [CentOS/Fedora](#centos-fedora) (Fedora 36) Убедитесь, что все требуемые зависимости установлены. Ознакомтесь с зависимостями в [этой](#Требования) секции. @@ -43,7 +45,7 @@ cmake . # Смотри секцию "Опции CMake" ниже make # Для отладки можно добавить VERBOSE=1 ``` -### Опции CMake +#### Опции CMake Доступные опции CMake (каждая опция имеет вид `-D=`, больше информации в `man 1 cmake`): @@ -64,19 +66,19 @@ make # Для отладки можно добавить VERB cmake -L ``` -#### Принудительно использовать GCC +##### Принудительно использовать GCC ```bash CC=gcc CXX=g++ cmake . ``` -#### Принудительно использовать Clang +##### Принудительно использовать Clang ```bash CC=clang CXX=clang++ cmake . ``` -### Debian/Ubuntu +#### Debian/Ubuntu !!! note "Примечание" @@ -107,9 +109,17 @@ cd pboted debuild --no-tgz-check -us -uc -b ``` -### CentOS/Fedora (WIP) +#### CentOS/Fedora -WIP +!!! note "Note" + + Проверено на Fedora 36 + +Установите необходимые утилиты и зависимости: + +```bash +sudo dnf install cmake mimetic boost g++ boost-devel mimetic-devel +``` ### Microsoft Windows