How to install software on linux system

王林
Release: 2020-03-11 15:00:07
Original
2696 people have browsed it

How to install software on linux system

Debian, Ubuntu, Mint and other Debian-based distributions all use .deb files and the dpkg package management system. There are two ways to install apps through this system. You can use the apt program to install from a repository, or you can use the dpkg program to install an application from a .deb file.

(Recommended tutorial:linux tutorial)

Use apt to install applications:

$ sudo apt install app_name
Copy after login

By default, Red Hat uses multiple package management systems. These systems are still very similar to each other and to those used in Debian when using their own commands. For example, we can use yum or dnf managers to install applications. Applications in

$ sudo yum install app_name $ sudo dnf install app_name
Copy after login

.rpm format can also be installed using the rpm command.

$ sudo rpm -i app_name.rpm
Copy after login

Related video recommendations:linux video tutorial

The above is the detailed content of How to install software on linux system. 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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!