search
HomeSystem TutorialLINUXWhat you don't know about rpm

What you don't know about rpm

Jan 11, 2024 pm 06:27 PM
linuxlinux tutorialRed Hatlinux systemLinux operating systemlinux commandlinux certificationred hat linuxlinux videoThis is how you should learn LinuxComplete list of linux commandsBrother Niao’s Linux private cooking

Introduction RPM is the package management system of the centos series of Linux systems. Software can be quickly installed through rpm. It is one of the package management systems that is often used in study and work. Let's take a closer look at the use of rpm - things you don't know about rpm.
1. How to initialize the database using rpm?

Querying whether an rpm package is installed through the rpm command is also done through the rpm database; so we often use the following two commands to initialize the rpm database;

[root@feiyu ~]# rpm --initdb
[root@feiyu ~]# rpm --rebuilddb    注:这个要花好长时间;

Note: These two parameters are extremely useful. Sometimes there is a problem with the rpm system and it cannot be installed and queried. Most of the time there is a problem here.

2. Check the installed software on the system?
[root@feiyu ~]# rpm -qa |more
3. Query which software package an installed file belongs to?

Syntax: rpm -qf software name

[root@feiyu ~]# rpm -qf `which nmon`
nmon-14i-8.el6.x86_64
4. Check where the installed software packages are installed?

Syntax: rpm -ql software name

[root@feiyu ~]# rpm -ql nmon
/usr/bin/nmon
/usr/share/doc/nmon-14i
/usr/share/doc/nmon-14i/Documentation.txt
/usr/share/man/man1/nmon.1.gz
5. How to query the information of an installed software package?

Syntax format: rpm -qi software name

[root@feiyu ~]# rpm -qi nmon
6, check the configuration file of the installed software

Syntax format: rpm -qc software name

[root@feiyu ~]# rpm  -qc vsftpd
/etc/logrotate.d/vsftpd
/etc/pam.d/vsftpd
/etc/vsftpd/ftpusers
/etc/vsftpd/user_list
/etc/vsftpd/vsftpd.conf
7, check the document installation location of an installed software:

Syntax format: rpm -qd software name

[root@feiyu ~]# rpm  -qd nmon
/usr/share/doc/nmon-14i/Documentation.txt
/usr/share/man/man1/nmon.1.gz
8, check the software packages and files that the installed software depends on;

Syntax format: rpm -qR software name

[root@feiyu ~]# rpm  -qR  nmon

Query the summary of installed software: For a software package that has been installed, we can combine a series of parameters; such as rpm -qil; such as

[root@feiyu ~]# rpm  -qil  nmon
9, for viewing uninstalled software packages:

View the purpose, version and other information of a software package;

Syntax: rpm -qpi file.rpm

[root@feiyu ~]# rpm -qpi glibc-2.15-60.el6.x86_64.rpm 
10, View the files contained in a software package;

Syntax: rpm -qpl file.rpm

[root@feiyu ~]# rpm -qpl glibc-2.15-60.el6.x86_64.rpm 
11, check the location of the software package documentation;

Syntax: rpm -qpd file.rpm

[root@feiyu ~]# rpm -qpd glibc-2.15-60.el6.x86_64.rpm 
12, View the configuration file of a software package;

Syntax: rpm -qpc file.rpm

[root@feiyu ~]# rpm -qpc glibc-2.15-60.el6.x86_64.rpm 
13. Check the dependencies of a software package. This is the most practical command for uninstalled rpm
语法: rpm -qpR file.rpm
[root@feiyu ~]# rpm -qpR glibc-2.15-60.el6.x86_64.rpm
14, for the installation processing method of src.rpm package: The first type: compile into rpm package.
1,[root@feiyu ~]# rpm  -i vsftpd-2.2.2-11.el6_3.1.src.rpm
 
2,[root@feiyu ~]# cd  rpmbuild/SPECS/
     [root@feiyu SPECS]# ls -l
     total 24
     -rw-r--r--. 1 root root 21472 Feb 13  2013 vsftpd.spec
 
3,[root@feiyu SPECS]# rpmbuild -bb vsftpd.spec

At this time, in ../RPMS/ (depending on the specific package), there is a new rpm package in this directory, which is a compiled binary file. Execute: rpm -i new-package.rpm to complete the installation.

Second type: Compile into source code package
1. [root@feiyu ~]# rpm  -i vsftpd-2.2.2-11.el6_3.1.src.rpm
 
2. [root@feiyu ~]# cd  rpmbuild/SPECS/
 
3. [root@feiyu SPECS]# rpmbuild -bp vsftpd.spec 
 
4. [root@feiyu SPECS]# cd ../BUILD/vsftpd-2.2.2/ 
 
