/[www]/www/philosophy/free-sw.html
ViewVC logotype

Annotation of /www/philosophy/free-sw.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11 - (hide annotations) (download) (as text)
Fri Dec 21 17:06:31 2001 UTC (22 years, 8 months ago) by rms
Branch: MAIN
Changes since 1.10: +21 -16 lines
File MIME type: text/html
Say that "if you distribute, you must send a copy to original developer
on request" is ok.

1 webcvs 1.1 <!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">
2     <HTML>
3     <HEAD>
4 webcvs 1.2 <TITLE>The Free Software Definition - GNU Project - Free Software Foundation (FSF)</TITLE>
5 webcvs 1.1 <LINK REV="made" HREF="mailto:webmasters@www.gnu.org">
6     </HEAD>
7     <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#1F00FF" ALINK="#FF0000" VLINK="#9900DD">
8 webcvs 1.2 <H3>The Free Software Definition</H3>
9 webcvs 1.1
10     <A HREF="/graphics/philosophicalgnu.html"><IMG SRC="/graphics/philosophical-gnu-sm.jpg"
11     ALT=" [image of a Philosophical Gnu] "
12     WIDTH="160" HEIGHT="200"></A>
13    
14     [
15 rms46 1.10 <!-- Please keep this list alphabetical -->
16     <!-- PLEASE UPDATE THE LIST AT THE BOTTOM (OR TOP) OF THE PAGE TOO! -->
17 joy 1.4 <A HREF="/philosophy/free-sw.hr.html">Croatian</A>
18     | <A HREF="/philosophy/free-sw.nl.html">Dutch</A>
19 webcvs 1.1 | <A HREF="/philosophy/free-sw.html">English</A>
20     | <A HREF="/philosophy/free-sw.fr.html">French</A>
21 lmiguel 1.9 | <A HREF="/philosophy/free-sw.gl.html">Galician</A>
22 lmiguel 1.6 | <A HREF="/philosophy/free-sw.hu.html">Hungarian</A>
23 rms46 1.7 | <A HREF="/philosophy/free-sw.id.html">Indonesian</A>
24 webcvs 1.1 | <A HREF="/philosophy/free-sw.it.html">Italian</A>
25     | <A HREF="/philosophy/free-sw.ja.html">Japanese</A>
26     | <A HREF="/philosophy/free-sw.ko.html">Korean</A>
27     | <A HREF="/philosophy/free-sw.no.html">Norwegian</A>
28 wkotwica 1.8 | <A HREF="/philosophy/free-sw.pl.html">Polish</A>
29 webcvs 1.1 | <A HREF="/philosophy/free-sw.pt.html">Portuguese</A>
30     | <A HREF="/philosophy/free-sw.ru.html">Russian</A>
31     | <A HREF="/philosophy/free-sw.es.html">Spanish</A>
32     | <A HREF="/philosophy/free-sw.tr.html">Turkish</A>
33 rms46 1.10 <!-- Please keep this list alphabetical -->
34     <!-- PLEASE UPDATE THE LIST AT THE BOTTOM (OR TOP) OF THE PAGE TOO! -->
35 webcvs 1.1 ]
36     <P>
37    
38 webcvs 1.2 We maintain this free software definition to show clearly what must be
39     true about a particular software program for it to be considered
40 rms 1.5 free software.
41 webcvs 1.2
42     <P>
43    
44 paulv 1.3 ``Free software'' is a matter of liberty, not price. To understand the
45     concept, you should think of ``free'' as in ``free speech,'' not as in
46     ``free beer.''
47 webcvs 1.1 <P>
48 rms 1.5 Free software is a matter of the users' freedom to run, copy,
49 webcvs 1.1 distribute, study, change and improve the software. More precisely,
50     it refers to four kinds of freedom, for the users of the software:
51     <P>
52    
53     <UL>
54     <LI>The freedom to run the program, for any purpose (freedom 0).
55     <LI>The freedom to study how the program works, and adapt it to your needs
56     (freedom 1). Access to the source code is a precondition for this.
57     <LI>The freedom to redistribute copies so you can help your neighbor
58     (freedom 2).
59     <LI>The freedom to improve the program, and release your improvements
60     to the public, so that the whole community benefits.
61     (freedom 3). Access to the source code is a precondition for this.
62     </UL>
63    
64     <P>
65     A program is free software if users have all of these freedoms.
66     Thus, you should be free to redistribute copies, either with or
67     without modifications, either gratis or charging a fee for
68     distribution, to <A HREF="#exportcontrol">anyone anywhere</A>. Being
69     free to do these things means (among other things) that you do not
70     have to ask or pay for permission.
71    
72     <P>
73     You should also have the freedom to make modifications and use them
74     privately in your own work or play, without even mentioning that they
75     exist. If you do publish your changes, you should not be required to
76     notify anyone in particular, or in any particular way.
77    
78     <P>
79     The freedom to use a program means the freedom for any kind of person
80     or organization to use it on any kind of computer system, for any kind
81     of overall job, and without being required to communicate subsequently
82     with the developer or any other specific entity.
83    
84     <P>
85     The freedom to redistribute copies must include binary or executable
86 rms 1.5 forms of the program, as well as source code, for both modified and
87     unmodified versions. It is ok if there is no way to produce a binary
88 rms 1.11 or executable form (since some languages don't support that feature),
89     but you must have the freedom to redistribute such forms should you
90     find or develop a way to make them.
91 webcvs 1.1
92     <P>
93     In order for the freedoms to make changes, and to publish improved
94     versions, to be meaningful, you must have access to the source code of
95     the program. Therefore, accessibility of source code is a necessary
96     condition for free software.
97    
98     <P>
99     In order for these freedoms to be real, they must be irrevocable as
100     long as you do nothing wrong; if the developer of the software has the
101     power to revoke the license, without your doing anything to give
102     cause, the software is not free.
103    
104     <P>
105     However, certain kinds of rules about the manner of distributing free
106     software are acceptable, when they don't conflict with the central
107     freedoms. For example, copyleft (very simply stated) is the rule that
108     when redistributing the program, you cannot add restrictions to deny
109     other people the central freedoms. This rule does not conflict with
110     the central freedoms; rather it protects them.
111    
112     <P>
113     Thus, you may have paid money to get copies of GNU software, or you
114     may have obtained copies at no charge. But regardless of how you got
115     your copies, you always have the freedom to copy and change the
116     software, even to <A HREF="/philosophy/selling.html">sell copies</A>.
117 rms 1.11 <P>
118 webcvs 1.1
119     ``Free software'' does not mean ``non-commercial''. A free program
120 rms 1.11 must be available for commercial use, commercial development, and
121     commercial distribution. Commercial development of free software is
122     no longer unusual; such free commercial software is very important.
123 webcvs 1.1
124     <P>
125     Rules about how to package a modified version are acceptable, if they
126     don't effectively block your freedom to release modified versions.
127     Rules that ``if you make the program available in this way, you must
128     make it available in that way also'' can be acceptable too, on the
129     same condition. (Note that such a rule still leaves you the choice of
130 rms 1.11 whether to publish the program or not.) It is also acceptable for the
131     license to require that, if you have distributed a modified version
132     and a previous developer asks for a copy of it, you must send one.
133 webcvs 1.1
134     <P>
135     In the GNU project, we use <A HREF="/copyleft/copyleft.html">
136     ``copyleft''</A> to protect these freedoms legally for everyone. But
137     <A HREF="/philosophy/categories.html#Non-CopyleftedFreeSoftware">
138     non-copylefted free software</A> also exists. We believe there are
139     important reasons why <A HREF="/philosophy/pragmatic.html"> it is
140     better to use copyleft</A>, but if your program is non-copylefted free
141     software, we can still use it.
142    
143     <P>
144     See <A HREF="/philosophy/categories.html">Categories of Free Software
145     (18k characters)</A>
146     for a description of how ``free software,'' ``copylefted software'' and
147     other categories of software relate to each other.
148    
149     <P>
150     Sometimes government <A NAME="exportcontrol">export control
151     regulations</A> and trade sanctions can constrain your freedom to
152     distribute copies of programs internationally. Software developers do
153     not have the power to eliminate or override these restrictions, but
154     what they can and must do is refuse to impose them as conditions of
155     use of the program. In this way, the restrictions will not affect
156     activities and people outside the jurisdictions of these governments.
157    
158     <P>
159     When talking about free software, it is best to avoid using terms like
160     ``give away'' or ``for free'', because those terms imply that the
161     issue is about price, not freedom. Some common terms such as
162     ``piracy'' embody opinions we hope you won't endorse. See <A
163     HREF="/philosophy/words-to-avoid.html">Confusing Words and Phrases
164     that are Worth Avoiding</A> for a discussion of these terms.
165     We also have a list of <A HREF="/philosophy/fs-translations.html">translations
166     of "free software"</A> into various languages.
167 webcvs 1.2
168     <P>
169    
170     Finally, note that criteria such as those stated in this free software
171     definition require careful thought for their interpretation. To
172     decide whether a specific software license qualifies as a free
173     software license, we judge it based on these criteria to determine
174     whether it fits their spirit as well as the precise words. If a
175     license includes unconscionable restrictions, we reject it, even if we
176     did not anticipate the issue in these criteria. Sometimes a license
177 rms 1.11 requirement raises an issue that calls for extensive thought,
178     including discussions with a lawyer, before we can decide if the
179     requirement is acceptable. When we reach a conclusion about a new
180     issue, we often update these criteria to make it easier to see why
181     certain licenses do or don't qualify.
182 webcvs 1.2
183     <P>
184    
185     If you are interested in whether a specific license qualifies as a
186     free software license, see our <A
187 rms46 1.10 HREF="/licenses/license-list.html">list of licenses</A>. If the
188 webcvs 1.2 license you are concerned with is not listed there, you can ask us
189     about it by sending us email at <A
190     HREF="mailto:licensing@gnu.org">&lt;licensing@gnu.org&gt;</A>.
191    
192 webcvs 1.1 <HR>
193    
194     <H4><A HREF="/philosophy/philosophy.html">Other Texts to Read</A></H4>
195    
196     <P>
197 rms 1.11 Another group has started using the term "open source" to mean
198     something close (but not identical) to "free software". We prefer the
199     term "free software" because, once you have heard it refers to freedom
200     rather than price, <A HREF="free-software-for-freedom.html">it calls
201     to mind freedom</A>.
202 webcvs 1.1
203     <HR>
204 rms46 1.10 [
205     <!-- Please keep this list alphabetical -->
206     <!-- PLEASE UPDATE THE LIST AT THE BOTTOM (OR TOP) OF THE PAGE TOO! -->
207     <A HREF="/philosophy/free-sw.hr.html">Croatian</A>
208     | <A HREF="/philosophy/free-sw.nl.html">Dutch</A>
209     | <A HREF="/philosophy/free-sw.html">English</A>
210     | <A HREF="/philosophy/free-sw.fr.html">French</A>
211     | <A HREF="/philosophy/free-sw.gl.html">Galician</A>
212     | <A HREF="/philosophy/free-sw.hu.html">Hungarian</A>
213     | <A HREF="/philosophy/free-sw.id.html">Indonesian</A>
214     | <A HREF="/philosophy/free-sw.it.html">Italian</A>
215     | <A HREF="/philosophy/free-sw.ja.html">Japanese</A>
216     | <A HREF="/philosophy/free-sw.ko.html">Korean</A>
217     | <A HREF="/philosophy/free-sw.no.html">Norwegian</A>
218     | <A HREF="/philosophy/free-sw.pl.html">Polish</A>
219     | <A HREF="/philosophy/free-sw.pt.html">Portuguese</A>
220     | <A HREF="/philosophy/free-sw.ru.html">Russian</A>
221     | <A HREF="/philosophy/free-sw.es.html">Spanish</A>
222     | <A HREF="/philosophy/free-sw.tr.html">Turkish</A>
223     <!-- Please keep this list alphabetical -->
224     <!-- PLEASE UPDATE THE LIST AT THE BOTTOM (OR TOP) OF THE PAGE TOO! -->
225     ]
226     <P>
227 webcvs 1.1 Return to <A HREF="/home.html">GNU's home page</A>.
228     <P>
229 rms46 1.10
230     Please send FSF &amp; GNU inquiries &amp; questions to
231    
232 webcvs 1.1 <A HREF="mailto:gnu@gnu.org"><EM>gnu@gnu.org</EM></A>.
233 rms46 1.10 There are also <A HREF="/home.html#ContactInfo">other ways to
234     contact</A> the FSF.
235 webcvs 1.1 <P>
236 rms46 1.10
237     Please send comments on these web pages to
238    
239     <A HREF="mailto:webmasters@gnu.org"><EM>webmasters@gnu.org</EM></A>,
240 webcvs 1.1 send other questions to
241     <A HREF="mailto:gnu@gnu.org"><EM>gnu@gnu.org</EM></A>.
242     <P>
243 webcvs 1.2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.,
244 webcvs 1.1 59 Temple Place - Suite 330, Boston, MA 02111, USA
245     <P>
246     Verbatim copying and distribution of this entire article is
247 rms46 1.10 permitted in any medium, provided this notice is preserved.
248     <P>
249 webcvs 1.1 Updated:
250 paulv 1.3 <!-- timestamp start -->
251 rms 1.11 $Date: 2001/10/17 08:05:44 $ $Author: rms46 $
252 paulv 1.3 <!-- timestamp end -->
253 webcvs 1.1 <HR>
254     </BODY>
255     </HTML>
256 rms46 1.10

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26