11 open source business models
https://www.zdnet.com/article/11-open-source-business-models/
Critics are always claiming open source lacks a business model.
(Let's Make a Deal is back on TV, on CBS, starring Wayne Brady as Monty Hall. Cross-promotion is a great old business model, don't you think?)
In fact it's proprietary software that is lacking in imagination. They have only one business model:
- EULA Ware -- Give me money. Now go away. It doesn't work? Go away. You want your money back? Read your EULA, and go away. You want to see the software? Go away.
This has the virtue of simplicity. People pay and you really aren't required to give them anything. But it lacks a certain je ne sais quoi. Don't know what that is? You must work for a proprietary software company. (Go away.)
Telling people to pay you and go away worked for an amazingly long time. It sounds like it shouldn't. It sounds a bit like theft. But software is a miracle, and for decades EULA Ware was the only model there was.
Open source companies, on the other hand, they have to use their imagination. They can't feed people EULA Ware, so they must make money in other ways:
- Support Ware -- Pay us money and we'll support the software. We'll answer your questions. Or we'll try to. Over the phone, on the Web, whatever. Pay us enough and we'll come over. Red Hat likes this business model.
- Product Ware -- The software is free, you just buy the box it runs in. Android phones use this. So do some network routers. It's number two, but with a bullet.
- Cloud Ware -- Our software is in the clouds now. Pay us for what it does. The money goes into the cloud. Later it will rain on us. SugarCRM likes this business model.
- Project Ware -- Need something done? We'll do it with open source. Pay us for our work, and pay us for the project. IBM makes a ton on this business model.
- SaaS Ware -- Our software is SaaSy. You can rent it, by the hour, by the month, by the user. This is wildly popular. Zohouses it. So do many other companies.
- Ad Ware -- This is a free version of SaaS Ware. You don't pay anything, the advertiser pays instead. Heard of The Google? This is their primary business model. ZDNet also uses this business model.
- Sugar Daddy Ware -- Our software has a sugar daddy. Firefox has Google. Eclipse has IBM. Open Office has Sun, or it did. So just use the stuff. Daddy will provide. We believe in daddy.
- Foundation Ware -- Our software has a foundation. It has lots of sugar daddies. Want to be one? Linux runs this way. So does Apache. Not to mention Wikipedia.
- Beg Ware -- Please give us money. We know you don't have to. But give us money anyway. Lots of little projects use this business model. Or pretend to.
- Tchotchke Ware -- Wanna buy a t-shirt? How about a bumper sticker? A pen?
- Let's Make a Deal Ware -- The programmers who wrote the software support it out of their own pockets until they can figure out something. Wordpress started this way. So did Drupal. Go by Sourceforge and you'll find tons of folks still using this business model.
The great thing about open source is you don't have to use just one business model. You can mix-and-match as you see fit. You can change. You can go to a more profitable model and buy a suit, or fork the code and go down the stack.
Or maybe you don't see your business model here. Maybe you have one of your own. Care to tell us about it in the talkbacks? Whisper it in our ear. It will just be between us.
This is what freedom is about. It's about having choices. You don't have to go to Sand Hill Road to get into the software business. If they tell you to go away, go open source and in time maybe they'll call you.
Then you can tell them to go away.
11 open source business models的更多相关文章
- Refactoring open source business models
https://opensource.com/business/16/4/refactoring-open-source-business-models They say you never forg ...
- 5 Successful Business Models for Web-Based Open-Source Projects
https://handsontable.com/blog/articles/2016/3/5-successful-business-models-for-web-based-open-source ...
- The Open Source Business Model is Under Siege
https://www.influxdata.com/blog/the-open-source-database-business-model-is-under-siege/ A few weeks ...
- docker build doris-0.11.20-release source code
1. pull doris dev docker image sudo docker pull apachedoris/doris-dev:build-env-1.1 2. dowload doris ...
- The Business Of Open Source
http://oss-watch.ac.uk/resources/businessofopensource by Matthew Langham, Indiginox on 3 February 20 ...
- 微软、IBM、GitLab 等大厂全部到齐的 OCS 第一天有什么看点?
在本周一的推文中我们大致介绍了下 Open Core 峰会及到场嘉宾,(≧▽≦) 当然还有 Nebula Graph 在会场的展位位置图,本文我们来看看 Open Core 峰会第一天有哪些值得一看的 ...
- Open Source Isn't A Business Model, It's A Market Strategy
https://www.forbes.com/sites/quora/2017/09/29/open-source-isnt-a-business-model-its-a-market-strateg ...
- How Open Source Became The Default Business Model For Software
https://www.forbes.com/sites/forbestechcouncil/2018/07/16/how-open-source-became-the-default-busines ...
- Searching External Data in SharePoint 2010 Using Business Connectivity Services
from:http://blogs.msdn.com/b/ericwhite/archive/2010/04/28/searching-external-data-in-sharepoint-2010 ...
随机推荐
- 安装nginx1.16.1版本
安装nginx1.16.1版本 一.添加源 到 cd /etc/yum.repos.d/ 目录下 新建nginx.repo 文件 vim nginx.repo 输入以下信息 [nginx-stable ...
- Django框架(十二)-- 中间件、CSRF跨站请求伪造
中间件 一.什么是中间件 请求的时候需要先经过中间件才能到达django后端(urls,views,templates,models) 响应的时候也需要经过中间件才能到达web服务网关接口 djang ...
- java知识精要(一)
一.java数组 (疯狂java讲义 第4.5 ~ 4.6章节) 1) 声明形式: type[] arrayName; 推荐方式 type arrayName[]; 2) 初始化: 方式一: type ...
- SQL Server日志处理及安全访问
1.点SQL SERVER错误日志,右键,配置,限定错误日志的数目,比如6个 限制日志增长数量 2.然后运行命令: EXEC sp_cycle_errorlog ; 这个命令的作用是将当前日志归档,然 ...
- SAS学习笔记1
数据采样 简单随机抽样,从sashelp数据集中air数据文件中选取30个数 数据探索 数字特征的探索:均值.频数.最大值.最小值.众数.中位数.方差.标准差 数字分布的探索:是否服从正态分布 连续型 ...
- python_并行与并发、多线程
问题一: 计算机是如何执行程序指令的? 问题二: 计算机如何实现并发的? 轮询调度实现并发执行 程序1-8轮询完成,才再CPU上运行 问题三: 真正的并行需要依赖什么? 并行需要的核心条件 多进程实现 ...
- nrm的安装和使用
1.安装nodejs,下载地址,http://nodejs.cn/download/,安装过程直接点击下一步即可 安装完成后cmd输入npm -v 查看当前安装的npm的版本,如下图提示所示则表示安装 ...
- .net Dapper 实践系列(2) ---事务添加(Layui+Ajax+Dapper+MySQL)
目录 写在前面 问题描述 解决方法 具体实现 写在前面 前面我们已经搭建好了项目,这一小节我们使用Dapper 中的事务实现一对多的添加操作. 问题描述 在做添加的时候很头疼需要从页面传递一组数据到后 ...
- 认识KNX协议
一.简介 KNX是Konnex的缩写.1999年5月,欧洲三大总线协议EIB.BatiBus和EHSA合并成立了Konnex协会,提出了KNX协议.该协议以EIB为基础,兼顾了BatiBus和EHSA ...
- Grafana+prometheus+AlertManager+钉钉机器人
一.Grafana (1)安装Grafana的Linux环境 在官网下载windows的Grafana的压缩包到指定目录,解压缩Grafana压缩文件到包含当前Grafana版本的文件夹.将该文件夹解 ...