linux安装软件系列之npm安装
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash

·
什么是rpm
百度说它是 Red-hat Package Manager (红帽包管理器)
其实它是:RPM Package Manager (RPM包管理器,来源于:https://rpm.org)
这种递归的缩写如同"GNU"一样充满了Unix情怀
回到正题,在Linux中,大部分软件都以"包(Package)"的形式表示,其后缀名是".rpm"
命名规则也简单:
--..rpm
4个常用的RPM命令
安装 install
rpm -ivh 软件名.rpm
卸载 erase
rpm -ev 软件名.rpm
更新 Upgrade
rpm -Uvh 软件名.rpm
查询 query
rpm -q 软件名.rpm
rpm安装以后
当把一个软件安装到系统后,会产生3种类型的文件
- 二进制文件和一些脚本文件 (File and Script)
- 文档,比如man信息等等 (Documentation)
- 配置文件(Configuration)
如何查看这3中文件
- rpm -qs 和 rpm -qf //script and file
- rpm -qd //documentation
- rpm -qc //configuration
、




A beautiful web dashboard for Linux
最近提交(Master分支:9 个月前 )
186a802e
added ecosystem file for PM2 5 年前
5def40a3
Add host customization support for the NodeJS version 5 年前
更多推荐
所有评论(0)