I'm using Lubuntu 20.04 as my daily driver because it's fast, nice looking and customizable.
Unfortunately, there is a minor bug with LibreOffice on Lubuntu 20.04 LTS. Every time I edit a PDF using LibreOffice Draw, or simply export a document into PDF, the PDF result is always blank.
After several times experimenting, I found a solution in a forum, and the solution worked fine.
Here are the commands to solve the issue:
sudo apt-get remove --purge libreoffice
sudo dpkg --list | awk '/ii/&&/libreoffice/{print $2}' | sudo xargs apt purge -y
sudo apt autoremove -y
sudo apt install libreoffice
Here are the commands to solve the issue:
sudo apt-get remove --purge libreoffice
sudo dpkg --list | awk '/ii/&&/libreoffice/{print $2}' | sudo xargs apt purge -y
sudo apt autoremove -y
sudo apt install libreoffice
Comments