Difference between revisions of "EN/documentation/administration guide/linux"
m (1 revision) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | <section begin=title /><noinclude>{{DISPLAYTITLE:</noinclude>Linux x86<noinclude>}}</noinclude><section end=title /> | ||
+ | {{BreadCrumbL10n}} | ||
+ | |||
{{Documentation/AdminGuideTOC/v2 | {{Documentation/AdminGuideTOC/v2 | ||
|OS_type=block | |OS_type=block | ||
|ShowPrevNext=block | |ShowPrevNext=block | ||
|ShowPrevPage=block | |ShowPrevPage=block | ||
− | |PrevPage= | + | |PrevPage=EN/documentation/administration_guide/solaris |
− | |NextPage= | + | |NextPage=EN/documentation/administration_guide/windows |
}} | }} | ||
− | + | ||
__NOTOC__ | __NOTOC__ | ||
+ | |||
== RPM Based Linux distributions == | == RPM Based Linux distributions == | ||
The RPM package manager is a powerful tool you can use to deploy software packages both locally and throughout a network. | The RPM package manager is a powerful tool you can use to deploy software packages both locally and throughout a network. | ||
− | {{ | + | {{Note|These instructions assume you have downloaded and extracted the {{OOo}} installation files.}} |
=== Install === | === Install === |
Latest revision as of 16:02, 30 March 2012
- Custom OpenOffice.org Basic Macros and Libraries
- OpenOffice.org Extension Manager
- Adding Template Files to an OpenOffice.org Installation
- Adding AutoText Files to an OpenOffice.org Network Installation
- Deactivating the OpenOffice.org Registration Wizard
- Accessing Email Clients
- Customizing the User Interface
- Restricting Functionality in OpenOffice.org
- Accessing OpenOffice.org 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 both locally and throughout a network.
Install
- Become root if necessary
su -
- Change directory to:
<OpenOffice.org_unzip-dir>/RPMS
- The RPMS directory contains RPM packages for OpenOffice.org as well as 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
rpm -ivh *.rpm
- To install the OpenOffice.org in the menus:
cd desktop-integration
Find the RPM for your specific Linux distribution and install it:
rpm -ivh openoffice.org-<distribution>-menus_<version>.rpm
You can safely delete the OpenOffice.org installation packages after the install is complete.
Uninstall
Do not delete the OpenOffice.org files from the file system. You must use either the OpenOffice.org Java setup or the RPM package manager to uninstall OpenOffice.org.
- Become root if necessary
su -
- Create a file 'ooo_packages' with all OpenOffice.org related RPM packages
rpm -qa | grep openoffice > ooo_packages
- Check the content of this 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 OpenOffice.org installstion set that includes JRE.
- To remove all OpenOffice.org related packages:
rpm -e 'cat ooo_packages'
DEB Based Linux Distributions
The APT or DPKG package manager is a powerful tool you can use to install, update and remove DEB packages, and is provided as part of some Linux distributions such as Debian and Ubuntu.
If you have the RPM package and do not want to download the DEB package, you can convert the RPM files to DEB files using the following command:
sudo alien -d --scripts *.rpm |
There are installation scripts written that may be useful for experienced users. For more information see the following:
http://installation.openoffice.org/source/browse/installation/setup_native/scripts/ |
Install
- Become root if necessary
su -
- Change directory to:
<OpenOffice.org_unzip-dir>/DEBS
- The DEBS directory contains DEB packages for OpenOffice.org as well as Gnome and KDE integration.
- For users with KDE, you can remove the Gnome integration DEB:
rm openoffice.org-gnome-integration-<version>.deb
- For users with Gnome, you can remove the KDE integration DEB:
rm openoffice.org-kde-integration-<version>.deb
- Install into the standard /opt directory
dpkg -i *.deb
- To install the OpenOffice.org in the menus:
cd desktop-integration dpkg -i openoffice.org-debian-menus_<version>.deb
You can safely delete the OpenOffice.org installation packages after the install is complete.
Uninstall
Do not delete the OpenOffice.org files from the file system. You must use either the OpenOffice.org Java setup or the DEB package manager to uninstall OpenOffice.org.
- Become root if necessary
su -
- To remove all OpenOffice.org related packages:
apt-get remove openoffice.org*
Content on this page is licensed under the Public Documentation License (PDL). |