首页 > 系统相关 >Linux软件安装包中devel与非devel包之间的区别

Linux软件安装包中devel与非devel包之间的区别

时间:2022-12-20 23:04:49浏览次数:43  
标签:el6 glibc standard libraries Linux devel 安装包 2.12

带devel(develop)的包,俗称开发包。功能上与普通包相同,但体积更大
使用rpm -qi看看这两类包的区别:

# rpm -qi glibc-devel-2.12-1.149.el6.x86_64
Name : glibc-devel Relocations: (not relocatable)
Version : 2.12 Vendor: Red Hat, Inc.
Release : 1.149.el6 Build Date: 2014年08月27日 星期三 00时15分13秒
Install Date: 2015年08月11日 星期二 12时06分50秒 Build Host: x86-028.build.eng.bos.redhat.com
Group : Development/Libraries Source RPM: glibc-2.12-1.149.el6.src.rpm
Size : 990368 License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
Signature : RSA/8, 2014年09月04日 星期四 23时42分50秒, Key ID 199e2f91fd431d51
Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
URL : http://sources.redhat.com/glibc/
Summary : Object files for development using standard C libraries.
Description :
The glibc-devel package contains the object files necessary
for developing programs which use the standard C libraries (which are
used by nearly all programs). If you are developing programs which
will use the standard C libraries, your system needs to have these
standard object files available in order to create the executables.

Install glibc-devel if you are going to develop programs which will
use the standard C libraries.

 

# rpm -qi glibc-2.12-1.149.el6.x86_64
Name : glibc Relocations: (not relocatable)
Version : 2.12 Vendor: Red Hat, Inc.
Release : 1.149.el6 Build Date: 2014年08月27日 星期三 00时15分13秒
Install Date: 2015年08月11日 星期二 12时05分54秒 Build Host: x86-028.build.eng.bos.redhat.com
Group : System Environment/Libraries Source RPM: glibc-2.12-1.149.el6.src.rpm
Size : 12959142 License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
Signature : RSA/8, 2014年09月04日 星期四 23时42分51秒, Key ID 199e2f91fd431d51
Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
URL : http://sources.redhat.com/glibc/
Summary : The GNU libc libraries
Description :
The glibc package contains standard libraries which are used by
multiple programs on the system. In order to save disk space and
memory, as well as to make upgrading easier, common system code is
kept in one place and shared between programs. This particular package
contains the most important sets of shared libraries: the standard C
library and the standard math library. Without these two libraries, a
Linux system will not function.

 



标签:el6,glibc,standard,libraries,Linux,devel,安装包,2.12
From: https://blog.51cto.com/u_15147537/5956967

相关文章

  • #yyds干货盘点#Linux使用最频繁的命令:ls 命令
    ls命令介绍ls命令是英文list的简写形式。我们用它来列出文件。它的用法就是在任何目录下直接执行ls,或者在ls后接目录路径(包括相对路径和绝对路径)。当然我们还可以使用......
  • Linux下如何安装MySQL?
    目标主机:centos8MySQL安装所有平台的MySQL下载地址为:https://dev.mysql.com/downloads/repo/yum/。挑选你需要的MySQLCommunityServer版本及对应的平台。注意:安......
  • linux动态库(.so)搜索路径(目录)设置方法
     https://blog.csdn.net/my_angle2016/article/details/121770237 { 在Linux中,动态库的搜索路径除了默认的搜索路径外,还可通过三种方法来指定:方法一:在配置文件/et......
  • 在linux上oracle服务启动停止详细
    在CentOS6.3下安装完Oracle10gR2,重开机之后,你会发现Oracle没有自行启动,这是正常的,因为在Linux下安装Oracle的确不会自行启动,必须要自行设定相关参数,首先先介绍一般而言如......
  • linux LO接口
    1、什么是LO接口?在LINUX系统中,除了网络接口eth0,还可以有别的接口,比如lo(本地环路接口)。环回地址lo是主机用于向自身发送通信的一个特殊地址(也就是一个特殊的目的地址)。本......
  • [ Linux ] 互斥量实现原理,线程安全
    上篇文章我们对抢票系统做了加锁处理,对互斥量tickets进行加锁。而本篇博文来谈谈互斥量实现的原理以及相关问题。1.上篇遗留问题我们在临界资源对应的临界区中加锁了,就不是......
  • Linux 系统结构
    来源:https://www.linuxprobe.com/linux-system-structure.html导读Linux系统一般有4个主要部分:内核、shell、文件系统和应用程序。内核、shell和文件系统一起形......
  • linux操作系统的kill -9 和 kill -15 的区别
    在linux操作系统中,要杀死一个进程需要使用的命令是kill。1kill-9PID强制停掉进程,不给进程使用回调函数的机会,也不会等进程处理完手上的工作,对于已经进入生产环境的系......
  • Linux 利用 buildroot 移植 SSH
    0、Buildroot说明下载Buildroot是Linux平台上一个构建嵌入式Linux系统的框架。整个Buildroot是由Makefile脚本和Kconfig配置文件构成的。你可以和编译Linux内核一......
  • Linux下安装lr负载机
    负载代理下载地址load-generator链接:https://pan.baidu.com/s/1qcFNZXGdegzYJovOKgj2CA提取码:ed55安装环境系统:centos7最小安装版(CentOS-7-x86_64-Minimal-1503-01.iso)。......