Difference between revisions of "Documentation/Administration Guide/Solaris"
From Apache OpenOffice Wiki
m (→Installation) |
m |
||
Line 42: | Line 42: | ||
su - | su - | ||
</syntaxhighlight></li> | </syntaxhighlight></li> | ||
− | <li>Create a file 'ooo_packages' with all {{ | + | <li>Create a file 'ooo_packages' with all {{AOo}} related Solaris packages |
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
pkginfo -x | cut -f1 -d " " | grep ooo > /tmp/ooo_packages | pkginfo -x | cut -f1 -d " " | grep ooo > /tmp/ooo_packages | ||
</syntaxhighlight></li> | </syntaxhighlight></li> | ||
− | <li>For a silent uninstall of {{ | + | <li>For a silent uninstall of {{AOo}}, you must create an <tt>admin</tt> file. This hides any recurring queries during the uninstall. |
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
echo action=nocheck > /tmp/admin | echo action=nocheck > /tmp/admin | ||
Line 56: | Line 56: | ||
pkgrm -a /tmp/admin -n `cat /tmp/ooo_packages` | pkgrm -a /tmp/admin -n `cat /tmp/ooo_packages` | ||
</syntaxhighlight></li> | </syntaxhighlight></li> | ||
− | <li>Depending on your Java environment you may choose to uninstall additional packages which were installed by the {{ | + | <li>Depending on your Java environment you may choose to uninstall additional packages which were installed by the {{AOo}} installer: |
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
pkgrm SUNWj6man SUNWj6cfg | pkgrm SUNWj6man SUNWj6cfg |
Latest revision as of 09:47, 1 May 2022
- 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
Installation
The Solaris Package Manager is a powerful tool you can use to deploy software packages both locally and throughout a network.
These instructions assume you have downloaded and extracted the Apache OpenOffice installation files. |
- Become root if necessary
su -
- Change directory to:
<OpenOffice_unzip-dir>/packages
- For a silent installation of Apache OpenOffice, you must create an admin file. This hides any recurring queries during the installation.
echo action=nocheck > /tmp/admin echo conflict=quit >> /tmp/admin echo idepend=nocheck >> /tmp/admin
- Install the Apache OpenOffice packages :
pkgadd -n -a /tmp/admin -d . *
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 either the Apache OpenOffice Java setup or the pkgrm tool to uninstall Apache OpenOffice.
- Become root if necessary
su -
- Create a file 'ooo_packages' with all Apache OpenOffice related Solaris packages
pkginfo -x | cut -f1 -d " " | grep ooo > /tmp/ooo_packages
- For a silent uninstall of Apache OpenOffice, you must create an admin file. This hides any recurring queries during the uninstall.
echo action=nocheck > /tmp/admin echo conflict=nocheck >> /tmp/admin echo rdepend=nocheck >> /tmp/admin
- Remove all packages listed in the file
pkgrm -a /tmp/admin -n `cat /tmp/ooo_packages`
- Depending on your Java environment you may choose to uninstall additional packages which were installed by the Apache OpenOffice installer:
pkgrm SUNWj6man SUNWj6cfg
Content on this page is licensed under the Public Documentation License (PDL). |