summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/articles/en/essays-and-articles.html
blob: 1051e737eba3adb5791ca5906a90335d4d9128e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
<!--#include virtual="/server/header.html" -->
<!-- Parent-Version: 1.96 -->
<!-- This page is derived from /server/standards/boilerplate.html -->
<!--#set var="DISABLE_TOP_ADDENDUM" value="yes" -->
<title>Essays and Articles
- GNU Project - Free Software Foundation</title>
<style type="text/css" media="print,screen"><!--
.toc { margin-bottom: 1em; }
.toc ul { font-weight: normal; }
.toc > ul > li { list-style-type: none; font-weight: bold; }
@media (min-width:55em) { .toc > ul > li { display: inline-block; width: 95%; }}
.reduced-width > h3 { margin-top: 1.5em; border-bottom: 2px solid #bbb; }
 ul.no-bullet li { text-indent: -1.5em; }
 .date-tag { font-size: .875em; position: relative; bottom: .05em; }
--></style>
<!--#include virtual="/philosophy/po/essays-and-articles.translist" -->
<!--#include virtual="/server/banner.html" -->
<!--#include virtual="/philosophy/philosophy-menu.html" -->
<!--GNUN: OUT-OF-DATE NOTICE-->
<!--#include virtual="/server/top-addendum.html" -->
<div class="reduced-width">
<h2>Essays and Articles</h2>
<div class="thin"></div>

<div class="comment">
<p>This page lists a series of articles describing the philosophy of the
free software movement, which is the motivation for our development of
the free software operating system GNU.</p>

<p>The most important articles are marked with asterisks, and listed first
in each category. The other ones are in reverse chronological order.</p>
</div>

<div class="toc">
<h3 class="no-display">Table of Contents</h3>
<ul class="columns">
 <li><a href="#aboutfs">About Free Software</a>
  <ul>
  <li><a href="#principles">Principles</a></li>
  <li><a href="#practice">Practice</a></li>
  <li><a href="#extension">Extension to other areas</a></li>
  <li><a href="#mix">Mixing free and nonfree</a></li>
  <li><a href="#free-open">Free software and open source</a></li>
  </ul>
 </li>
 <li><a href="#upholding">Upholding Software Freedom</a>
  <ul>
  <li><a href="/gnu/gnu.html">The GNU Project</a></li>
  <li><a href="#fsmovement">The free software movement</a></li>
  <li><a href="#need">The need for free software</a></li>
  <li><a href="#action">Guide for action</a></li>
  </ul>
 </li>
 <li><a href="#LicensingFreeSoftware">Licensing Free Software</a>
  <ul>
  <li><a href="/licenses/licenses.html">General information</a></li>
  <li><a href="#copyleft">Copyleft</a></li>
  <li><a href="#non-copyleft">Non-copyleft</a></li>
  <li><a href="#traps">Licensing traps</a></li>
  </ul>
 </li>
 <li><a href="#Laws">Legal Issues</a>
  <ul>
  <li><a href="#patents">Patents</a></li>
  <li><a href="#copyright">Copyright</a></li>
  <li><a href="#noip">The propaganda term &ldquo;Intellectual
    Property&rdquo;</a></li>
  <li><a href="#sco">Response to SCO's attacks</a></li>
  </ul>
 </li>
 <li><a href="#cultural">Cultural and Social Issues</a>
  <ul>
  <li><a href="#society">Digital society</a></li>
  <li><a href="#drm">Digital restrictions management</a></li>
  <li><a href="#ns">Network services</a></li>
  <li><a href="#access">Accessing culture</a></li>
  <li><a href="#funding">Funding cultural works</a></li>
  <li><a href="#evils">Surveillance, censorship, lock-in, etc.</a></li>
  <li><a href="/proprietary/proprietary.html">Proprietary malware</a></li>
  </ul>
 </li>
 <li><a href="#terminology">Terminology and Definitions</a></li>
 <li><a href="/fun/humor.html#Philosophy">Philosophical Humor</a></li>
</ul>
<hr class="no-display" />
</div>

<h3 id="aboutfs">About Free Software</h3>
<p>
Free software is a matter of freedom: people should be free to use
software in all the ways that are socially useful.  Software differs
from material objects&mdash;such as chairs, sandwiches, and
gasoline&mdash;in that it can be copied and changed much more easily.
These possibilities make software as useful as it is; we believe
software users should be able to make use of them.</p>

<h4 id="principles">Principles</h4>
<ul class="no-bullet">
 <li><!--#set var='DATE' value='<span class="date-tag">*[1996&hellip;&nbsp;]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-sw.html">
  What is Free Software?</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-software-even-more-important.html">
  Free Software Is Even More Important Now</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/selling.html">
  Selling Free Software</a>
  &mdash; This is OK!</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/programs-must-not-limit-freedom-to-run.html">
  Why programs must not limit the freedom to run them</a>
  (by RMS)
  &mdash; Freedom 0 must not be limited.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2007]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/your-freedom-needs-free-software.html">
  Your Freedom Needs Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1994]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/why-free.html">
  Why Software Should Not Have Owners</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1991]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/shouldbefree.html">
  Why Software Should Be Free</a>
  (by RMS)
  &mdash; An older and longer essay about the same topic as the 
  previous one.</li>
