- How To Install libreoffice on Kali Linux
- What is libreoffice
- Install libreoffice Using apt-get
- Install libreoffice Using apt
- Install libreoffice Using aptitude
- How To Uninstall libreoffice on Kali Linux
- Uninstall libreoffice And Its Dependencies
- Remove libreoffice Configurations and Data
- Remove libreoffice configuration, data, and all of its dependencies
- References
- Summary
- Простой способ установки самой новой версии LibreOffice на Linux
- Связанные статьи:
- Kali linux установить libreoffice
- Learn Latest Tutorials
- Preparation
- Trending Technologies
- B.Tech / MCA
- Javatpoint Services
- Training For College Campus
How To Install libreoffice on Kali Linux
In this tutorial we learn how to install libreoffice on Kali Linux.
What is libreoffice
LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office.
This metapackage installs all components of libreoffice:
- libreoffice-writer: Word processor
- libreoffice-calc: Spreadsheet
- libreoffice-impress: Presentation
- libreoffice-draw: Drawing
- libreoffice-base: Database
- libreoffice-math: Equation editor It also recommends additional packages (e.g. fonts) in order to match an upstream LibreOffice install as closely as possible.
- hunspell-/myspell-: Hunspell/Myspell dictionaries for use with LibreOffice
- libreoffice-l10n-*: UI interface translation
- libreoffice-help-*: User help
- mythes-*: Thesauri for the use with LibreOffice
- hyphen-*: Hyphenation patterns for LibreOffice
- libreoffice-gtk(2|3): Gtk UI Plugin, GNOME File Picker support
- libreoffice-gnome: GIO backend
- unixodbc: ODBC database support
- cups-bsd: Allows LibreOffice to detect your CUPS printer queues automatically
- libsane: Use your sane-supported scanner with LibreOffice
- libxrender1: Speed up display by using Xrender library
- libgl1: OpenGL support
- openclipart-libreoffice: Open Clip Art Gallery with LibreOffice index files
- firefox-esr | thunderbird | firefox: Mozilla profile with Certificates needed for XML Security…
- openjdk-11-jre | openjdk-8-jre | java8-runtime: Java Runtime Environment for use with LibreOffice
- pstoedit / imagemagick / ghostscript: helper tools for EPS
- gstreamer0.10-plugins-*: GStreamer plugins for use with LibreOffices media backend
- libpaper-utils: papersize detection support via paperconf
- bluez: Bluetooth support for Impress (slideshow remote control)
There are three ways to install libreoffice on Kali Linux . We can use apt-get , apt and aptitude . In the following sections we will describe each method. You can choose one of them.
Install libreoffice Using apt-get
Update apt database with apt-get using the following command.
After updating apt database, We can install libreoffice using apt-get by running the following command:
sudo apt-get -y install libreoffice
Install libreoffice Using apt
Update apt database with apt using the following command.
After updating apt database, We can install libreoffice using apt by running the following command:
sudo apt -y install libreoffice
Install libreoffice Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
After updating apt database, We can install libreoffice using aptitude by running the following command:
sudo aptitude -y install libreoffice
How To Uninstall libreoffice on Kali Linux
To uninstall only the libreoffice package we can use the following command:
sudo apt-get remove libreoffice
Uninstall libreoffice And Its Dependencies
To uninstall libreoffice and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libreoffice
Remove libreoffice Configurations and Data
To remove libreoffice configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libreoffice
Remove libreoffice configuration, data, and all of its dependencies
We can use the following command to remove libreoffice configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libreoffice
References
Summary
In this tutorial we learn how to install libreoffice using different package management tools like apt, apt-get and aptitude.
Простой способ установки самой новой версии LibreOffice на Linux
Кратко введу в курс дела, если кто-то не знает. LibreOffice на Linux есть. Причём на большинстве популярных дистрибутивов он уже предустановлен. Там, где не предустановлен, его легко можно поставить в одну команду из репозитория вашего дистрибутива или через графический интерфейс. Так в чём проблема? Проблема в том, что почти всегда версия LibreOffice в репозиториях отстаёт от актуальной выпущенной версии.
Установить самую новую версию LibreOffice на Linux не сложно. Можно скачать архив с бинарными файлами с официального сайта, распаковать его и установить необходимые программы. Тем не менее, получается, что мы совсем не используем мощь UNIX: вручную что-то скачиваем, что-распаковываем и т. д. А ведь все эти операции можно автоматизировать. И вместо того чтобы сидеть клацать мышкой, заняться чем-нибудь полезным во время установки LibreOffice.
В общем, я сделал одну команду для автоматизации процесса. Эта команда подходит для Debian / Ubuntu / Mint / Kali Linux.
- удаляет предыдущую версию LibreOffice
- проверяет на официальном сайте самую свежую версию LibreOffice
- скачивает её
- скачивает языковой файл (для русского языка)
- распаковывает оба архива
- всё устанавливает (и LibreOffice и языковые файлы)
- удаляет после себя два скаченных архива и два каталога, появившихся после распаковки
Просьба к тем, кто попробовал — напишите в комментариях о ваших успехах, есть ли какие-то замечания к команде и т.д. Особенно интересует опыт владельцев 32-битных ОС.
Чтобы установить LibreOffice на Linux достаточно в командную строку скопировать одну команду (64-битные системы):
sudo apt-get purge libreoffice? -y && cd /tmp/ && (t=`curl -s -L http://www.libreoffice.org/download/ | grep -E -o 'Download Version 8.8(|.9)' | sed 's/Download Version //' | sed 's///'`; tt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86_64/LibreOffice_"$t"_Linux_x86-64_deb.tar.gz; wget $tt && tar zxvf LibreOffice_"$t"_Linux_x86-64_deb.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*; ttt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86_64/LibreOffice_"$t"_Linux_x86-64_deb_langpack_ru.tar.gz; wget $ttt && tar zxvf LibreOffice_"$t"_Linux_x86-64_deb_langpack_ru.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*;) && cd ~
sudo apt-get purge libreoffice? -y && cd /tmp/ && (t=`curl -s -L http://www.libreoffice.org/download/ | grep -E -o 'Download Version 6.8(|.1)' | sed 's/Download Version //' | sed 's///'`; tt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86/LibreOffice_"$t"_Linux_x86_deb.tar.gz; wget $tt && tar zxvf LibreOffice_"$t"_Linux_x86_deb.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*; ttt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86/LibreOffice_"$t"_Linux_x86_deb_langpack_ru.tar.gz; wget $ttt && tar zxvf LibreOffice_"$t"_Linux_x86_deb_langpack_ru.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*;) && cd ~
Если у вас LibreOffice не установлен (например, в Kali Linux), то достаточно этой команды (64-битные системы):
cd /tmp/ && (t=`curl -s -L http://www.libreoffice.org/download/ | grep -E -o 'Download Version 3.4(|.5)' | sed 's/Download Version //' | sed 's///'`; tt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86_64/LibreOffice_"$t"_Linux_x86-64_deb.tar.gz; wget $tt && tar zxvf LibreOffice_"$t"_Linux_x86-64_deb.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*; ttt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86_64/LibreOffice_"$t"_Linux_x86-64_deb_langpack_ru.tar.gz; wget $ttt && tar zxvf LibreOffice_"$t"_Linux_x86-64_deb_langpack_ru.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*;) && cd ~
cd /tmp/ && (t=`curl -s -L http://www.libreoffice.org/download/ | grep -E -o 'Download Version 1.2(|.6)' | sed 's/Download Version //' | sed 's///'`; tt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86/LibreOffice_"$t"_Linux_x86_deb.tar.gz; wget $tt && tar zxvf LibreOffice_"$t"_Linux_x86_deb.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*; ttt=http://download.documentfoundation.org/libreoffice/stable/$t/deb/x86/LibreOffice_"$t"_Linux_x86_deb_langpack_ru.tar.gz; wget $ttt && tar zxvf LibreOffice_"$t"_Linux_x86_deb_langpack_ru.tar.gz; cd LibreOffice_"$t"* && sudo dpkg -i DEBS/*.deb && cd .. && rm -rf LibreOffice_*;) && cd ~
В меню LibreOffice может появиться не сразу, а после перезапуска графической оболочки (после перезагрузки компьютера).
Для удаления LibreOffice, установленной как в ручном режиме, так и из репозиториев:
sudo apt-get purge libreoffice? -y
Следующий скрипт самостоятельно проверит последнюю версию LibreOffice и сравнит её с той, которая установлена. Если установлена уже самая свежая версия, то скрипт просто завершит работу. Если имеется более свежая версия, то программа выведет соответствующее сообщение и замрёт на 10 секунд. Если не хотите обновляться, то за это время нужно нажать Ctrl+C. В противном случае через 10 секунд программа начнёт удалять старую версию и устанавливать новую. Скопируйте текст программы в TestLO.sh. Запускать так:
#!/bin/bash if [ "`which soffice`" ]; then t1=`soffice --headless --version | grep -Eo '3+[.]5+[.]1+'` echo "Установлена версия: $t1" temp="$(curl -s -L http://www.libreoffice.org/download/)" if [ $? -ne '0' ]; then exit 1 fi t2=`echo "$" | grep -E -o 'Download Version 4.5(|.2)' | sed 's/Download Version //' | sed 's///'` echo "Самая новая версия: $t2" temp="$(curl -s -L http://www.libreoffice.org/download/pre-releases/)" if [ $? -ne '0' ]; then exit 1 fi ttrue=`echo "$" | grep -E -o '/download/libreoffice(.)*/\?version=1.9.4">LibreOffice[A-Za-z0-9. ]*' | grep -o -E '>(.)*LibreOffice//' | sed 's//'|>#!/bin/bash if [ "`which soffice`" ]; then t1=`soffice --headless --version | grep -Eo '5+[.]4+[.]4+'` echo "Установлена версия: $t1" temp="$(curl -s -L http://www.libreoffice.org/download/)" if [ $? -ne '0' ]; then exit 1 fi t2=`echo "$" | grep -E -o 'Download Version 5.5(|.2)' | sed 's/Download Version //' | sed 's///'` echo "Самая новая версия: $t2" temp="$(curl -s -L http://www.libreoffice.org/download/pre-releases/)" if [ $? -ne '0' ]; then exit 1 fi ttrue=`echo "$" | grep -E -o '/download/libreoffice(.)*/\?version=4.8.9">LibreOffice[A-Za-z0-9. ]*' | grep -o -E '>(.)*LibreOffice//' | sed 's//'|>Связанные статьи:
Kali linux установить libreoffice
Learn Latest Tutorials
Preparation
Trending Technologies
B.Tech / MCA
Javatpoint Services
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
- Website Designing
- Website Development
- Java Development
- PHP Development
- WordPress
- Graphic Designing
- Logo
- Digital Marketing
- On Page and Off Page SEO
- PPC
- Content Development
- Corporate Training
- Classroom and Online Training
- Data Entry
Training For College Campus
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week
Like/Subscribe us for latest updates or newsletter