Koozali.org: home of the SME Server

Install for sme server

Eli

Install for sme server
« on: August 20, 2003, 04:24:13 PM »
I searched and couldn't find. How do I install an add-on to sme server 5.6, if possible straight from the internet?

Thanks in advanced.

Flipp

Re: Install for sme server
« Reply #1 on: October 31, 2003, 07:56:05 AM »
I had the same question, but found this in FAQ.......

********************
How do I install/upgrade RPMs?
In order to install RPM packages to any RedHat based system one should familiarize oneself with the rpm command. The most commonly used forms of rpm:

This command will format and display the on-line manual pages for the rpm command:

man rpm

This command says (i)nstall package_name, with (v)erbose output and print (h)ashes for a nice display as archive is unpacked.:

rpm -ivh package_name-version.rpm

Similarly, this command says (U)pgrade package_name, with (v)erbose output and print (h)ashes for a nice display as archive is unpacked.:

rpm -Uvh package_name-version.rpm

The general form of the rpm uninstall command is:

rpm -e package_name-version.rpm
********************

Charlie Brady

Re: Install for sme server
« Reply #2 on: October 31, 2003, 06:36:32 PM »
Flipp wrote:

> This command says (i)nstall package_name, with (v)erbose
> output and print (h)ashes for a nice display as archive is
> unpacked.:
>
> rpm -ivh package_name-version.rpm
>
> Similarly, this command says (U)pgrade package_name, with
> (v)erbose output and print (h)ashes for a nice display as
> archive is unpacked.:
>
> rpm -Uvh package_name-version.rpm

"-U" is preferred, as it will install or upgrade as required. Using "-i" will barf if you try to upgrade an already installed package.

> The general form of the rpm uninstall command is:
>
> rpm -e package_name-version.rpm

Wrong. It's:

rpm -e package_name

or

rpm -e package_name-version

Charlie