</ul>

<h4 id="practice">Practice</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[1999-2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/when-free-software-isnt-practically-superior.html">
  When Free Software Isn't (Practically) Superior</a>
  (by Benjamin Mako Hill)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/applying-free-sw-criteria.html">
  Applying the Free Software Criteria</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2014]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/imperfection-isnt-oppression.html">
  Imperfection is not the same as oppression</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/android-and-users-freedom.html">
  Android and Users' Freedom</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1997-2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/software/reliability.html">
  Free Software is More Reliable!</a></li>
</ul>

<h4 id="extension">Extension to other areas</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-doc.html">
  Why Free Software Needs Free Documentation</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2020]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-software-rocket.html">
  Should Rockets Have Only Free Software? Free Software and Appliances</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-hardware-designs.html">
  Free Hardware and Free Hardware Designs</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/loyal-computers.html">
  What Does It Mean for Your Computer to Be Loyal?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/network-services-arent-free-or-nonfree.html">
  Network Services Aren't Free or Nonfree; They Raise Other Issues</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/gnutella.html" id="Gnutella">
  Regarding Gnutella</a></li>
</ul>

<h4 id="mix">Mixing free and nonfree</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">[2016]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/when-free-depends-on-nonfree.html">
  When Free Software Depends on Nonfree</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2013]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/is-ever-good-use-nonfree-program.html">
  Is It Ever a Good Thing to Use a Nonfree Program?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/mcvoy.html">
  Thank You, Larry McVoy</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1998]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/udi.html">
  The Free Software Movement and UDI</a>
  (by RMS)</li>
</ul>

<h4 id="free-open">Free software and open source</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2007-2021]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/open-source-misses-the-point.html">
  Why &ldquo;Open Source&rdquo; Misses the Point of Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-open-overlap.html">
  How Free Software and Open Source Relate as Categories of Programs</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2013]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/floss-and-foss.html">
  FLOSS and FOSS</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/linux-gnu-freedom.html">
  Linux, GNU, and Freedom</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/drdobbs-letter.html">
  Letter from RMS to the Editor of Dr. Dobb's Journal</a>
  on the distinction between open source and the free software movement.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1998]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-software-for-freedom.html">
  &ldquo;Open Source Software&rdquo; or &ldquo;Free Software&rdquo;?</a>
  (replaced by <a href="/philosophy/open-source-misses-the-point.html">
  Why &ldquo;Open Source&rdquo; Misses the Point of Free Software</a>)</li>
</ul>


<h3 id="upholding">Upholding Software Freedom</h3>

<h4>The GNU Project</h4>
<ul class="no-bullet">
 <li><a href="/gnu/gnu.html">The GNU Operating System</a>
  &mdash; History, relationship with Linux, etc.</li>
</ul>

<h4 id="fsmovement">The free software movement</h4>
<ul class="no-bullet"> 
 <li><a href="https://www.fsf.org/">
  The official website of the Free Software Foundation</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2004]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/use-free-software.html">
  The Free Software Community After 20 Years</a>
  (by RMS)
  &mdash; With great but incomplete success, what now?</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/15-years-of-free-software.html">
  15 Years of Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/free-software-intro.html">
  Free Software Movement</a></li>
</ul>

