Difference between revisions of "Documentation/Administration Guide/Linux"
From Apache OpenOffice Wiki
Line 77: | Line 77: | ||
Owner of StarOffice CD has to go into the RPMS directory of their CD-ROM. Users of the download installation set have to extract the RPM packages first, which is described in the RPM section above. | Owner of StarOffice CD has to go into the RPMS directory of their CD-ROM. Users of the download installation set have to extract the RPM packages first, which is described in the RPM section above. | ||
− | + | === Installation === | |
+ | <ol> | ||
+ | <li>Become root if necessary | ||
+ | <source lang="text"> | ||
+ | su - | ||
+ | </source></li> | ||
+ | <li>Change directory to: | ||
+ | <source lang="text"> | ||
+ | <OpenOffice.org_unzip-dir>/DEBS | ||
+ | </source></li> | ||
+ | <li>The DEBS directory contains DEB packages for the Gnome and KDE integration. | ||
+ | * For users with KDE, you can remove the Gnome integration DEB: | ||
+ | <source lang="text"> | ||
+ | rm openoffice.org-gnome-integration-<version>.deb | ||
+ | </source> | ||
+ | * For users with Gnome, you can remove the KDE integration DEB: | ||
+ | <source lang="text"> | ||
+ | rm openoffice.org-kde-integration-<version>.deb | ||
+ | </source></li> | ||
+ | <li>Install into the standard <tt>/opt</tt> directory | ||
+ | <source lang="text"> | ||
+ | dpkg -i - force-overwrite *.deb | ||
+ | </source></li> | ||
+ | </ol> | ||
− | + | You can safely delete the {{OOo}} installation packages after the install is complete. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{PDL1}} | {{PDL1}} |
Revision as of 09:24, 23 July 2008
- Apache OpenOffice Basic Macros and Libraries
- Apache OpenOffice Extension Manager
- Adding Template Files to an Apache OpenOffice Installation
- Adding AutoText Files to an Apache OpenOffice Network Installation
- Deactivating the Apache OpenOffice Registration Wizard
- Accessing Email Clients
- Customizing the User Interface
- Restricting Functionality in Apache OpenOffice
- Accessing Apache OpenOffice User Profiles on an LDAP Server
RPM Based Linux distributions
The RPM package manager is a powerful tool you can use to deploy software packages locally and through a network.
Installation
- Become root if necessary
su -
- Change directory to:
<OpenOffice.org_unzip-dir>/RPMS
- The RPMS directory contains RPM package for the Gnome and KDE integration.
- For users with KDE, you can remove the Gnome integration RPM:
rm openoffice.org-gnome-integration-<version>.rpm
- For users with Gnome, you can remove the KDE integration RPM:
rm openoffice.org-kde-integration-<version>.rpm
- Install into the standard /opt directory
Template:Documentation/Note
rpm -ivh *.rpm
You can safely delete the Apache OpenOffice installation packages after the install is complete.
Uninstall
Do not delete the Apache OpenOffice files from the file system. You must use the Apache OpenOffice Java setup or the RPM package manager to uninstall Apache OpenOffice.
- Become root if necessary
su -
- Create a file 'ooo_packages' with all Apache OpenOffice related RPM packages
rpm -qa | grep openoffice > ooo_packages
- Check the content of file carefully. All packages in this list will be removed. This list does not include the JRE package that was installed if you used the Apache OpenOffice installstion set that includes JRE.
- To remove all Apache OpenOffice related packages:
rpm -e openoffice.org*
DEB Based Linux Distributions
Installation
The APT or DPKG package manager used to install, update and remove DEB packages, and is provided as part of DEB based Linux distributions such as Debian and Ubuntu.
cd OOo_inst_folder/DEBS sudo dpkg -i *.deb