11

When I type

$ sudo apt-get install libreoffice<tab>

I see there are 141 tab completions. All the language packs are there as well as several support packages.

But libreoffice itself is absent.

Recently the LibreOffice package has been added to the DebianĀ 7 (Wheezy) repository.

Peter Mortensen
  • 2,004
  • 2
  • 15
  • 18
John La Rooy
  • 12,005
  • 9
  • 48
  • 77

1 Answers1

7

On Debian Wheezy, libreoffice is a meta-package, which installs the following packages:

  • libreoffice-writer: Word processor
  • libreoffice-calc: Spreadsheet
  • libreoffice-impress: Presentation
  • libreoffice-draw: Drawing
  • libreoffice-base: Database
  • libreoffice-math: Equation editor
  • libreoffice-filter-mobiledev: Mobile Devices filters

Therefore, you can install the equivalent by running

sudo apt-get install libreoffice-writer libreoffice-calc libreoffice-impress libreoffice-draw libreoffice-base libreoffice-math libreoffice-filter-mobiledev
Alex Chamberlain
  • 15,638
  • 15
  • 69
  • 113