How to install linux Application Software

Source: Internet
Author: User

In Linux, there are two common software installation methods:

1. SoftwareSource code, You need to compile it yourself. This software package is usually replaced by a Tartar package with a suffix of .tar.gz.

SourceCodeInstallation Method:

1) # tar-zxvf apache.tar.gz

Use this command to uncompress the package. After decompression, a new directory is created.

2) after entering the new directory, observe which of the following files is contained in the directory: Configure, makefile, or imake.

For configure, run the following command:

#./Configure

# Make

# Make install

If it is a MAKEFILE file, run the following command:

# Make

# Make install

If the imake file is used, run:

# Xmkmf

# Make

# Make install

3) If no error message is displayed, the installation is successful and the installation directory appears during installation.

2. executableProgram, You can install it directly, with the suffix. rpm

RPM package installation method:

# rpm-IVH

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.