<h4 id="need">The need for free software</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2011-2017]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/government-free-software.html">
  Measures Governments Can Use to Promote Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[2009-2014]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/education/edu-schools.html">
  Why Schools Should Use Exclusively Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2014]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/technological-neutrality.html">
  Technological Neutrality and Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2013]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/uruguay.html">
  Lesson from Uruguay</a>
  &mdash; The FSF learned something from a bill presented in Uruguay.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/second-sight.html">
  Free Software and (e-)Government</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/fs-and-sustainable-development.html">
  Free Software and Sustainable Development</a>
  (by RMS)
  &mdash; A short article regarding the use of proprietary software in
  cultural development.</li>
</ul>

<h4 id="action">Guide for action</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2020]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/saying-no-even-once.html">
  Saying No to unjust computing even once is help</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[2009]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/fs-motives.html">
  Motives For Writing Free Software</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002-2020]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/no-word-attachments.html" id="NoWordAttachments">
  We Can Put an End to Word Attachments</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2019]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/install-fest-devil.html">
  Install Fests: What to Do about the Deal with the Devil</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2019]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/upgrade-windows.html">
  What Is the Right Way to Upgrade an Installation of Windows?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2018]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/kind-communication.html">
  GNU Kind Communications Guidelines</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2017]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/hackathons.html">
  Why Hackathons Should Insist on Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2014]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/contradictory-support.html">
  Beware of Contradictory &ldquo;Support&rdquo;</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/devils-advocate.html">
  Why the Devil's Advocate Doesn't Help Reach the Truth</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2010]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/practical.html">
  The Advantages of Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2009]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/pirate-party.html">
  How the Swedish Pirate Party Platform Backfires on Free Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2009]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/lest-codeplex-perplex.html">
  Lest CodePlex perplex</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2008]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/ucita.html">
  Why We Must Fight UCITA</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2008]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/compromise.html">
  Avoiding Ruinous Compromises</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2007]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/social-inertia.html">
  Overcoming Social Inertia</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2004]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/my_doom.html">
  MyDoom and You</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/kevin-cole-response.html">
  A Response Letter to the Word Attachments</a>
  (by Kevin Cole)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/anonymous-response.html">
  A Response to Word Attachments</a></li>
</ul>


<h3 id="LicensingFreeSoftware">Licensing Free Software</h3>

<ul class="no-bullet">
 <li><a href="/licenses/licenses.html">
  Licenses</a>
  &mdash; General information on licensing and copyleft</li>
</ul>

<h4 id="copyleft">Copyleft</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/why-copyleft.html">
  Why Copyleft?</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[1998]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/pragmatic.html">
  Copyleft: Pragmatic Idealism</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2009-2017]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/selling-exceptions.html">
  On Selling Exceptions to the GNU GPL</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2014]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/assigning-copyright.html">
  When a Company Asks For Your Copyright</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.fsf.org/blogs/licensing/20050211.html">
  Censorship envy and licensing</a>
  (by David &ldquo;Novalis&rdquo; Turner, on <i>fsf.org</i>)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2004]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://web.archive.org/web/20210228133128/https://www.oii.ox.ac.uk/archive/downloads/research/gpl/OIIFB_GPL2_20040903.pdf">
  English translation of the famous decision of the District Court of
  Munich</a> regarding the enforceability and validity of the GPL (by
  the translators of the Oxford Internet Institute, on
  <i>oii.ox.ac.uk</i>)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/university.html">
  Releasing Free Software if You Work at a University</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/gpl-american-way.html" id="GPLAmericanWay">
  The GNU GPL and the American Way</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/gpl-american-dream.html" id="GPLAmericanDream">
  The GNU GPL and the American Dream</a>
  (by Bradley&nbsp;M.&nbsp;Kuhn)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/freedom-or-power.html" id="FreedomOrPower">
  Freedom or Power?</a>
  (by Bradley&nbsp;M.&nbsp;Kuhn and RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/rtlinux-patent.html">
  GPL-compliant version of RTLinux Open Patent License in Works</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/enforcing-gpl.html" id="EnforcingGPL">
  Enforcing the GNU GPL</a>
  (by Eben Moglen)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/using-gfdl.html" id="UsingGFDL">
  Using the GNU FDL</a>
  (by RMS)</li>
</ul>

<h4 id="non-copyleft">Non-copyleft</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/apsl.html">
  FSF's Opinion of the Apple Public Source License (APSL) 2.0</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/plan-nine.html" id="PlanNineLicense">
  The Problems of the (Earlier) Plan 9 License</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1998]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/netscape-npl.html">
  On the Netscape Public License</a>
  (by RMS)
  [<a href="/philosophy/netscape-npl-old.html">older version</a>]</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1998]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/netscape.html">
  Netscape and Free Software</a>
  &mdash; An old article that clarifies some misunderstandings about an
  announcement by Netscape.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1997]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/motif.html" id="MotifLicense">
  The Motif License</a>
  (by RMS)</li>
