diff --git a/core/src/docbook/installation-debian.sgml b/core/src/docbook/installation-debian.sgml index f1deb08ef..4a7021301 100644 --- a/core/src/docbook/installation-debian.sgml +++ b/core/src/docbook/installation-debian.sgml @@ -1,17 +1,45 @@ -
+
<phrase lang="en">Install Spark on Debian/Ubuntu</phrase> + <phrase lang="ru">Установка Spark на Debian/Ubuntu</phrase> - For Ubuntu/Debian System use the Spark Debian Package. - To install Spark execute the follow commands as root: + For Debian/Ubuntu Systems use the Spark Debian Package. + You can download it from GitHub Releases page. + Pick the latest release and download the .deb file. You can copy its link and download with wget command: + + + Для ОС Debian/Ubuntu используйте Debian пакет Spark. + Вы можете скачать его со страницы релизов на GitHub. + Выберите последний релиз и скачайте файл .deb. Вы можете скопировать его ссылку и скачать командой wget: + + + wget https://github.com/igniterealtime/Spark/releases/download/v3.0.2/spark_3_0_2.deb + + + You also need to install Java Runtime (JRE). + You may already have it so check with the java -version command. + If it's not installed you can install the default JRE (LTS version 11, 17 etc.): + + + Вам также нужно установить Java Runtime (JRE). + Вы можете уже иметь её поэтому проверьте командой java -version. + Если всё же не установлена вы можете установить JRE по умолчанию (LTS версия 11, 17 итд.): + + + sudo apt install default-jre + + + To install Spark execute the follow command: + + + Для установки Spark выполните следущую команду: - apt-get install java-6-sun - dpkg -i spark_X.X.X_all.deb + sudo apt install ./spark_*.deb -
\ No newline at end of file +