5. [root@feiyu vsftpd-2.2.2]# ./configure   这一步和编译普通的源码软件一样,可以加上参数
 
6. [root@feiyu vsftpd-2.2.2]# make
 
7. [root@feiyu vsftpd-2.2.2]# make install
Attachment: Commonly used parameters of RPM commands
--initdb:初始化数据库
 
--rebuilddb:从已安装包的头信息中重建数据库的反转列表
 
-q:在系统中查询软件或查询指定rpm包的内容信息
 
-i:在系统中安装软件
 
-U:在系统中升级软件
 
-e:在系统中卸载软件
 
-h:用#(hash)符显示rpm安装过程
 
-v:详述安装过程
 
-c:列出所有配置文件
 
-d :列出所有文档文件
 
-l:列出包内的所有文件
 
-ivh:安装显示安装进度--install--verbose--hash
 
-Uvh:升级软件包--Update;
 
-qf:查找指定文件属于哪个RPM软件包[Query File];
 
-p:表明对RPM包进行查询,通常和其它参数同时使用,如:
 
-qlp:查询某个RPM包中的所有文件列表
 
-qip:查询某个RPM包的内容信息

The above is the detailed content of What you don't know about rpm. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Linux就该这么学. If there is any infringement, please contact admin@php.cn delete
What are the main tasks of a Linux system administrator?What are the main tasks of a Linux system administrator?Apr 19, 2025 am 12:23 AM

The main tasks of Linux system administrators include system monitoring and performance tuning, user management, software package management, security management and backup, troubleshooting and resolution, performance optimization and best practices. 1. Use top, htop and other tools to monitor system performance and tune it. 2. Manage user accounts and permissions through useradd commands and other commands. 3. Use apt and yum to manage software packages to ensure system updates and security. 4. Configure a firewall, monitor logs, and perform data backup to ensure system security. 5. Troubleshoot and resolve through log analysis and tool use. 6. Optimize kernel parameters and application configuration, and follow best practices to improve system performance and stability.

Is it hard to learn Linux?Is it hard to learn Linux?Apr 18, 2025 am 12:23 AM

Learning Linux is not difficult. 1.Linux is an open source operating system based on Unix and is widely used in servers, embedded systems and personal computers. 2. Understanding file system and permission management is the key. The file system is hierarchical, and permissions include reading, writing and execution. 3. Package management systems such as apt and dnf make software management convenient. 4. Process management is implemented through ps and top commands. 5. Start learning from basic commands such as mkdir, cd, touch and nano, and then try advanced usage such as shell scripts and text processing. 6. Common errors such as permission problems can be solved through sudo and chmod. 7. Performance optimization suggestions include using htop to monitor resources, cleaning unnecessary files, and using sy

What is the salary of Linux administrator?What is the salary of Linux administrator?Apr 17, 2025 am 12:24 AM

The average annual salary of Linux administrators is $75,000 to $95,000 in the United States and €40,000 to €60,000 in Europe. To increase salary, you can: 1. Continuously learn new technologies, such as cloud computing and container technology; 2. Accumulate project experience and establish Portfolio; 3. Establish a professional network and expand your network.

What is the main purpose of Linux?What is the main purpose of Linux?Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

Does the internet run on Linux?Does the internet run on Linux?Apr 14, 2025 am 12:03 AM

The Internet does not rely on a single operating system, but Linux plays an important role in it. Linux is widely used in servers and network devices and is popular for its stability, security and scalability.

What are Linux operations?What are Linux operations?Apr 13, 2025 am 12:20 AM

The core of the Linux operating system is its command line interface, which can perform various operations through the command line. 1. File and directory operations use ls, cd, mkdir, rm and other commands to manage files and directories. 2. User and permission management ensures system security and resource allocation through useradd, passwd, chmod and other commands. 3. Process management uses ps, kill and other commands to monitor and control system processes. 4. Network operations include ping, ifconfig, ssh and other commands to configure and manage network connections. 5. System monitoring and maintenance use commands such as top, df, du to understand the system's operating status and resource usage.

Boost Productivity with Custom Command Shortcuts Using Linux AliasesBoost Productivity with Custom Command Shortcuts Using Linux AliasesApr 12, 2025 am 11:43 AM

Introduction Linux is a powerful operating system favored by developers, system administrators, and power users due to its flexibility and efficiency. However, frequently using long and complex commands can be tedious and er

What is Linux actually good for?What is Linux actually good for?Apr 12, 2025 am 12:20 AM

Linux is suitable for servers, development environments, and embedded systems. 1. As a server operating system, Linux is stable and efficient, and is often used to deploy high-concurrency applications. 2. As a development environment, Linux provides efficient command line tools and package management systems to improve development efficiency. 3. In embedded systems, Linux is lightweight and customizable, suitable for environments with limited resources.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software