</ul>

<h4 id="traps">Licensing traps</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2009-2019]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/javascript-trap.html">
  JavaScript Trap</a>
  (by RMS)
  &mdash; You may be running nonfree programs on your computer every day
  without realizing it&mdash;through your web browser.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2004-2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/java-trap.html" id="JavaTrap">
  Free But Shackled - The Java Trap</a>
  (by RMS)
  &mdash; Although Sun has
  <a href="https://www.fsf.org/news/fsf-welcomes-gpl-java.html">
  relicensed</a> most of its Java platform reference implementation under
  the GNU General Public License, the issue described in this article
  still remains important.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1998-2009]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/x.html">
  The X Window System Trap</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2006]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/sun-in-night-time.html">
  The Curious Incident of Sun in the Night-Time</a>
  (by RMS)</li>
</ul>


<h3 id="Laws">Legal issues</h3>

<h4 id="patents">Patents</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/limit-patent-effect.html">
  Giving the Software Field Protection from Patents</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/europes-unitary-patent.html">
  Europe's &ldquo;unitary patent&rdquo; could mean unlimited software
  patents</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000-2007]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.eff.org/search/site/dvd%20cases/">
  EFF &ldquo;Intellectual Property&rdquo;: MPAA (Motion Picture
  Association of America) DVD Cases Archive</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2006]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/trivial-patent.html">
  The Anatomy of a Trivial Patent</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/microsoft-new-monopoly.html">
  Microsoft's New Monopoly</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.theguardian.com/technology/2005/aug/02/comment.business">
  Soft sell</a>
  (by RMS, on <i>theguardian.com</i>)
  &mdash; Comments on the defeat of the EU software patenting directive.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/bill-gates-and-other-communists.html">
  Bill Gates and Other Communists</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/software-literary-patents.html" id="SoftwareLiteraryPatents">
  Software Patents and Literary Patents</a>
  (by RMS)
  &mdash; Speaking of patenting artistic techniques, US patent (6,935,954)
  covers making game characters start to hallucinate when (according to the
  game) they are being driven insane. That is getting pretty close to the
  hypothetical examples cited in this article.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2004]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/fighting-software-patents.html" id="FightingSoftwarePatents">
  Fighting Software Patents&mdash;Singly and Together</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2005]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.theguardian.com/technology/2005/jun/23/onlinesupplement.insideit">
  Patent absurdity</a>
  (by RMS, on <i>theguardian.com</i>)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/w3c-patent.html">
  FSF's Position on W3 Consortium &ldquo;Royalty-Free&rdquo; Patent Policy</a>
  (rewritten)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/guardian-article.html">
  Opposing The European Software Patent Directive</a>
  (by RMS and Nick&nbsp;Hill)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.eff.org/press/releases/princeton-scientists-sue-over-squelched-research">
  Princeton Scientists Sue Over Squelched Research</a>
  (press release on <i>eff.org</i>)
  &mdash; In <cite>Felten v. RIAA</cite>, scientists ask a court to rule that the
  Digital Millennium Copyright Act (DMCA) does not prohibit them from
  publishing their research.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/hague.html">
  Harm from the Hague</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://web.archive.org/web/20000815064858/http://www.researchoninnovation.org/patent.pdf"
  id="SequentialIPandI">
  Sequential Innovation, Patents, and Imitation</a>
  (by James Bessen and Eric Maskin, on <i>researchoninnovation.org</i>, archived)
  &mdash; This paper presents a mathematical model showing how patents can
  impede progress in fields like software.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/amazon-rms-tim.html">
  Letter from RMS to Tim O'Reilly</a>
  in regard to a statement by Jeff Bezos, CEO of Amazon, on the duration of
  software patents.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/amazon-nat.html">
  Amazon Boycott Success!</a>
  (a letter from Nat Friedman to RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/amazon.html">
  (Formerly) Boycott Amazon!</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/amazonpatent.html">
  Method and system for placing a purchase order via a communications
  network</a> 
  &mdash; Amazon patent with notes by RMS</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1997]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/gif.html">
  Why There Are No GIF Files on GNU Web Pages</a>
  &mdash; While this story is a historical illustration of the danger of
  software patents, these particular patents are now no longer a concern.
  For details of our website policies regarding GIFs, see our <a
  href="/server/standards/gnu-website-guidelines.html#UseofGraphics">web
  guidelines</a>.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/savingeurope.html">
  Saving Europe from Software Patents</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/protecting.html">
  Help Protect the Rights to Write Both Nonfree and Free Software</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/patent-reform-is-not-enough.html">
  Patent Reform Is Not Enough</a></li>
