Installing in Linux

What is needed (requirements -in- addition to downloading the latest version of LibreOffice) to install LibreOffice in Linux (without using internet connection)?

Can I just install LibreOffice in Linux (just like/similar to) the way I would install LibreOffice in Windows?

Please advise.
Thanks Tracey
I am a Windows 2000 User with vmWorkstation 5.5.9
I am not an experienced Linux User, but I have installed Cent vOS6.5, PCLinuxOS v2014.08, and SimplyMEPIS v6.5++v14.2 as trial/test in vmWorkstation.

What is needed (requirements -in- addition to downloading the latest version of LibreOffice) to install LibreOffice in Linux (without using internet connection) ?

Sorry, downloading by definition needs internet connection

I’m not familiar with any of the Linux-distros you mentioned about, but any Distro I know has some kind of GUi-tool and|or commandline-interface to install, on debian-based distros should work from Commandline:

 sudo apt-get install libreoffice

Hi Tracey2031

I’ve installed + updated LO under Debian but previously have used CentOS extensively on an Internet Server. You can certainly install without an internet connection but–BE WARNED!–all OS these days expect to be connected to the Internet. This is particularly true of CentOS as it expects to be on an Internet-connected server. Be warned also that CentOS expects you to NOT use a GUI. You probably want to install Debian if you expect to use Office. Nevertheless, I will advise you in installing under CentOS. It will fail, since it will want to install a hundred other things…

CentOS uses yum to install & update, so the first thing is to download a .rpm from LibreOffice. Here it is step-by-step:

  1. Download the RPM from LibreOffice

    Currently that is v4.4.4.3 (Change language or if x64 on main page):-
    http://download.documentfoundation.org/libreoffice/stable/4.4.4/rpm/x86/LibreOffice_4.4.4_Linux_x86_rpm.tar.gz
  2. Place the .rpm.tar.gz somewhere memorable. This is a RPM file stored as a TAR file & zipped up as a gzip file.
  3. Open your terminal & navigate to the directory with the gzip file.
  4. Issue the command as root:
$ su
Password:
# tar -xzvf LibreOffice_4.4.4_Linux_x86_rpm.tar.gz
  1. (that drops the RPM file into (probably) the same directory)
  2. check for the name of the RPM file
# ls -al
  1. Now issue the command, again as root:
# yum install /path/to/LibreOffice_4.4.4_Linux_x86_rpm

The value of yum is that it will check LibreOffice’s dependencies and, if necessary, will install everything that LibreOffice needs to work on your system (under Debian APT is used to perform the same job). It does this by connecting via the Internet to a CentOS repository other RPM files.

If this helps then please tick the answer (:heavy_check_mark:).