From 6e69caca175dbd120a60bf4e6d1c5fce15677ae2 Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sat, 3 Aug 2024 01:56:26 +0300 Subject: [PATCH] docbook/installation-debian.sgml: improve commands and ru translation Instead of the old Sun Java use the default-jre package. Add a link to GitHub Releases page from which to get the deb package. Add wget command to download. Use apt to install the package: it will also install dependencies (none for now but for a future). Add Russian translation. --- core/src/docbook/installation-debian.sgml | 40 +++++++++++++++++++---- 1 file changed, 34 insertions(+), 6 deletions(-) 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 +