</ul>

<h4 id="copyright">Copyright</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/misinterpreting-copyright.html">
  Misinterpreting Copyright&mdash;A Series of Errors</a>
  (by RMS)
  &mdash; About the flaws in popular defenses of copyright law.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/reevaluating-copyright.html">
  Reevaluating Copyright: The Public Must Prevail</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2010]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/public-domain-manifesto.html">
  Why I Will Not Sign the Public Domain Manifesto</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2008]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/freedom-or-copyright.html">
  Freedom&mdash;or Copyright?</a>
  (by RMS)
  [<a href="/philosophy/freedom-or-copyright-old.html">older version</a>]</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/eldred-amicus.html">
  FSF's Brief Amicus Curiae in the <cite>Eldred v. Ashcroft</cite> Supreme Court case</a>
  (by Eben Moglen)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/push-copyright-aside.html">
  Science must &ldquo;push copyright aside&rdquo;</a>
  (by RMS, first published in <a
  href="https://web.archive.org/web/20050729110347/http://www.nature.com/nature/debates/e-access/Articles/stallman.html">
  <cite>Nature WebDebates</cite></a> in 2001)
  &mdash; This article explains how copyright is impeding progress in
  scientific research.  You may also be interested
  in <a href="https://plos.org/">The Public Library of Science</a>,
  which is dedicated to making scientific research freely available to all
  on the Internet.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2001]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://web.archive.org/web/20030604075825/http://www.humaninfo.org/copyrigh.htm">
  Examples of Excellent Copyright Policies</a>
  (on <i>humaninfo.org</i>, archived)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://cyber.harvard.edu/openlaw/eldredvashcroft/cyber/complaint_orig.html">
  Original complaint in <cite>Eldred v. Reno</cite></a>
  (on <i>harvard.edu</i>)
  &mdash; A lawsuit to overturn a law that extends copyright by 20 extra
  years.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/rms-comment-longs-article.html">
  Comments on Roderick Long's Article</a>
  (by RMS)</li>
</ul>

<h4 id="noip">The propaganda term &ldquo;<a
href="/philosophy/words-to-avoid.html#IntellectualProperty">Intellectual
Property</a>&rdquo;</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2004]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/not-ipr.html">
  Did You Say &ldquo;Intellectual Property&rdquo;? It's a Seductive Mirage</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/komongistan.html">
  The Curious History of Komongistan (Busting the term &ldquo;intellectual
  property&rdquo;)</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2006]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/no-ip-ethos.html">
  Don't Let &ldquo;Intellectual Property&rdquo; Twist Your Ethos</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/ipjustice.html">
  Reject IP Enforcement Directive</a>
  &mdash; Comments on the rejection of this directive by the International
  Civil Liberties Coalition.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/boldrin-levine.html">
  Review: Boldrin and Levine, &ldquo;The Case Against Intellectual
  Property&rdquo;</a>
  (by RMS)</li>
</ul>

<h4 id="sco">Response to SCO's attacks</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">[2003-2004]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/sco/sco.html">
  FSF's Position regarding SCO's attacks on Free Software</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/sco/sco-gnu-linux.html">
  SCO, GNU, and Linux</a>
  (by RMS)
  &mdash; How SCO's lawsuit against IBM pertains to the work of the
  GNU project.</li>
</ul>


<h3 id="cultural">Cultural and Social Issues</h3>

<h4 id="society">Digital society</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/stallmans-law.html">
  Stallman's Law</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[2009]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/digital-inclusion-in-freedom.html">
  Is Digital Inclusion A Good Thing? How Can We Make Sure It Is?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2007]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/computing-progress.html">
  Computing &ldquo;progress&rdquo;: good and bad</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2003]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/wsis.html">
  World Summit on the Information Society</a>
  (by RMS)</li>
</ul>

