简单讲述使用RHEL合法
创始人
2024-06-08 11:31:15
0

经常会有网友在论坛中提出问题“这样使用RHEL合法吗?”这样的问题,在这里笔者对使用RHEL合法进行一下介绍。

RHEL 的版权由 GPL 软件版权和 Red Hat 自有版权两部分组成,而由于 GPL 许可证具有传染性,故所有基于 GPL 开发的软件都要符合 GPL 条款,因此 Red Hat 自有版权部分在 RHEL 中只占很少的部分,只需删除所有 Red Hat Network Code 即可完全自由使用RHEL。这在 RHEL Subscriptions Renewal FAQs 里说得很清楚:

If I don't renew, can I continue to use the software? Yes, under the General Public License (GP), you may use the software and maintain your own custom version of Linux.

However, you will not have access to:Technical support from Red Hat.Security or software updates via Red Hat Network. You will have to find updates from alternative resources that provide reliable, secure downloads.Support from certified hardware suppliers or software vendors like Oracle for applications running on an expired Red Hat Enterprise Linux subscription.

Coverage from the Red Hat Open Source Assurance program, featuring an Intellectual Property Warranty for Red Hat Enterprise Linux customers. Red Hat designed the program to protect customers using open source solutions.

Please note that when your subscription expires you will still be bound by the terms and conditions of the End User License Agreement and will have to remove all copies of Red
Hat Network Code.

Red Hat 的营利模式是 Subscription Business Model,即通过向用户出售技术服务,获取相应年费营利.其 Subscription 内容主要包括 phone support、web support 和 unlimited incidents。如果你的技术能力足以自我 Support,又何必购买如此昂贵的 Support 呢?

这样使用 RHEL 合法。其实 Oracle 所谓的 Unbreakable Enterprise Linux 就是把 RHEL 改头换面,再低价出售 Compatiable Subscription,详见:
http://en.wikipedia.org/wiki/Oracle_Enterprise_Linux

当 然,Red Hat 为 Linux 的发展付出了巨大的努力,他们提供的 Red Hat Enterprise Linux 系列较之同类产品,无论在功能还是性能方面都有极大的提升(相对于 Fedora 9 和 Ubuntu Server 的测试结果可以看出)。我们应该如何回馈 Red Hat,促使其继续保持对开源软件的巨大热情,进一步推动 RHEL 又好又快发展,这是大家都需要考虑的问题(欢迎购买 Red Hat 相关产品、服务,参加 RHCE/RHCA 认证培训和考试)。

最后,向各位担心法律问题的朋友,奉上许可证检查脚本: CheckLicense.sh

#!/bin/bash
# Author: hutuworm (http://hutuworm.blogspot.com)
# RELEASED UNDER GPLv2.
for PACKAGE in `rpm -qa`
do
NOTICE=`rpm -qi $PACKAGE | grep License | grep -iE 'red ?hat'`
if [ ! "$NOTICE" = "" ]
then
echo $PACKAGE ":" $NOTICE ;
fi
done

在装有 RHEL 的服务器上执行:
# sh CheckLicense.sh
redhat-logos-1.1.14.3-1 : Size : 993129 License: Copyright ?1999-2002 Red Hat, Inc. All rights reserved.
anaconda-images-9.1-3.RHEL : Size : 5363878 License: Copyright ?2003 Red Hat, Inc. All rights reserved.
anaconda-product-3-1AS : Size : 75111 License: Copyright 2003 Red Hat, Inc. All rights reserved.

那么只需要把 redhat-logos-1.1.14.3-1、anaconda-images-9.1-3.RHEL、anaconda-product-3-1AS 这三个 rpm 包用 rpm -e 命令从系统中移除,即可高枕无忧。

通过本文对RHEL文件合法的简单描述,希望大家对使用RHEL合法有了更多的了解。

 

【编辑推荐】

  1. 设置ORACLE11g随RHEL5自动启动与关闭
  2. RHEL引导故障解决过程详解
  3. RHEL配置NIS网络信息服务实例(1)
  4. 问题解析:这样使用RHEL是否合法
  5. RHEL5下vi语法高亮的问题

相关内容

热门资讯

如何允许远程连接到MySQL数... [[277004]]【51CTO.com快译】默认情况下,MySQL服务器仅侦听来自localhos...
如何利用交换机和端口设置来管理... 在网络管理中,总是有些人让管理员头疼。下面我们就将介绍一下一个网管员利用交换机以及端口设置等来进行D...
施耐德电气数据中心整体解决方案... 近日,全球能效管理专家施耐德电气正式启动大型体验活动“能效中国行——2012卡车巡展”,作为该活动的...
Windows恶意软件20年“... 在Windows的早期年代,病毒游走于系统之间,偶尔删除文件(但被删除的文件几乎都是可恢复的),并弹...
20个非常棒的扁平设计免费资源 Apple设备的平面图标PSD免费平板UI 平板UI套件24平图标Freen平板UI套件PSD径向平...
德国电信门户网站可实时显示全球... 德国电信周三推出一个门户网站,直观地实时提供其安装在全球各地的传感器网络检测到的网络攻击状况。该网站...
着眼MAC地址,解救无法享受D... 在安装了DHCP服务器的局域网环境中,每一台工作站在上网之前,都要先从DHCP服务器那里享受到地址动...
为啥国人偏爱 Mybatis,... 关于 SQL 和 ORM 的争论,永远都不会终止,我也一直在思考这个问题。昨天又跟群里的小伙伴进行...