- Простой способ установки самой новой версии LibreOffice на Linux
- Связанные статьи:
- Office для kali linux
- Learn Latest Tutorials
- Preparation
- Trending Technologies
- B.Tech / MCA
- Javatpoint Services
- Training For College Campus
- How to install LibreOffice for Kali Linux Step-by-Step Guide
- What is LibreOffice?
- Install LibreOffice in Kali Linux by dpkg command
- Uninstall LibreOffice in Kali Linux
- How to install LibreOffice in Kali Linux Video in Hindi
- Conclusion
Простой способ установки самой новой версии 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 9.2(|.7)' | 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 2.5(|.3)' | 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 5.2(|.7)' | 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 5.7(|.7)' | 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+[.]8+[.]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 8.7(|.6)' | 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.2.2">LibreOffice[A-Za-z0-9. ]*' | grep -o -E '>(.)*LibreOffice//' | sed 's//'|>#!/bin/bash if [ "`which soffice`" ]; then t1=`soffice --headless --version | grep -Eo '9+[.]9+[.]7+'` 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 9.8(|.6)' | 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=6.4.9">LibreOffice[A-Za-z0-9. ]*' | grep -o -E '>(.)*LibreOffice//' | sed 's//'|>Связанные статьи:
Office для kali linux
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
How to install LibreOffice for Kali Linux Step-by-Step Guide
Are you a regular user of Kali Linux? Do you want to install an Office for Kali Linux?
Kali Linux is an operating system used for penetration testing purposes only. So it doesn’t have office use tools like Word, Excel, PowerPoint, etc.
Microsoft Word, Excel, and PowerPoint are not available for Linux distributions. So you can’t install this software in Kali Linux and other Linux distributions.
You should know how to install LibreOffice for Kali Linux for office work. LibreOffice includes Writer, calc, impress, Base, etc.
What is LibreOffice?
LibreOffice is a powerful and free office suite, used by millions of people around the world. Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity. LibreOffice includes several applications that make it the most versatile Free and Open Source office suite on the market:
- Writer (word processing) = MS Word
- Calc (spreadsheets) = Microsoft Excel
- Impress (presentations) = Microsoft PowerPoint
- Draw (vector graphics and flowcharts),
- Base (databases), = MS Access
- Math (formula editing).
Step 3: New window will be popup select the Save File radio button and then click on the “OK” button to save the file.
Install LibreOffice in Kali Linux by dpkg command
As you have seen, I have downloaded an executable file with the .deb extension for Kali Linux.
By default, downloaded files go to the Download folder so use the cd command to change the directory. Use the following syntax:
[email protected]:~$ cd Downloads/ [email protected]:~/Downloads$ ls LibreOffice_6.4.4_Linux_x86-64_deb.tar.gz [email protected]:~/Downloads$
The downloaded file is LibreOffice_6.4.4_Linux_x86-64_deb.tar.gz, This file is zip format.
I need to extract it first tar command can be used to perform this action.
$ tar -xvf LibreOffice_6.4.4_Linux_x86-64_deb.tar.gz
Again use ls command to view available content inside the current folder, which is Downloads.
You will see a new folder has appeared after extracting, Go inside it. Then move inside the DEBS folder. You can use the following commands to do that.
Again you can use the ls command to see the content in the DEBS folder. You will find lots of .deb files there.
As you know, multiple tools belong to LibreOffice. For example LibreOffice Calculator, Libreoffice writer, presenter, etc.
You must need to install all packages that exist inside the DEBS folder. So use the following command to install deb file in Ubuntu of all types of packages by using the single dpkg command as follows.
[email protected]:~/Downloads/LibreOffice_6.4.4.2_Linux_x86-64_deb/DEBS$ sudo dpkg -i lib*
[email protected]:~/Downloads/LibreOffice_6.4.4.2_Linux_x86-64_deb/DEBS$ sudo dpkg -i lib*
Open LibreOffice in Kali Linux:
Just go to the search application bar and search for LibreOffice. See in the following image.
I am going to open LibreOffice writer, It will look like following
Uninstall LibreOffice in Kali Linux
If you don’t want to use LibreOffice anymore in your system then you can uninstall by following simple steps.
Open the terminal and type simple single command as follows
$sudo apt remove –purge libreoffice*
Additionally run the following command to clean the apt database.
Don’t forget to run the following command for removing unuseful tools, utility
How to install LibreOffice in Kali Linux Video in Hindi
Conclusion
Most of us are using Windows and are familiar with Microsoft Office including MS Office here is Libre Office for Kali Linux. In this tutorial, you will learn Kali Linux commands “How to install LibreOffice for Kali Linux. LibreOffice is an office for Kali Linux and other Linux distributions. You are at the right place to learn 2 commands to complete this operation.