<h4 id="drm">Digital restrictions management</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2006]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/opposing-drm.html">
  Opposing Digital Rights Mismanagement</a>
  (by RMS)
  &mdash; Answers to a few common questions about DRM.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/can-you-trust.html">
  Can You Trust Your Computer?</a>
  (by RMS)
  &mdash; About the so-called &ldquo;trusted computing&rdquo; initiatives.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2013]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/nonfree-games.html">
  Nonfree DRM'd Games on GNU/Linux: Good or Bad?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/correcting-france-mistake.html">
  Correcting My Mistake about French Law</a>
  (by RMS)</li>
</ul>

<h4 id="ns">Network Services</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2010-2020]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/who-does-that-server-really-serve.html">
  Who does that server really serve?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2020]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/posting-videos.html">
  Posting Videos</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2015]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/whats-wrong-with-youtube.html">
  What's Wrong with YouTube</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2014]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/bug-nobody-allowed-to-understand.html">
  The Bug Nobody is Allowed to Understand</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/judge-internet-usage.html">
  A wise user judges each Internet usage scenario carefully</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/keep-control-of-your-computing.html">
  Keep control of your computing, so it doesn't control you!</a>
  (by RMS)</li>
</ul>

<h4 id="access">Accessing culture</h4>
<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[1996-2016]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/right-to-read.html">
  The Right to Read: A Dystopian Short Story</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/ebooks-must-increase-freedom.html">
  Ebooks must increase our freedom, not decrease it</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2011]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/the-danger-of-ebooks.html">
  The Danger of E-Books</a>
  (by RMS)</li>
  <li><!--#set var='DATE' value='<span class="date-tag">[2010]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.theguardian.com/technology/blog/2010/apr/06/digital-economy-bill-richard-stallman">
  Digital economy bill: One clown giveth and the other clown taketh away</a>
  (by RMS, on <i>theguardian.com</i>)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/ebooks.html">
  Ebooks: Freedom Or Copyright</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/encyclopedia/free-encyclopedia.html">
  The Free Universal Encyclopedia and Learning Resource</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/new-monopoly.html">
  U.S. Congress Threatens to Establish a New Kind of Monopoly</a>
  &mdash; An attempt of the Congress to create a private monopoly over
  repeating publicly known information.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/stophr3028.html">
  Stop H.R. 3028 - Protect the Net - Stop the Trademark Monopolists</a>
  (by Marc Rotenberg)</li>
</ul>

<h4 id="funding">Funding cultural works</h4>
<ul class="no-bullet">
 <li><!--#set var='DATE' value='<span class="date-tag">[2013]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/funding-art-vs-funding-software.html">
  Funding Art vs Funding Software</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1992]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/dat.html">
  The Right Way to Tax DAT</a>
  (by RMS)</li>
</ul>

<h4 id="evils">Surveillance, censorship, lock-in, etc.</h4>

<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[2013&hellip;&nbsp;]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/proprietary/proprietary.html">
  Proprietary Software Is Often Malware</a>
  &mdash; Clearly established cases of proprietary software that does
  nasty things to the users.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">*[2015-2019]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/surveillance-vs-democracy.html">
  How Much Surveillance Can Democracy Withstand?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2021]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/wwworst-app-store.html">
  The WWWorst App Store</a>
  (by Alexandre Oliva)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2018]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/phone-anonymous-payment.html">
  Anonymous Payment by Phone</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2018]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="https://www.theguardian.com/commentisfree/2018/apr/03/facebook-abusing-data-law-privacy-big-tech-surveillance">
  A radical proposal to keep your personal data safe</a>
  (by RMS, on <i>theguardian.com</i>)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2018]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/surveillance-testimony.html">
  Surveillance Testimony</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2012]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/ubuntu-spyware.html">
  Ubuntu Spyware: What to Do?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2009]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/microsoft.html">
  Is Microsoft the Great Satan?</a>
  [<a href="/philosophy/microsoft-old.html">older version</a>]</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2008]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/the-root-of-this-problem.html">
  The Problem Is Software Controlled By Its Developer</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2008]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/gates.html">
  It's not the Gates, it's the bars</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/wassenaar.html">
  The Wassenaar Arrangement</a>
  &mdash; Encryption software volunteers needed in countries without
  export control.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/ms-doj-tunney.html">
  FSF's Statement in Response to Proposed Revised Final Judgment in
  <cite>Microsoft v. United States</cite></a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2000]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/microsoft-verdict.html">
  On the Microsoft Verdict</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/microsoft-antitrust.html">
  The Microsoft Antitrust Trial and Free Software</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/privacyaction.html">
  Protect Postal Privacy</a>
  (by Kathleen Ellis)
  &mdash; A campaign to resist the proposed rule by the United States
  Postal Service to collect private information from customers.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/basic-freedoms.html">
  Freedoms of Speech, Press, and Association</a>
  &mdash; How to protect these freedoms on the Internet.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/censoring-emacs.html">
  Censoring My Software</a>
  (by RMS)</li>
