--- www/philosophy/free-sw.html 2013/12/20 09:31:03 1.126 +++ www/philosophy/free-sw.html 2019/07/30 10:09:02 1.168 @@ -1,8 +1,13 @@ - +
++ ++Have a question about free software licensing not answered here? +See our other licensing resources, +and if necessary contact the FSF Compliance Lab +at licensing@fsf.org.
+-Thus, “free software” is a matter of liberty, not price. -To understand the concept, you should think of “free” as -in “free speech,” not as in “free beer”. +“Free software” means software that respects users' +freedom and community. Roughly, it means that the users have the +freedom to run, copy, distribute, study, change and improve the +software. Thus, “free software” is a matter of +liberty, not price. To understand the concept, you should think of +“free” as in “free speech,” not as in +“free beer”. We sometimes call it “libre +software,” borrowing the French or Spanish word for +“free” as in freedom, to show we do not mean the software +is gratis.
-With these freedoms, the users (both individually and collectively) -control the program and what it does for them. When users don't -control the program, the program controls the users. The developer -controls the program, and through it exercises power over the users. -Therefore, a “nonfree” or “proprietary” program -is an -instrument of unjust power. +We campaign for these freedoms because everyone deserves them. With +these freedoms, the users (both individually and collectively) control +the program and what it does for them. When users don't control the +program, we call it a “nonfree” or +“proprietary” program. The nonfree program controls the +users, and the developer controls the program; this makes the +program +an instrument of unjust power.
+The four essential freedoms
+A program is free software if the program's users have the -four essential freedoms: +four essential freedoms: [1]
--
- The freedom to run the program, for any purpose (freedom 0).
++
- The freedom to run the program as you wish, + for any purpose (freedom 0).
- The freedom to study how the program works, and change it so it does your computing as you wish (freedom 1). Access to the source code is a precondition for this.
-- The freedom to redistribute copies so you can help your neighbor +
- The freedom to redistribute copies so you can help others (freedom 2).
- The freedom to distribute copies of your modified versions @@ -73,24 +100,42 @@ nonfree distribution schemes in terms of how far they fall short of being free, we consider them all equally unethical. -
The rest of this page clarifies certain points about what makes -specific freedoms adequate or not.
+In any given scenario, these freedoms must apply to whatever code +we plan to make use of, or lead others to make use of. For instance, +consider a program A which automatically launches a program B to +handle some cases. If we plan to distribute A as it stands, that +implies users will need B, so we need to judge whether both A and B +are free. However, if we plan to modify A so that it doesn't use B, +only A needs to be free; B is not pertinent to that plan.
-Freedom to distribute (freedoms 2 and 3) means you are free to -redistribute copies, either with or without modifications, either -gratis or charging a fee for distribution, to -anyone anywhere. Being free to do these -things means (among other things) that you do not have to ask or pay -for permission to do so. +
+“Free software” does not mean “noncommercial”. A free +program must be available for commercial use, commercial development, +and commercial distribution. Commercial development of free software +is no longer unusual; such free commercial software is very important. +You may have paid money to get copies of free software, or you may have +obtained copies at no charge. But regardless of how you got your copies, +you always have the freedom to copy and change the software, even to +sell copies.
-You should also have the freedom to make modifications and use them -privately in your own work or play, without even mentioning that they -exist. If you do publish your changes, you should not be required to -notify anyone in particular, or in any particular way. +A free program must offer the four freedoms to any user that obtains a +copy of the software, provided the user has complied thus far with the +conditions of the free license covering the software. Putting some of +the freedoms off limits to some users, or requiring that users pay, in +money or in kind, to exercise them, is tantamount to not granting the +freedoms in question, and thus renders the program nonfree.
+Clarifying the line at various points
+ +In the rest of this article we explain more precisely how far the +various freedoms need to extend, on various issues, in order for a +program to be free.
+ +The freedom to run the program as you wish
+The freedom to run the program means the freedom for any kind of person or organization to use it on any kind of computer system, for any kind of @@ -103,19 +148,26 @@
-The freedom to redistribute copies must include binary or executable -forms of the program, as well as source code, for both modified and -unmodified versions. (Distributing programs in runnable form is necessary -for conveniently installable free operating systems.) It is OK if there -is no way to produce a binary or executable form for a certain program -(since some languages don't support that feature), but you must have the -freedom to redistribute such forms should you find or develop a way to -make them. -
+The freedom to run the program as you wish means that you are not +forbidden or stopped from making it run. This has nothing to do with what +functionality the program has, whether it is technically capable of +functioning in any given environment, or whether it is useful for any +particular computing activity. + +For example, if the code arbitrarily rejects certain meaningful +inputs—or even fails unconditionally—that may make the +program less useful, perhaps even totally useless, but it does not +deny users the freedom to run the program, so it does not conflict +with freedom 0. If the program is free, the users can overcome the +loss of usefulness, because freedoms 1 and 3 permit users and +communities to make and distribute modified versions without the +arbitrary nuisance code.
+ +The freedom to study the source code and make changes
In order for freedoms 1 and 3 (the freedom to make changes and the -freedom to publish the changed versions) to be meaningful, you must have +freedom to publish the changed versions) to be meaningful, you need to have access to the source code of the program. Therefore, accessibility of source code is a necessary condition for free software. Obfuscated “source code” is not real source code and does not count @@ -128,10 +180,9 @@ run someone else's modified versions but refuse to run yours — a practice known as “tivoization” or “lockdown”, or (in its practitioners' perverse terminology) as “secure -boot” — freedom 1 becomes a theoretical fiction rather -than a practical freedom. This is not sufficient. In other words, -these binaries are not free software even if the source code they are -compiled from is free. +boot” — freedom 1 becomes an empty pretense rather than a +practical reality. These binaries are not free +software even if the source code they are compiled from is free.
@@ -143,6 +194,29 @@
+Whether a change constitutes an improvement is a subjective matter. +If your right to modify a program is limited, in substance, to changes that +someone else considers an improvement, that program is not free. +
+ +The freedom to redistribute if you wish: basic requirements
+ +Freedom to distribute (freedoms 2 and 3) means you are free to +redistribute copies, either with or without modifications, either +gratis or charging a fee for distribution, to +anyone anywhere. Being free to do these +things means (among other things) that you do not have to ask or pay +for permission to do so. +
+ ++You should also have the freedom to make modifications and use them +privately in your own work or play, without even mentioning that they +exist. If you do publish your changes, you should not be required to +notify anyone in particular, or in any particular way. +
+ +Freedom 3 includes the freedom to release your modified versions as free software. A free license may also permit other ways of releasing them; in other words, it does not have to be @@ -152,41 +226,45 @@
-In order for these freedoms to be real, they must be permanent and -irrevocable as long as you do nothing wrong; if the developer of the -software has the power to revoke the license, or retroactively add -restrictions to its terms, without your doing anything wrong to give -cause, the software is not free. +The freedom to redistribute copies must include binary or executable +forms of the program, as well as source code, for both modified and +unmodified versions. (Distributing programs in runnable form is necessary +for conveniently installable free operating systems.) It is OK if there +is no way to produce a binary or executable form for a certain program +(since some languages don't support that feature), but you must have the +freedom to redistribute such forms should you find or develop a way to +make them.
+Copyleft
+-However, certain kinds of rules about the manner of distributing free +Certain kinds of rules about the manner of distributing free software are acceptable, when they don't conflict with the central -freedoms. For example, copyleft (very simply stated) is the rule that -when redistributing the program, you cannot add restrictions to deny -other people the central freedoms. This rule does not conflict with -the central freedoms; rather it protects them. +freedoms. For example, copyleft +(very simply stated) is the rule that when redistributing the program, +you cannot add restrictions to deny other people the central freedoms. +This rule does not conflict with the central freedoms; rather it +protects them.
-“Free software” does not mean “noncommercial”. A free -program must be available for commercial use, commercial development, -and commercial distribution. Commercial development of free software -is no longer unusual; such free commercial software is very important. -You may have paid money to get copies of free software, or you may have -obtained copies at no charge. But regardless of how you got your copies, -you always have the freedom to copy and change the software, even to -sell copies. +In the GNU project, we use copyleft to protect the four freedoms +legally for everyone. We believe there are important reasons why +it is better to use +copyleft. However, + +noncopylefted free software is ethical +too. See Categories of Free +Software for a description of how “free software,” +“copylefted software” and other categories of software +relate to each other.
--Whether a change constitutes an improvement is a subjective matter. -If your right to modify a program is limited, in substance, to changes that -someone else considers an improvement, that program is not free. -
+Rules about packaging and distribution details
-However, rules about how to package a modified version are acceptable, +Rules about how to package a modified version are acceptable, if they don't substantively limit your freedom to release modified versions, or your freedom to make and use modified versions privately. Thus, it is acceptable for the license to require that you change the @@ -218,16 +296,7 @@ facility that allows you to specify the original program's name as an alias for the modified version.
--In the GNU project, we use -copyleft -to protect these freedoms legally for everyone. But -noncopylefted -free software also exists. We believe there are important reasons why -it is better to use copyleft, -but if your program is noncopylefted free software, it is still basically -ethical. (See Categories of Free Software for a description of how “free software,” “copylefted software” and other categories of software relate to each other.) -
+Export regulations
Sometimes government export control regulations @@ -251,6 +320,32 @@ software nonfree.
+Legal considerations
+ ++In order for these freedoms to be real, they must be permanent and +irrevocable as long as you do nothing wrong; if the developer of the +software has the power to revoke the license, or retroactively add +restrictions to its terms, without your doing anything wrong to give +cause, the software is not free. +
+ ++A free license may not require compliance with the license of a +nonfree program. Thus, for instance, if a license requires you to +comply with the licenses of “all the programs you use”, in +the case of a user that runs nonfree programs this would require +compliance with the licenses of those nonfree programs; that makes the +license nonfree. +
+ ++It is acceptable for a free license to specify which jurisdiction's +law applies, or where litigation must be done, or both. +
+ +Contract-based licenses
+Most free software licenses are based on copyright, and there are limits on what kinds of requirements can be imposed through copyright. If a @@ -270,6 +365,8 @@ it is nonfree.
+Use the right words when talking about free software
+When talking about free software, it is best to avoid using terms like “give away” or “for free,” because those terms imply that @@ -281,6 +378,8 @@ “free software” into various languages.
+How we interpret these criteria
+Finally, note that criteria such as those stated in this free software definition require careful thought for their interpretation. To decide @@ -295,6 +394,8 @@ it easier to see why certain licenses do or don't qualify.
+Get help with free licenses
+If you are interested in whether a specific license qualifies as a free software license, see our list @@ -342,13 +443,14 @@
Open Source?
-Another group has started using the term “open source” to mean +Another group uses the term “open source” to mean something close (but not identical) to “free software”. We prefer the term “free software” because, once you have heard that it refers to freedom rather than price, it calls to mind freedom. The word “open” never refers to freedom.
+
The free software definition presents the criteria for whether a particular software program qualifies as free software. From time to @@ -22,42 +35,56 @@ below for a list of changes that affect the definition of free software.
--“Free software” means software that respects users' -freedom and community. Roughly, the users have the freedom to run, -copy, distribute, study, change and improve the software. +“Open source” is something different: it has a very +different philosophy based on different values. Its practical +definition is different too, but nearly all open source programs are +in fact free. We explain the +difference in +Why “Open Source” misses the point of Free Software.
+