Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save umair-khokhar/11516a692a21d3de05751f50056bf4dd to your computer and use it in GitHub Desktop.
Save umair-khokhar/11516a692a21d3de05751f50056bf4dd to your computer and use it in GitHub Desktop.
Instruction for LibreOffice dependency installation
1. cd /usr/local
2. wget http://download.documentfoundation.org/libreoffice/stable/5.0.0/rpm/x86_64/LibreOffice_5.0.0_Linux_x86-64_rpm.tar.gz
3. cd LibreOffice_5.0.0_Linux_x86-64_rpm
4. yum localinstall *.rpm --skip-broken
5. yum install cairo
6. yum install cups
7. Update path by updating ~/.bashrc file.
export PATH="$PATH:/opt/libreoffice5.0/program"
8. sudo yum install libXinerama.x86_64 cups-libs dbus-glib
9. You are all set!
@tack-pinkfigaro-biz
Copy link

I am looking for libreoffice which supports Amazon Linux 2023 ARM64, can anyone help me with this.. thanks in advance.

me too,,,

I tried this .
https://wiki.documentfoundation.org/Development/BuildingOnLinux

sudo dnf builddep libreoffice

can not resolv dependencies...

@gamesover
Copy link

libreoffice is installed successfully

but it complains it cannot find jre

[root@ip-8-8-8-8 ~]# libreoffice --convert-to pdf document.txt --headless
javaldx: Could not find a Java Runtime Environment!
Warning: failed to read path from javaldx
convert /root/document.txt -> /root/document.pdf using filter : writer_pdf_Export
Overwriting: /root/document.pdf

even though, I've already installed

if ! [ -x "$(command -v java)" ]; then
  echo "Installing Java Runtime Environment (JRE)..."
  yum -y install java-1.8.0-openjdk
fi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment