Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of uninstalling Software in linux system

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

The Linux operating system is a clone of the UNIX operating system, which was born on October 5, 1991 (the first time it was officially announced). Later, with the help of Internet network and the joint efforts of computer enthusiasts all over the world, it has become the most widely used UNIX operating system in the world today, and the number of users is still growing rapidly.

Methods:

1. Software unloading is mainly carried out using rpm. To uninstall software, you first need to know the name of the package registered in the system.

Type the command:

#rpm -q -a

You can find all the packages installed in the current system.

2, determine the name of the software to uninstall, you can start the actual uninstall of the software.

Type the command:

#rpm -e [package name]

The software can be uninstalled. The function of parameter e is to put rpm into unload mode. Uninstall the package named [package name].

Because of the dependencies between packages in the system, rpm will prompt and stop the uninstall if it cannot be uninstalled due to dependencies. You can ignore dependencies and start unloading directly using the following command:

#rpm -e [package name] -nodeps

Uninstalling dependencies may cause other software in the system to become unusable.

How to uninstall software installed with source packages?

It is best to look at README and INSTALL, which are generally said, but most software does not provide a way to uninstall the source package; we can find the installation point of the software to delete. It depends on where you install it.

For example:

If installing software, specify directories. This question is not difficult either.

For example, install gaim with source package

#./ configure --prefix=/opt/gaim #make #make install

If mlterm is installed

#./ configure --prefix=/opt/mlterm #make #make install

The source package installed software, are designated to install in the/opt directory, so do not know. If deleted, delete the corresponding software catalog.

Some software needs to perform make uninstall in the unzipped installation directory, so it is uninstalled.

The above is how to uninstall installed software in linux details, more please pay attention to other related articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report