How to install linux software

angryTom
Release: 2019-11-06 11:19:17
Original
5134 people have browsed it

How to install linux software

How to install linux software

Linux software needs to be installed on the Linux system. The installation method is introduced below:

1. Install through the graphical interface

First download the installation package, and then double-click it

How to install linux software

It will open it in the application market, and then click to install it

How to install linux software

2. Install it in the terminal

Download the binary package with a suffix such as .tar

Use the command to move the software package to the /usr/local directory.

mv packageName.tar /usr/local
Copy after login

Decompression

tar -xvf packageName.tar
Copy after login

After execution, the contents of the compressed package will be in packageName. At this time, we can establish a soft link to access the program from all paths

ln -s /usr/local/packageName/bin/可执行文件 /use/local/bin/可执行文件
Copy after login

Note: The above executable file is the main program.

This way you can open the program through executable file.

Recommended: linux basic tutorial

The above is the detailed content of How to install linux software. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template