</ul>


<h3 id="terminology">Terminology and Definitions</h3>

<ul class="no-bullet"> 
 <li><!--#set var='DATE' value='<span class="date-tag">*[1996&hellip;&nbsp;]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/words-to-avoid.html">
  Words to Avoid (or Use with Care) Because They Are Loaded or Confusing</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1999&hellip;&nbsp;]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/fs-translations.html">
  Translations of the term &ldquo;free software&rdquo;</a>
  into various languages.</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[1996-2019]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/categories.html">
  Categories of Free and Nonfree Software</a></li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2013]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/why-call-it-the-swindle.html">
  Why Call It The Swindle?</a>
  (by RMS)</li>
 <li><!--#set var='DATE' value='<span class="date-tag">[2002]</span>'
  --><!--#echo encoding='none' var='DATE' -->
  <a href="/philosophy/wipo-PublicAwarenessOfCopyright-2002.html">
  Public Awareness of Copyright, WIPO, June 2002</a>
  (by RMS)
  &mdash; How WIPO recognizes that their system is designed to restrict
  the public, and how they propose to modify terminology so that people
  won't notice.</li>
</ul>


<h3 id="humor">Philosophical humor</h3>

<p><a href="/fun/humor.html#Philosophy">Laugh along with GNU (Philosophy)</a>
&mdash; We don't have to be serious <i>all</i> the time.</p>
</div>

</div><!-- for id="content", starts in the include above -->
<!--#include virtual="/server/footer.html" -->
<div id="footer" role="contentinfo">
<div class="unprintable">

<p>Please send general FSF &amp; GNU inquiries to <a
href="mailto:gnu@gnu.org">&lt;gnu@gnu.org&gt;</a>.  There are also <a
href="/contact/">other ways to contact</a> the FSF.  Broken links and other
corrections or suggestions can be sent to <a
href="mailto:webmasters@gnu.org">&lt;webmasters@gnu.org&gt;</a>.</p>

<p><!-- TRANSLATORS: Ignore the original text in this paragraph,
        replace it with the translation of these two:

        We work hard and do our best to provide accurate, good quality
        translations.  However, we are not exempt from imperfection.
        Please send your comments and general suggestions in this regard
        to <a href="mailto:web-translators@gnu.org">
        &lt;web-translators@gnu.org&gt;</a>.</p>

        <p>For information on coordinating and contributing translations of
        our web pages, see <a
        href="/server/standards/README.translations.html">Translations
        README</a>. -->
Please see the <a
href="/server/standards/README.translations.html">Translations README</a> for
information on coordinating and contributing translations of this article.</p>
</div>

<!-- Regarding copyright, in general, standalone pages (as opposed to
     files generated as part of manuals) on the GNU web server should
     be under CC BY-ND 4.0.  Please do NOT change or remove this
     without talking with the webmasters or licensing team first.
     Please make sure the copyright date is consistent with the
     document.  For web pages, it is ok to list just the latest year the
     document was modified, or published.
    
     If you wish to list earlier years, that is ok too.
     Either "2001, 2002, 2003" or "2001-2003" are ok for specifying
     years, as long as each year in the range is in fact a copyrightable
     year, i.e., a year in which the document was published (including
     being publicly visible on the web or in a revision control system).
    
     There is more detail about copyright years in the GNU Maintainers
     Information document, www.gnu.org/prep/maintain. -->

<p>Copyright &copy; 1996-2022 Free Software Foundation, Inc.</p>

<p>This page is licensed under a <a rel="license"
href="http://creativecommons.org/licenses/by-nd/4.0/">Creative
Commons Attribution-NoDerivatives 4.0 International License</a>.</p>

<!--#include virtual="/server/bottom-notes.html" -->

<p class="unprintable">Updated:
<!-- timestamp start -->
$Date: 2022/01/01 17:25:38 $
<!-- timestamp end -->
</p>
</div>
</div><!-- for class="inner", starts in the banner include -->
</body>
</html>