3

I am using Ubuntu 13.10. Is there a way to update LibreOffice? I don't mean remove this version and do a fresh install of a new version! I don't want to waste my internet. I want to just update it.

karel
  • 114,770
HOS
  • 192

3 Answers3

6

Run the below command on terminal to update libre-office,

sudo apt-get install libreoffice
Avinash Raj
  • 78,556
  • (Thanks & sorry) will the update be a secure way ? or it may cause some problem and performance issues ? – HOS Nov 13 '13 at 20:23
  • It is the secure way of updating a software sudo apt-get install packagename. – Avinash Raj Nov 14 '13 at 00:46
  • yes i know this way is secure but i asked about something else ,come on ,its not very important ! THANKS A LOT for supporting. – HOS Nov 14 '13 at 20:54
  • and also is it now install the latest version (4.1.3)? i think this this official way only installs Latest LTS release , for example if you install a program with this way and go to official site of that program you can found newer releases there ! so it doesn’t help me ! – HOS Nov 14 '13 at 21:00
5

Add the following command line on the terminal.

sudo add-apt-repository ppa:libreoffice/ppa 
sudo apt-get update && sudo apt-get dist-upgrade
waweru
  • 231
  • 1
  • 4
  • 7
0

You may have to add the LibreOffice 5 PPA specifically. (For a different version, substitute a different number in for 5.0.)

sudo add-apt-repository PPA:libreoffice/libreoffice-5.0

Press Enter when prompted to add the repository as a source.

Then, you need to get the latest package lists, including the fresh ones from that source you just added, using...

sudo apt-get update

Then you can upgrade LibreOffice automatically.

sudo apt-get dist-upgrade

Hope that helps!