This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
linux
1829 lines (1789 loc) · 65.8 KB
/
linux
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
"How do you pronounce SunOS?" "Just like you hear it, with a big SOS"
-- dedicated to Roland Kaltefleiter
%
finlandia:~> apropos win
win: nothing appropriate.
%
C:\> WIN
Bad command or filename
C:\> LOSE
Loading Microsoft Windows ...
%
Linux ext2fs has been stable for a long time, now it's time to break it
-- Linuxkongreß '95 in Berlin
%
The state of some commercial Un*x is more unsecure than any Linux box
without a root password...
-- Bernd Eckenfels
%
Less is more or less more
-- Y_Plentyn on #LinuxGER
%
Let's call it an accidental feature.
--Larry Wall
%
......... Escape the 'Gates' of Hell
`:::' ....... ......
::: * `::. ::'
::: .:: .:.::. .:: .:: `::. :'
::: :: :: :: :: :: :::.
::: .::. .:: ::. `::::. .:' ::.
...:::.....................::' .::::..
-- William E. Roadcap
%
Win95 is not a virus; a virus does something.
-- unknown source
%
Machine Always Crashes, If Not, The Operating System Hangs (MACINTOSH)
-- Topic on #Linux
%
Except for Great Britain. According to ISO 9166 and Internet reality
Great Britain's toplevel domain should be _gb_. Instead, Great Britain
and Nortern Ireland (the United Kingdom) use the toplevel domain _uk_.
They drive on the wrong side of the road, too.
-- PERL book (or DNS and BIND book)
%
Save yourself from the 'Gates' of hell, use Linux." -- like that one.
-- The_Kind @ LinuxNet
%
I did this 'cause Linux gives me a woody. It doesn't generate revenue.
-- Dave '-ddt->` Taylor, announcing DOOM for Linux
%
Feel free to contact me (flames about my english and the useless of this
driver will be redirected to /dev/null, oh no, it's full...).
-- Michael Beck, describing the PC-speaker sound device
%
if (argc > 1 && strcmp(argv[1], "-advice") == 0) {
printf("Don't Panic!\n");
exit(42);
}
-- Arnold Robbins in the LJ of February '95, describing RCS
%
lp1 on fire
-- One of the more obfuscated kernel messages
%
A Linux machine! Because a 486 is a terrible thing to waste!
-- Joe Sloan, jjs@wintermute.ucr.edu
%
Microsoft is not the answer.
Microsoft is the question.
NO (or Linux) is the answer.
-- Taken from a .signature from someone from the UK, source unknown
%
In most countries selling harmful things like drugs is punishable.
Then howcome people can sell Microsoft software and go unpunished?
-- Hasse Skrifvars, hasku@rost.abo.fi,
%
Windows without the X is like making love without a partner.
-- MaDsen Wikholm, mwikholm@at8.abo.fi
%
Sex, Drugs & Linux Rules
-- MaDsen Wikholm, mwikholm@at8.abo.fi
%
win-nt from the people who invented edlin.
-- MaDsen Wikholm, mwikholm@at8.abo.fi
%
Apples have meant trouble since eden.
-- MaDsen Wikholm, mwikholm@at8.abo.fi
%
Linux, the way to get rid of boot viruses
-- MaDsen Wikholm, mwikholm@at8.abo.fi
%
Once upon a time there was a DOS user who saw Unix, and saw that it was
good. After typing cp on his DOS machine at home, he downloaded GNU's
unix tools ported to DOS and installed them. He rm'd, cp'd, and mv'd
happily for many days, and upon finding elvis, he vi'd and was happy. After
a long day at work (on a Unix box) he came home, started editing a file,
and couldn't figure out why he couldn't suspend vi (w/ ctrl-z) to do
a compile.
-- Erik Troan, ewt@tipper.oit.unc.edu
%
We are MicroSoft. You will be assimilated. Resistance is futile.
-- Attributed to B.G., Gill Bates
%
Avoid the Gates of Hell. Use Linux
-- unknown source
%
Intel engineering seem to have misheard Intel marketing strategy. The
phrase was "Divide and conquer" not "Divide and cock up"
-- Alan Cox, iialan@www.linux.org.uk
%
Linux! Guerrilla UNIX Development Venimus, Vidimus, Dolavimus.
-- Mark A. Horton KA4YBR, mah@ka4ybr.com
%
----==-- _ / / \
---==---(_)__ __ ____ __ / / /\ \
--==---/ / _ \/ // /\ \/ / / /_/\ \ \
-=====/_/_//_/\_,_/ /_/\_\ /______\ \ \
A proud member of TeamLinux \_________\/
-- CHaley (HAC), haley@unm.edu, ch008cth@pi.lanl.gov)
%
"Who is General Failure and why is he reading my hard disk?"
Microsoft spel chekar vor sail, worgs grate !!
-- Felix von Leitner, leitner@inf.fu-berlin.de
%
Personally, I think my choice in the mostest-superlative-computer wars has to
be the HP-48 series of calculators. They'll run almost anything. And if they
can't, while I'll just plug a Linux box into the serial port and load up the
HP-48 VT-100 emulator.
-- Jeff Dege, jdege@winternet.com
%
/*
* Oops. The kernel tried to access some bad page. We'll have to
* terminate things with extreme prejudice.
*/
die_if_kernel("Oops", regs, error_code);
-- From linux/arch/i386/mm/fault.c
%
Linux: because a PC is a terrible thing to waste
-- ksh@cis.ufl.edu put this on Tshirts in '93
%
Linux: the choice of a GNU generation
-- ksh@cis.ufl.edu put this on Tshirts in '93
%
There are two types of Linux developers - those who can spell, and
those who can't. There is a constant pitched battle between the two.
-- From one of the post-1.1.54 kernel update messages posted to c.o.l.a
%
> > Other than the fact Linux has a cool name, could someone explain why I
> > should use Linux over BSD?
>
> No. That's it. The cool name, that is. We worked very hard on
> creating a name that would appeal to the majority of people, and it
> certainly paid off: thousands of people are using linux just to be able
> to say "OS/2? Hah. I've got Linux. What a cool name". 386BSD made the
> mistake of putting a lot of numbers and weird abbreviations into the
> name, and is scaring away a lot of people just because it sounds too
> technical.
-- Linus Torvalds' follow-up to a question about Linux
%
> The day people think linux would be better served by somebody else (FSF
> being the natural alternative), I'll "abdicate". I don't think that
> it's something people have to worry about right now - I don't see it
> happening in the near future. I enjoy doing linux, even though it does
> mean some work, and I haven't gotten any complaints (some almost timid
> reminders about a patch I have forgotten or ignored, but nothing
> negative so far).
>
> Don't take the above to mean that I'll stop the day somebody complains:
> I'm thick-skinned (Lasu, who is reading this over my shoulder commented
> that "thick-HEADED is closer to the truth") enough to take some abuse.
> If I weren't, I'd have stopped developing linux the day ast ridiculed me
> on c.o.minix. What I mean is just that while linux has been my baby so
> far, I don't want to stand in the way if people want to make something
> better of it (*).
>
> Linus
>
> (*) Hey, maybe I could apply for a saint-hood from the Pope. Does
> somebody know what his email-address is? I'm so nice it makes you puke.
-- Taken from Linus's reply to someone worried about the future of Linux
%
> : Any porters out there should feel happier knowing that DEC is shipping
> : me an AlphaPC that I intend to try getting linux running on: this will
> : definitely help flush out some of the most flagrant unportable stuff.
> : The Alpha is much more different from the i386 than the 68k stuff is, so
> : it's likely to get most of the stuff fixed.
>
> It's posts like this that almost convince us non-believers that there
> really is a god.
-- Anthony Lovell, to Linus's remarks about porting
%
When you say "I wrote a program that crashed Windows", people just stare at
you blankly and say "Hey, I got those with the system, *for free*".
-- Linus Torvalds
%
We come to bury DOS, not to praise it.
-- Paul Vojta, vojta@math.berkeley.edu
%
Be warned that typing \fBkillall \fIname\fP may not have the desired
effect on non-Linux systems, especially when done by a privileged user.
-- From the killall manual page
%
Note that if I can get you to "su and say" something just by asking,
you have a very serious security problem on your system and you should
look into it.
-- Paul Vixie, vixie-cron 3.0.1 installation notes
%
How should I know if it works? That's what beta testers are for. I
only coded it.
-- Attributed to Linus Torvalds, somewhere in a posting
%
I develop for Linux for a living, I used to develop for DOS.
Going from DOS to Linux is like trading a glider for an F117.
-- Lawrence Foard, entropy@world.std.com
%
Absolutely nothing should be concluded from these figures except that
no conclusion can be drawn from them.
-- Joseph L. Brothers, Linux/PowerPC Project)
%
If the future navigation system [for interactive networked services on
the NII] looks like something from Microsoft, it will never work.
-- Chairman of Walt Disney Television & Telecommunications
%
Problem solving under Linux has never been the circus that it is under
AIX.
-- Pete Ehlke in comp.unix.aix
%
I don't know why, but first C programs tend to look a lot worse than
first programs in any other language (maybe except for fortran, but then
I suspect all fortran programs look like `firsts')
-- Olaf Kirch
%
On a normal ascii line, the only safe condition to detect is a 'BREAK'
- everything else having been assigned functions by Gnu EMACS.
-- Tarl Neustaedter
%
By golly, I'm beginning to think Linux really *is* the best thing since
sliced bread.
-- Vance Petree, Virginia Power
%
I'd crawl over an acre of 'Visual This++' and 'Integrated Development
That' to get to gcc, Emacs, and gdb. Thank you.
-- Vance Petree, Virginia Power
%
Oh, I've seen copies [of Linux Journal] around the terminal room at The Labs.
-- Dennis Ritchie
%
If you want to travel around the world and be invited to speak at a lot
of different places, just write a Unix operating system.
-- Linus Torvalds
%
...and scantily clad females, of course. Who cares if it's below zero
outside.
-- Linus Torvalds
%
...you might as well skip the Xmas celebration completely, and instead
sit in front of your linux computer playing with the all-new-and-improved
linux kernel version.
-- Linus Torvalds
%
Besides, I think Slackware sounds better than 'Microsoft,' don't you?
-- Patrick Volkerding
%
All language designers are arrogant. Goes with the territory...
-- Larry Wall
%
And the next time you consider complaining that running Lucid Emacs
19.05 via NFS from a remote Linux machine in Paraguay doesn't seem to
get the background colors right, you'll know who to thank.
-- Matt Welsh
%
Are Linux users lemmings collectively jumping off of the cliff of
reliable, well-engineered commercial software?
-- Matt Welsh
%
Even more amazing was the realization that God has Internet access. I
wonder if He has a full newsfeed?
-- Matt Welsh
%
I once witnessed a long-winded, month-long flamewar over the use of
mice vs. trackballs... It was very silly.
-- Matt Welsh
%
Linux poses a real challenge for those with a taste for late-night
hacking (and/or conversations with God).
-- Matt Welsh
%
What you end up with, after running an operating system concept through
these many marketing coffee filters, is something not unlike plain hot
water.
-- Matt Welsh
%
...Deep Hack Mode -- that mysterious and frightening state of
consciousness where Mortal Users fear to tread.
-- Matt Welsh
%
...Unix, MS-DOS, and Windows NT (also known as the Good, the Bad, and
the Ugly).
-- Matt Welsh
%
...very few phenomena can pull someone out of Deep Hack Mode, with two
noted exceptions: being struck by lightning, or worse, your *computer*
being struck by lightning.
-- Matt Welsh
%
..you could spend *all day* customizing the title bar. Believe me. I
speak from experience.
-- Matt Welsh
%
[In 'Doctor' mode], I spent a good ten minutes telling Emacs what I
thought of it. (The response was, 'Perhaps you could try to be less
abusive.')
-- Matt Welsh
%
I would rather spend 10 hours reading someone else's source code than
10 minutes listening to Musak waiting for technical support which isn't.
-- Dr. Greg Wettstein, Roger Maris Cancer Center
%
...[Linux's] capacity to talk via any medium except smoke signals.
-- Dr. Greg Wettstein, Roger Maris Cancer Center
%
Whip me. Beat me. Make me maintain AIX.
-- Stephan Zielinski
%
Your job is being a professor and researcher: That's one hell of a good excuse
for some of the brain-damages of minix.
-- Linus Torvalds to Andrew Tanenbaum
%
I still maintain the point that designing a monolithic kernel in 1991 is a
fundamental error. Be thankful you are not my student. You would not get a
high grade for such a design :-)
-- Andrew Tanenbaum to Linus Torvalds
%
We use Linux for all our mission-critical applications. Having the source code
means that we are not held hostage by anyone's support department.
-- Russell Nelson, President of Crynwr Software
%
Linux is obsolete
-- Andrew Tanenbaum
%
Dijkstra probably hates me.
-- Linus Torvalds, in kernel/sched.c
%
And 1.1.81 is officially BugFree(tm), so if you receive any bug-reports
on it, you know they are just evil lies.
-- Linus Torvalds
%
We are Pentium of Borg. Division is futile. You will be approximated.
-- seen in someone's .signature
%
Linux: the operating system with a CLUE... Command Line User Environment.
-- seen in a posting in comp.software.testing
%
quit When the quit statement is read, the bc processor
is terminated, regardless of where the quit state-
ment is found. For example, "if (0 == 1) quit"
will cause bc to terminate.
-- seen in the manpage for "bc". Note the "if" statement's logic
%
Sic transit discus mundi
-- From the System Administrator's Guide, by Lars Wirzenius
%
Sigh. I like to think it's just the Linux people who want to be on
the "leading edge" so bad they walk right off the precipice.
-- Craig E. Groeschel
%
We all know Linux is great... it does infinite loops in 5 seconds.
- Linus Torvalds about the superiority of Linux on the Amterdam Linux Symposium
%
Waving away a cloud of smoke, I look up, and am blinded by a bright, white
light. It's God. No, not Richard Stallman, or Linus Torvalds, but God. In
a booming voice, He says: "THIS IS A SIGN. USE LINUX, THE FREE UNIX SYSTEM
FOR THE 386.
-- Matt Welsh
%
The chat program is in public domain. This is not the GNU public license.
If it breaks then you get to keep both pieces.
-- Copyright notice for the chat program
%
'Mounten' wird für drei Dinge benutzt: 'Aufsitzen' auf Pferde, 'einklinken'
von Festplatten in Dateisysteme, und, nun, 'besteigen' beim Sex.
-- Christa Keil
%
Manchmal stehe nachts auf und installier's mir einfach...
-- H0arry @ IRC
%
'Mounting' is used for three things: climbing on a horse, linking in a
hard disk unit in data systems, and, well, mounting during sex.
-- Christa Keil
%
We are using Linux daily to UP our productivity - so UP yours!
-- Adapted from Pat Paulsen by Joe Sloan
%
But what can you do with it?
-- ubiquitous cry from Linux-user partner
%
/*
* [...] Note that 120 sec is defined in the protocol as the maximum
* possible RTT. I guess we'll have to use something other than TCP
* to talk to the University of Mars.
* PAWS allows us longer timeouts and large windows, so once implemented
* ftp to mars will work nicely.
*/
-- from /usr/src/linux/net/inet/tcp.c, concerning RTT [round trip time]
%
DOS: n., A small annoying boot virus that causes random spontaneous system
crashes, usually just before saving a massive project. Easily cured by
UNIX. See also MS-DOS, IBM-DOS, DR-DOS.
-- David Vicker's .plan
%
MSDOS didn't get as bad as it is overnight -- it took over ten years
of careful development.
-- dmeggins@aix1.uottawa.ca
%
LILO, you've got me on my knees!
-- David Black, dblack@pilot.njin.net, with apologies to Derek and the
Dominos, and Werner Almsberger
%
I've run DOOM more in the last few days than I have the last few
months. I just love debugging ;-)
-- Linus Torvalds
%
Microsoft Corp., concerned by the growing popularity of the free 32-bit
operating system for Intel systems, Linux, has employed a number of top
programmers from the underground world of virus development. Bill Gates stated
yesterday: "World domination, fast -- it's either us or Linus". Mr. Torvalds
was unavailable for comment ...
-- Robert Manners, rjm@swift.eng.ox.ac.uk, in comp.os.linux.setup
%
The only "intuitive" interface is the nipple. After that, it's all learned.
-- Bruce Ediger, bediger@teal.csn.org, on X interfaces
%
After watching my newly-retired dad spend two weeks learning how to make a new
folder, it became obvious that "intuitive" mostly means "what the writer or
speaker of intuitive likes".
-- Bruce Ediger, bediger@teal.csn.org, on X the intuitiveness of a Mac interface
%
Now I know someone out there is going to claim, "Well then, UNIX is intuitive,
because you only need to learn 5000 commands, and then everything else follows
from that! Har har har!"
-- Andy Bates on "intuitive interfaces", slightly defending Macs
%
> No manual is ever necessary.
May I politely interject here: BULLSHIT. That's the biggest Apple lie of all!
-- Discussion in comp.os.linux.misc on the intuitiveness of interfaces
%
How do I type "for i in *.dvi do xdvi $i done" in a GUI?
-- Discussion in comp.os.linux.misc on the intuitiveness of interfaces
%
>Ever heard of .cshrc?
That's a city in Bosnia. Right?
-- Discussion in comp.os.linux.misc on the intuitiveness of commands
%
Who wants to remember that escape-x-alt-control-left shift-b puts you into
super-edit-debug-compile mode?
-- Discussion on the intuitiveness of commands, especially Emacs
%
Anyone who thinks UNIX is intuitive should be forced to write 5000 lines of
code using nothing but vi or emacs. AAAAACK!
-- Discussion on the intuitiveness of commands, especially Emacs
%
Now, it we had this sort of thing:
yield -a for yield to all traffic
yield -t for yield to trucks
yield -f for yield to people walking (yield foot)
yield -d t* for yield on days starting with t
...you'd have a lot of dead people at intersections, and traffic jams you
wouldn't believe...
-- Discussion on the intuitiveness of commands
%
Actually, typing random strings in the Finder does the equivalent of
filename completion.
-- Discussion on file completion vs. the Mac Finder
%
Not me, guy. I read the Bash man page each day like a Jehovah's Witness reads
the Bible. No wait, the Bash man page IS the bible. Excuse me...
-- More on confusing aliases, taken from comp.os.linux.misc
%
On the Internet, no one knows you're using Windows NT
-- Submitted by Ramiro Estrugo, restrugo@fateware.com
%
> I'm an idiot.. At least this [bug] took about 5 minutes to find..
Disquieting ...
-- Gonzalo Tornaria in response to Linus Torvalds's
%
> I'm an idiot.. At least this [bug] took about 5 minutes to find..
We need to find some new terms to describe the rest of us mere mortals
then.
-- Craig Schlenter in response to Linus Torvalds's
%
> I'm an idiot.. At least this [bug] took about 5 minutes to find..
Surely, Linus is talking about the kind of idiocy that others aspire to :-).
-- Bruce Perens in response to Linus Torvalds's
%
Never make any mistaeks.
-- Anonymous, in a mail discussion about to a kernel bug report
%
+#if defined(__alpha__) && defined(CONFIG_PCI)
+ /*
+ * The meaning of life, the universe, and everything. Plus
+ * this makes the year come out right.
+ */
+ year -= 42;
+#endif
-- From the patch for 1.3.2: (kernel/time.c), submitted by Marcus Meissner
%
As usual, this being a 1.3.x release, I haven't even compiled this
kernel yet. So if it works, you should be doubly impressed.
-- Linus Torvalds, announcing kernel 1.3.3
%
People disagree with me. I just ignore them.
-- Linus Torvalds, regarding the use of C++ for the Linux kernel
%
It's now the GNU Emacs of all terminal emulators.
-- Linus Torvalds, regarding the fact that Linux started off as a terminal emulator
%
Audience: What will become of Linux when the Hurd is ready?
Eric Youngdale: Err... is Richard Stallman here?
-- From the Linux conference in spring '95, Berlin
%
Linux: The OS people choose without $200,000,000 of persuasion.
-- Mike Coleman
%
The memory management on the PowerPC can be used to frighten small children.
-- Linus Torvalds
%
... faster BogoMIPS calculations (yes, it now boots 2 seconds faster than
it used to: we're considering changing the name from "Linux" to "InstaBOOT"
-- Linus, in the announcement for 1.3.26
%
... of course, this probably only happens for tcsh which uses wait4(),
which is why I never saw it. Serves people who use that abomination
right 8^)
-- Linus Torvalds, about a patch that fixes getrusage for 1.3.26
%
It's a bird..
It's a plane..
No, it's KernelMan, faster than a speeding bullet, to your rescue.
Doing new kernel versions in under 5 seconds flat..
-- Linus, in the announcement for 1.3.27
%
Eh, that's it, I guess. No 300 million dollar unveiling event for this
kernel, I'm afraid, but you're still supposed to think of this as the
"happening of the century" (at least until the next kernel comes along).
-- Linus, in the announcement for 1.3.27
%
Oh, and this is another kernel in that great and venerable "BugFree(tm)"
series of kernels. So be not afraid of bugs, but go out in the streets
and deliver this message of joy to the masses.
-- Linus, in the announcement for 1.3.27
%
When you say 'I wrote a program that crashed Windows', people just stare at
you blankly and say 'Hey, I got those with the system, *for free*'.
-- Linus Torvalds
%
Never trust an operating system you don't have sources for. ;-)
-- Unknown source
%
> Linux is not user-friendly.
It _is_ user-friendly. It is not ignorant-friendly and idiot-friendly.
-- Seen somewhere on the net
%
Keep me informed on the behaviour of this kernel.. As the "BugFree(tm)"
series didn't turn out too well, I'm starting a new series called the
"ItWorksForMe(tm)" series, of which this new kernel is yet another
shining example.
-- Linus, in the announcement for 1.3.29
%
Seriously, the way I did this was by using a special /sbin/loader binary
with debugging hooks that I made ("dd" is your friend: binary editors
are for wimps).
-- Linus Torvalds, in an article on a dnserver
%
(I tried to get some documentation out of Digital on this, but as far as
I can tell even _they_ don't have it ;-)
-- Linus Torvalds, in an article on a dnserver
%
Q: Why shouldn't I simply delete the stuff I never use, it's just taking up
space?
A: This question is in the category of Famous Last Words..
-- From the Frequently Unasked Questions
%
Q: What's the big deal about rm, I have been deleting stuff for years? And
never lost anything.. oops!
A: ...
-- From the Frequently Unasked Questions
%
Linux is addictive, I'm hooked!
-- MaDsen Wikholm's .sig
%
panic("Foooooooood fight!");
-- In the kernel source aha1542.c, after detecting a bad segment list
%
Convention organizer to Linus Torvalds: "You might like to come with us
to some licensed[1] place, and have some pizza."
Linus: "Oh, I did not know that you needed a license to eat pizza".
[1] Licenced - refers in Australia to a restaurant which has government
licence to sell liquor.
-- Linus at a talk at the Melbourne University
%
Footnotes are for things you believe don't really belong in LDP manuals,
but want to include anyway.
-- Joel N. Weber II discussing the 'make' chapter of LPG
%
Eh, that's it, I guess. No 300 million dollar unveiling event for this
kernel, I'm afraid, but you're still supposed to think of this as the
"happening of the century" (at least until the next kernel comes along).
Oh, and this is another kernel in that great and venerable "BugFree(tm)"
series of kernels. So be not afraid of bugs, but go out in the streets
and deliver this message of joy to the masses.
-- Linus Torvalds, on releasing 1.3.27
%
Ok, I'm just uploading the new version of the kernel, v1.3.33, also
known as "the buggiest kernel ever".
-- Linus Torvalds
%
Go not unto the Usenet for advice, for you will be told both yea and nay (and
quite a few things that just have nothing at all to do with the question).
-- seen in a .sig somewhere
%
Those who don't understand Linux are doomed to reinvent it, poorly.
-- unidentified source
%
Look, I'm about to buy me a double barreled sawed off shotgun and show
Linus what I think about backspace and delete not working.
-- some anonymous .signature
%
I forgot to mention an important fact in the 1.3.67 announcement. In order to
get a fully working kernel, you have to follow the steps below:
- Walk around your computer widdershins 3 times, chanting "Linus is
overworked, and he makes lousy patches, but we love him anyway". Get
your spuouse to do this too for extra effect. Children are optional.
- Apply the patch included in this mail
- Call your system "Super-67", and don't forget to unapply the patch
before you later applying the official 1.3.68 patch.
- reboot
-- Linus Torvalds, announcing another kernel patch
%
We apologize for the inconvenience, but we'd still like yout to test out
this kernel.
-- Linus Torvalds, announcing another kernel patch
%
The new Linux anthem will be "He's an idiot, but he's ok", as performed by
Monthy Python. You'd better start practicing.
-- Linus Torvalds, announcing another kernel patch
%
How do you power off this machine?
-- Linus, when upgrading linux.cs.helsinki.fi, and after using the machine for several months
%
Excusing bad programming is a shooting offence, no matter _what_ the
circumstances.
-- Linus Torvalds, to the linux-kernel list
%
Linus? Whose that?
-- clueless newbie on #Linux
%
N: Phil Lewis
E: beans@bucket.ualr.edu
D: Promised to send money if I would put his name in the source tree.
S: PO Box 371
S: North Little Rock, Arkansas 72115
S: US
-- /usr/src/linux/CREDITS
%
> You know you are "there" when you are known by your first name, and
> are recognized.
> Lemmie see, there is Madonna, and Linus, and ..... help me out here!
Bill ? ;-)
-- From some postings on comp.os.linux.misc
%
Whoa...I did a 'zcat /vmlinuz > /dev/audio' and I think I heard God...
-- mikecd on #Linux
%
Some people have told me they don't think a fat penguin really embodies the
grace of Linux, which just tells me they have never seen a angry penguin
charging at them in excess of 100mph. They'd be a lot more careful about what
they say if they had.
-- Linus Torvalds, announcing Linux v2.0
%
MS-DOS, you can't live with it, you can live without it.
-- from Lars Wirzenius' .sig
%
> If you don't need X then little VT-100 terminals are available for real
> cheap. Should be able to find decent ones used for around $40 each.
> For that price, they're a must for the kitchen, den, bathrooms, etc.. :)
You're right. Can you explain this to my wife?
-- Seen on c.o.l.development.system, on the subject of extra terminals
%
.. I used to get in more fights with SCO than I did my girlfriend, but
now, thanks to Linux, she has more than happily accepted her place back at
number one antagonist in my life..
-- Jason Stiefel, krypto@s30.nmex.com
%
I mean, well, if it were not for Linux I might be roaming the streets looking
for drugs or prostitutes or something. Hannu and Linus have my highest
admiration (apple polishing mode off).
-- Phil Lewis, plewis@nyx.nyx.net
%
> What does ELF stand for (in respect to Linux?)
ELF is the first rock group that Ronnie James Dio performed with back in
the early 1970's. In constrast, a.out is a misspelling of the French word
for the month of August. What the two have in common is beyond me, but
Linux users seem to use the two words together.
-- seen on c.o.l.misc
%
"Linux was made by foreign terrorists to take money from true US companies
like Microsoft." - Some AOL'er.
"To this end we dedicate ourselves..." -Don
-- From the sig of "Don", don@cs.byu.edu
%
Shoot me again.
Just proving that the quickest way to solve the problem is to post a
whine to the newsgroups: within moments the solution presents itself to
me, and meanwhile my ass is hanging out on the Net... *sigh*...
-- Dave Phillips, dlphilp@bright.net, about problem solving via news
%
> Is there any hope for me? Am I just thick? Does anyone remember the
> Rubiks Cube, it was easier!
I found that the Rubiks cube and Linux are alike. Looks real confusing
until you read the right book. :-)
-- seen on c.o.l.misc, about the "Linux Learning Curve"
%
> I've hacked the Xaw3d library to give you a Win95 like interface and it
> is named Xaw95. You can replace your Xaw3d library.
Oh God, this is so disgusting!
-- seen on c.o.l.development.apps, about the "Win95 look-alike"
%
Besides, its really not worthwhile to use more than two times your physical
ram in swap (except in a select few situations). The performance of the system
becomes so abysmal you'd rather heat pins under your toenails while reciting
Windows95 source code and staring at porn flicks of Bob Dole than actually try
to type something.
-- seen on c.o.l.development.system, about the size of the swap space
%
> I get the following error messages at bootup, could anyone tell me
> what they mean?
> fcntl_setlk() called by process 51 (lpd) with broken flock() emulation
They mean that you have not read the documentation when upgrading the
kernel.
-- seen on c.o.l.misc
%
Only wimps use tape backup: _real_ men just upload their important stuff
on ftp, and let the rest of the world mirror it ;)
-- Linus Torvalds, about his failing hard drive on linux.cs.helsinki.fi
%
One of the things that hamper Linux's climb to world domination is the
shortage of bad Computer Role Playing Games, or CRaPGs. No operating system
can be considered respectable without one.
-- Brian O'Donnell, odonnllb@tcd.ie
%
The game, anoraks.2.0.0.tgz, will be available from sunsite until somebody
responsible notices it and deletes it, and shortly from
ftp.mee.tcd.ie/pub/Brian, though they don't know that yet.
-- Brian O'Donnell, odonnllb@tcd.ie
%
'Ooohh.. "FreeBSD is faster over loopback, when compared to Linux
over the wire". Film at 11.'
-- Linus Torvalds
%
Q: Would you like to see the WINE list?
A: What's on it, anything expensive?
Q: No, just Solitaire and MineSweeper for now, but the WINE is free.
-- Kevin M. Bealer, about the WINdows Emulator
%
So in the future, one 'client' at a time or you'll be spending CPU time with
lots of little 'child processes'.
-- Kevin M. Bealer, commenting on the private life of a Linux nerd
%
By the way, I can hardly feel sorry for you... All last night I had to listen
to her tears, so great they were redirected to a stream. What? Of _course_
you didn't know. You and your little group no longer have any permissions
around here. She changed her .lock files, too.
-- Kevin M. Bealer, commenting on the private life of a Linux nerd
%
We should start referring to processes which run in the background by their
correct technical name... paenguins.
-- Kevin M. Bealer, commenting on the penguin Linux logo
%
We can use symlinks of course... syslogd would be a symlink to syslogp and
ftpd and ircd would be linked to ftpp and ircp... and of course the
point-to-point protocal paenguin.
-- Kevin M. Bealer, commenting on the penguin Linux logo
%
This is a logical analogy too... anyone who's been around, knows the world is
run by paenguins. Always a paenguin behind the curtain, really getting things
done. And paenguins in politics--who can deny it?
-- Kevin M. Bealer, commenting on the penguin Linux logo
%
Linux: Where Don't We Want To Go Today?
-- Submitted by Pancrazio De Mauro, paraphrasing some well-known sales talk
%
The most important design issue... is the fact that Linux is supposed to
be fun...
-- Linus Torvalds at the First Dutch International Symposium on Linux
%
In short, at least give the penguin a fair viewing. If you still don't
like it, that's ok: that's why I'm boss. I simply know better than you do.
-- Linus "what, me arrogant?" Torvalds, on c.o.l.advocacy
%
<SomeLamer> what's the difference between chattr and chmod?
<SomeGuru> SomeLamer: man chattr > 1; man chmod > 2; diff -u 1 2 | less
-- Seen on #linux on irc
%
The linuX Files -- The Source is Out There.
-- Sent in by Craig S. Bell, goat@aracnet.com
%
"... being a Linux user is sort of like living in a house inhabited
by a large family of carpenters and architects. Every morning when
you wake up, the house is a little different. Maybe there is a new
turret, or some walls have moved. Or perhaps someone has temporarily
removed the floor under your bed." - Unix for Dummies, 2nd Edition
-- found in the .sig of Rob Riggs, rriggs@tesser.com
%
C is quirky, flawed, and an enormous success
-- Dennis M. Ritchie
%
If Bill Gates is the Devil then Linus Torvalds must be the Messiah.
-- Unknown source
%
Vini, vidi, Linux!
-- Unknown source
%
Checking host system type...
i586-unknown-linux
configure: error: sorry, this is the gnu os, not linux
-- Topic on #Linux
%
It's easy to get on the internet and forget you have a life
-- Topic on #LinuxGER
%
To kick or not to kick...
-- Somewhere on IRC, inspired by Shakespeare
%
Linux - Where do you want to fly today?
-- Unknown source
%
The easiest way to get the root password is to become system admin.
-- Unknown source
%
The good thing about standards is that there are so many to choose from.
-- Andrew S. Tanenbaum
%
The primary difference [...] is that the Java programm will reliably and
obviously crash, whereas the C Program will do something obscure
-- Java Language Tutorial
%
LOAD "LINUX",8,1
-- Topic on #LinuxGER
%
Old MacLinus had a stack/l-i-n-u-x/and on this stack he had a trace/l-i-n-u-x
with an Oops-Oops here and an Oops-Oops there
here an Oops, there an Oops, everywhere an Oops-Oops.
-- tjimenez@site.gmu.edu, linux.dev.kernel
%
Also another major deciding factor is availability of source code.
It just gives everybody a warm fuzzy feeling knowing that there is
source code available to the product you are using. It allows everybody
to improve on the product and fix bugs etc. sooner that the author(s)
would get the time/chance to.
-- Atif Khan
%
> Also another major deciding factor is availability of source code.
> It just gives everybody a warm fuzzy feeling knowing that there is
> source code available to the product you are using. It allows everybody
> to improve on the product and fix bugs etc. sooner that the author(s)
> would get the time/chance to.
I think this is one the really BIG reasons for the snowball/onslaught
of Linux and the wealth of stuff available that gets enhanced faster
than the real vendors can keep up.
-- Norman
%
Not only Guinness - Linux is good for you, too.
-- Banzai on IRC
%
> NE-2000 clone. Pentium optimizing gcc (pentium gcc pl8 I think).
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Build a kernel with the proper gcc. Reports with a non standard compiler
are useless.
-- Alan Cox
%
BTW: I have a better name for the software .... Microsoft Internet
Exploder.
-- George Bonser <grep@cris.com>
%
Well, since MS cant be sure of the username of someone downloading
things, they are going to play it safe and have everything dowloaded
and executed by Explorer as suid root. That way, it will run on ANY
system anywhere. :)
-- George Bonser <grep@cris.com>
%
If you really want pure ASCII, save it as text... or browse
it with your favorite browser...
-- Alexandre Maret <amaret@infomaniak.ch>
%
Sorry for mailing this article, I've obviously made a typo (168!=186)
that's the price for being up all night and doing some "quick"
checks before you go to bed ....
-- Herbert Rosmanith <herp@wildsau.idv.uni-linz.ac.at>
%
Just to remind everyone. Today, Sept 17, is Linux's 5th birthday. So
happy birthday to all on the list. Thanks go out to Linus and all the
other hard-working maintainers for 5 wonderful fast paced years!
-- William E. Roadcap <roadcapw@cfw.com>
%
Exporting beer from Finnland doesn't seem to be that much of a hassle,
as the Lenigrad Cowboys brought a lot of their brew to the concerts in
Austria.
-- Otmar Lendl <lendl@cosy.sbg.ac.at>
%
Beeping is cute, if you are in the office ;)
-- Alan Cox
%
> Where in the US is Linus?
He was in the "Promise Land".
-- David S. Miller <davem@caip.rutgers.edu>
%
> Yeah, Linus is in the US.
>
> His source trees are in Finland.
OK, someone give him access -fast- ...... ;-)
-- babydr@nwrain.net, because of problems with the kernel
%
Subject: Linux box finds it hard to wake up in the morning
I've heard of dogs being like their owners, but Linux boxen?
-- Peter Hunter <peter.hunter@blackfriars.oxford.ac.uk>
%
Win 95 is simplified for the user:
User: What does this configuration thing do?
You: It allows you to modify you settings, for networking,
hardware, protocols, ...
User: Whoa! Layman's terms, please!
You: It changes stuff.
User: That's what I'm looking for! What can it change?
You: This part change IP forwarding. It allows ...
User: Simplify, simplify! What can it do for ME?
You: Nothing, until you understand it.
User: Well it makes me uncomfortable. It looks so technical;
Get rid of it, I want a system *I* can understand.
You: But...
User: Hey, who's system is this anyway?
You: (... rm this, rm that, rm /etc/* ...) "All done."
-- Kevin M. Bealer <kmb203@psu.edu>
%
*** PUBLIC flooding detected from erikyyy
<lewnie> THAT's an erik, pholx.... ;)
-- Seen on #LinuxGER
%
I've no idea when Linus is going to release 2.0.24, but if he takes
too long Im going to release a 2.0.24unoff and he can sound off all
he likes.
-- Alan Cox
%
All the existing 2.0.x kernels are to buggy for 2.1.x to be the
main goal.
-- Alan Cox
%
Computers are useless. They can only give you answers.
-- Pablo Picasso
%
martin@bdsi.com (no longer valid - where are you now, Martin?)
-- from /usr/src/linux/drivers/cdrom/mcd.c
%
[...] or some clown changed the chips on a board and not its name.
(Don't laugh! Look at the SMC etherpower for that.)
-- from /usr/src/linux/MAINTAINERS
%
REST:
P: Linus Torvalds
S: Buried alive in email
-- from /usr/src/linux/MAINTAINERS
%
Why use Windows when you can have air conditioning?
Why use Windows, when you can leave through the door?
-- Konrad Blum
%
Netscape is not a newsreader, and probably never shall be.
-- Tom Christiansen
%
I think it's time to remove Qt and Qt-derived applications from the distributon.
By distributing it, we only encourage authors to create restrictive licenses.
-- Bruce Perens
%
If someone can point me to a good and _FREE_ backup software that keeps
track of which files get stored on which tape, we can change to it.
-- Mike Neuffer, admin of i-Connect Corp.
%
Whoa, first contact!
[...]