文件命令 Linux 包名称

文件命令 Linux 包名称

我找不到fileCentOS 6 上哪个软件包提供了。

答案1

如果你已经file在某个系统上安装了,那么以下命令就可以回答你的问题

 rpm -q --whatprovides `which file`

在 CentOS 和其他 RedHat 派生发行版中,包的名称是file

 $ rpm -q --whatprovides `which file`
 file-5.04-13.el6.x86_64

编辑2(来自 jww 的评论)

安装file类型

 sudo yum install file

编辑1正如@Miquel 提醒的那样,在 Debian 和 Ubuntu 中可以使用dpkg-query -S

 $ dpkg-query -S `which file`
 file: /usr/bin/file

相关内容