Solaris Sparc/x86
From Wiki
Jump to navigationJump to search- 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
Installation
The Solaris Package Manager is a powerful tool you can use to deploy software packages both locally and throughout a network.
- Become root if necessary
su -
- Change directory to:
<OpenOffice.org_unzip-dir>/packages
- For a silent installation of OpenOffice.org, 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 OpenOffice.org packages :
pkgadd -n -a /tmp/admin -d . *
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 pkgrm tool to uninstall OpenOffice.org.
- Become root if necessary
su -
- Create a file 'ooo_packages' with all OpenOffice.org related Solaris packages
pkginfo -x | cut -f1 -d " " | grep ooo > /tmp/ooo_packages
- For a silent uninstall of OpenOffice.org, 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 OpenOffice.org installer:
pkgrm SUNWj6man SUNWj6cfg
Content on this page is licensed under the Public Documentation License (PDL). |