File: lg_mail69.html

package info (click to toggle)
lg-issue69 2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,996 kB
  • ctags: 141
  • sloc: perl: 131; sh: 59; sql: 49; makefile: 45
file content (1237 lines) | stat: -rw-r--r-- 45,987 bytes parent folder | download
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
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
<!--startcut ======================================================= -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<META NAME="generator" CONTENT="lgazmail v1.3E.y">
<TITLE>Linux Gazette Mailbag LG #69</TITLE></HEAD><BODY BGCOLOR="#FFFFFF" TEXT="#000000"
	LINK="#3366FF" VLINK="#A000A0">
<!-- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<P> <hr>
<CENTER>
<!-- *** BEGIN navbar *** -->
<IMG ALT="" SRC="../gx/navbar/left.jpg" WIDTH="14" HEIGHT="45" BORDER="0" ALIGN="bottom"><A HREF="index.html"><IMG ALT="[ Table of Contents ]" SRC="../gx/navbar/toc.jpg" WIDTH="220" HEIGHT="45" BORDER="0" ALIGN="bottom" ></A><A HREF="../index.html"><IMG ALT="[ Front Page ]" SRC="../gx/navbar/frontpage.jpg" WIDTH="137" HEIGHT="45" BORDER="0" ALIGN="bottom"></A><A HREF="../faq/index.html"><IMG ALT="[ FAQ ]" SRC="./../gx/navbar/faq.jpg"WIDTH="62" HEIGHT="45" BORDER="0" ALIGN="bottom"></A><A HREF="lg_bytes69.html"><IMG ALT="[ Next ]" SRC="../gx/navbar/next.jpg" WIDTH="15" HEIGHT="45" BORDER="0" ALIGN="bottom"  ></A><IMG ALT="" SRC="../gx/navbar/right.jpg" WIDTH="15" HEIGHT="45" ALIGN="bottom">
<!-- *** END navbar *** -->
</CENTER>
</p>
<P> <hr> <P>
<!-- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<P>
</p>
<!-- HELP WANTED : Article Ideas SECTION ================================  -->
<!--  endcut ======================================================= -->
<center>
<H1><A NAME="wanted"><IMG ALIGN=MIDDLE ALT="" SRC="../gx/mailbox.gif">
The Mailbag</A></H1> <BR>
<!-- BEGIN wanted -->

</center>
<P> <hr> <P>
<!-- =================================================================== -->
<center><H3><font color="maroon">HELP WANTED : Article Ideas</font></H3></center>
<P>
<P> Send tech-support questions, answers and article ideas to The Answer Gang
&lt;<A HREF="mailto:linux-questions-only@ssc.com"
	>linux-questions-only@ssc.com</A>&gt;.  Other mail (including
questions or comments about the <EM>Gazette</EM> itself) should go to
&lt;<A HREF="mailto:gazette@ssc.com">gazette@ssc.com</A>&gt;.  All material
sent to either of these addresses will be considered for publication in the
next issue.  <EM>Please send answers to the original querent too, so that s/he
can get the answer without waiting for the next issue.</EM>

<P> Unanswered questions might appear here.  Questions with
answers--or answers only--appear in The Answer Gang, 2-Cent Tips, or here,
depending on their content.  There is no guarantee that questions will
<em>ever</em> be answered, especially if not related to Linux.

<P> <STRONG>Before asking a question, please check the
<A HREF=../faq/index.html><I>Linux Gazette</I> FAQ</A> to see if it has been
answered there.</STRONG>

<P> <HR> <P>
<!--====================================================================-->

<!-- BEGIN HELP WANTED : Article Ideas -->

<UL>
<!-- index_text begins -->
<li><A HREF="#wanted/1"
	><strong>Compact Flash Card</strong></a>
<li><A HREF="#wanted/2"
	><strong>Booting x86 from flash using initrd as root device</strong></a>
<!-- index_text ends -->
</UL>
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="wanted/1"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">Compact Flash Card</FONT></H3>
Wed, 20 Jun 2001 12:20:27 +0800
<BR>Kamal (<a href="mailto:linux-questions-only@ssc.com?cc=kamal@eutech.slt.lk">kamal from eutech.slt.lk</a>)

<P>
I have a problem in adding a new file system in to a device called
mediaEngine. It is a product of brightstareng.com
There is slot for a Compact Flash. I bought a compact flash and added
it, but thenit does not recognise the card. it says there isan i/o
error. the mke2fs does not work properly. I am not able to mount even.
</P>
<P>
pleaese help me regarding this.
</P>
<P>
thanking you inadvance
</P>
<P>
kamalakanth
</P>

<!-- end 1 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="wanted/2"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">Booting x86 from flash using initrd as root device</FONT></H3>
Mon, 09 Jul 2001 18:50:25 +0530
<BR>S. Manohar (<a href="mailto:linux-questions-only@ssc.com?cc=manohar@hclt.com">manohar from hclt.com</a>)

<P>
Hello Everybody,
</P>
<P>
I am trying to develop a x86 target which boots from Flash. I have
taken the BLOB bootloader  (taken from LART
project based on ARM processor.)  and  am modifying it for X86. So far I
am able to get the Linux kernel booted. But when it
comes to the mounting of rootfile system I am stuck. ( The blob
downloads the kernel image and initrd image  into RAM from
Flash/through serial line).
</P>
<P>
1. I am getting the compressed  kernel image  in RAM at 0x100000 through
serial line.
</P>
<P>
2. I am getting the compressed ramdisk  image(initrd)  in RAM at
0x400000 through serial line.
</P>
<P>
3. The kernel gets uncompressed and boots correctly till the point of
displaying the message
</P>
<P>
RAMDISK: Compressed image found at block 0.
and then hangs.
</P>
<P>
4. After debugging I have found that control comes till gunzip function
inlinux/lib/inflate.c  but never comes out of the function.
</P>
<P>
5. The parameters I have set at the begining of setup_arch function in
linux/arch/i386/kernel/setup.c are as follows
</P>

<blockquote><pre>         ORIG_ROOT_DEV = 0x0100
         RAMDISK_FLAGS = 0x4000
         INITRD_START = 0x400000
         INITRD_SIZE =  0xd4800    (size of compressed  ram disk image)
         LOADER_TYPE = 1
</pre></blockquote>
<P>
Has anyone faced such problem before?  If so what needs to be done?
</P>
<P>
Are the values for the  parameters mentioned above correct? Are they the
only information to be mentioned to the kernel for
locating and uncompressing the RAMDISK image and make it boot?
</P>
<P>
Is there any bootloader readily available for x86 platform for booting
from Flash also with serial downloading facility?
</P>
<P>
Please help
</P>
<P>
With Kind Regards,
<br>manohar
</P>

<!-- end 2 -->
<P> <hr> </p>
<!-- *** BEGIN copyright *** -->
<H5 align="center">This page edited and maintained by the Editors
	of <I>Linux Gazette</I> 
<a href="http://www.linuxgazette.com/copying.html"
	>Copyright &copy;</a> 2001
<BR>Published in issue 69 of <I>Linux Gazette</I> August 2001</H5>
<H6 ALIGN="center">HTML script maintained by
	<A HREF="mailto:star@starshine.org">Heather Stern</a> of
	Starshine Technical Services,
	<A HREF="http://www.starshine.org/">http://www.starshine.org/</A> 
</H6>
<!-- *** END copyright *** -->
<!--startcut ======================================================= -->

</BODY></HTML>
<!--endcut ========================================================= -->
<a name="mailbag"></a>
<P> <hr> <P>
<!-- =================================================================== -->
<center><H3><font color="maroon">GENERAL MAIL</font></H3></center>
<P> <HR> <P>
<!--====================================================================-->

<!-- BEGIN GENERAL MAIL -->

<UL>
<!-- index_text begins -->
<li><A HREF="#mailbag/1"
	><strong>KEEP UP THE GOOD WORK !!!!</strong></a>
<li><A HREF="#mailbag/2"
	><strong>not happy</strong></a>
<li><A HREF="#mailbag/3"
	><strong>Blinking Icons</strong></a>
<li><A HREF="#mailbag/4"
	><strong>question</strong></a>
<li><A HREF="#mailbag/5"
	><strong>"Those were the days"</strong></a>
<li><A HREF="#mailbag/6"
	><strong>RE: Linux Gazette Kernel Compile Article.</strong></a>
<li><A HREF="#mailbag/7"
	><strong>Parrallel processing</strong></a>
<li><A HREF="#mailbag/8"
	><strong>response to: Yet Another Helpful Email</strong></a>
<li><A HREF="#mailbag/9"
	><strong>anser guy</strong></a>
<!-- index_text ends -->
</UL>
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/1"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">KEEP UP THE GOOD WORK !!!!</FONT></H3>
Mon, 9 Jul 2001 09:53:21 -0700
<BR>badjooda (<a href="mailto:gazette@ssc.com">badjooda from yahoo.com</a>)

<P><STRONG>
Remember when you said :
</STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM><BLOCKQuote>
WinPrinter Work-around
From harmbehrens on Sat, 01 May 1999
</BLOCKQuote></EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#006633"><EM>
Hello, is there any work-around to get a gdi printer (Star Wintype 4000) to
work with Linux :-?
</EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#006633"><EM>
Harm
</EM></FONT></STRONG></P>
<P><CODE>
. . .
</CODE></P>
<P><STRONG><FONT COLOR="#000066"><EM>
I presume that these are NOT what you wanted to hear. However, there is no
way that I know of to support a Winprinter without running drivers that are
native to MS Windows (and its GDI --- graphics device interface --- APIs).
</EM></FONT></STRONG></P>
<P>
What about using one of the Windows emulators like <A HREF="http://www.winehq.com/">WINE</A>
(<A HREF="http://www.winehq.org"
	>http://www.winehq.org</A>) ? -- Mike
</P>
<P>
Actually, a very few GDI- aka "winprinters" are supported - some Lexmarks.
I saw them first as debian packages but I'm pretty sure Linuxprinting.org
has more details.  The notes said that rumor has it some other GDI printers
work with those, but it's a bit of effort and luck.  Rather like winmodems...
-- Heather
</P>
<P><STRONG>
I Agree 100% about the GDI printers!  (I refer to them as Goll Damn M$
Imitators).  Unfortunately, until the recent developments on the federal
court case M$ has not been checked at all.  Some parts of what they, as
a Monopoly have done has been good for the IT commmunity, while other
things have really crapped on people WHO THINK!
</STRONG></P>
<P><STRONG>
Thank GOD !!!!!  Linux is around to be a thorn in their side ...
</STRONG></P>
<P><STRONG>
THe other incidious thing printer manufacs have done is stop building
as many Postscript printers.  They are all using the friggin Windows
drivers to do everything ...  .  So I have begun to play the stinkin game
by mounting SMALL 468-DX266 16 Megs Linux Print Servers running SAMBA.
THe newest ver of SAMBA even does PDC correctly.
</STRONG></P>
<P><STRONG>
Linux has been my savior in many times of need!  I have been able to
use thos stinking 386 boat anchors as LRP routers or firewalls, the
small 90 Pent to 166 Pent are becoming LTSP Linux Xwindow Terminals.  I
still have stinking  problems from time to time, yet I DON'T HAVE TO
REBOOT EVERY 24 [&amp;^%$!#]* days PER TECHNET(M$ answer to internal
pay support) FOR NT SERVERS!  I have Linux servers with uptimes of 200 +
days IN PRODUCTION!
</STRONG></P>
<P><STRONG>
I'll sign off , enough rambling and ranting for one email.  I just
found your stuff through linuxdoc.org, and I thought you HIT THE NAIL ON
THE HEAD!
</STRONG></P>
<P><STRONG>
KEEP UP THE GOOD WORK!
</STRONG></P>
<P>
The real question is, is it worth spending 50 bucks instead of 200 or more,
when you're going to spend a bunch of time making sure your driver is wired
up right?   I have an unfair advantage, since I live where these things are
sold readily, but I get to say no ... I can spend about 80 bucks on a color
printer which is actually listed as fully supported.
</P>
<P>
You may be able to mail order a good printer at a decent price.  On the other
hand, if exploring how these things all tie together under the hood is fun,
then you can improve the state of the art for such printers, and maybe some
fine day folks will be able to easily use "the GDI printer that came with
their MS windows" without having to fight with it like this.
</P>
<P>
-- Heather
</P>

<!-- end 1 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/2"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">not happy</FONT></H3>
Thu, 5 Jul 2001 09:08:47 -0700
<BR>32009318 (<a href="mailto:gazette@ssc.com">32009318 from snetmp.cpg.com.au</a>)


<!-- sig -->

<P>
On Wed, Jul 04, 2001 at 09:26:35PM +1000, 32009318 wrote:
</P>
<P><STRONG>
i know how annoyed you guys at the linux gazette must feel as i have
been reading many back issues of the gazette and finding lots of cool
tips and trick but the question always comes up
</STRONG></P>
<P><STRONG>
CAN YOU SOLVE WINDOWS PROBLEMS
people just dont get it youre called the linux gazette and you help with
linux questions
</STRONG></P>
<P>
Unfortunately, we also have no idea where they find the reference to us that
gives them the impression we do anything in Windows... more's the pity, since
we can't beg the webmaster to take the link down.
</P>
<P>
They can certainly trip on us in search engines though, especially the worse
ones.  I can imagine someone frustrated with some Windows networking matter
tripping over our many notes about Samba, since the point is to link up to
some MSwin boxes... -- Heather
</P>
<P><STRONG>
(you do it very well i should add)
</STRONG></P>
<P>
Oh thank you, we like to hear that! -- Heather
</P>
<P>
The problem is, most people who ask Windows questions found the submission
address via a search engine, and have no idea the address belongs to Linux
Gazette or even know what Linux Gazette is.  Perhaps we should have used
an address like linux-questions-only, but we can't stop honoring the old
addresses since they are published in so many back issues and some are on
CD-ROMs that we can't change. -- Mike
</P>
<P><STRONG>
You should clearley state this in youre next issue or be humorous and
rename yourself The Not Windows Gazette
</STRONG></P>
<P>
<IMG SRC="../gx/dennis/smily.gif" ALT=":)" 
		height="24" width="20" align="middle"> They're not the only odd ones out - we've had IRIX, PC-MOS, and other
odd OS users crop up before too.
</P>
<P>
<FONT COLOR="purple">
[Ben] Even had someone trying to get root access to their rhubarb, recently...
</FONT>
</P>
<P>
Funny you should mention a name change though.  We <EM>have</EM> changed the name
of the Answer Gang mailing list to "<A HREF="mailto:linux-questions-only@ssc.com"
	>linux-questions-only@ssc.com</A>"  -- Heather
</P>
<P>
Many TAG threads have humorous comments and/or rants about off-topic
questions.  Heather also tries to guide people in her "Greetings from
Heather Stern" blurb about how to ask a good question and how not to ask
a bad question.  Finally, I have started making fun of off-topic questions
on the Back Page of the past few issues.  There's now a section on the
Back Page called "Not The Answer Gang", as well as "Wackiest Topic of the
Month".  -- Mike
</P>
<P><STRONG>
keep up the good work with linux
</STRONG></P>
<P>
Thanks bunches, we're glad you enjoy the read!  -- Heather
</P>

<!-- end 2 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/3"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">Blinking Icons</FONT></H3>
Wed, 18 Jul 2001 14:13:14 -0400
<BR>David Martinez (<a href="mailto:gazette@ssc.com">d_martinez7 from hotmail.com</a>)


<!-- sig -->

<P><STRONG>
I love reading LG every month, especially TAG, and 2cent tips.  But the new
blinking question and exclamation icons are somwhat annoying.  Any chance of
going back to the old ones? 
<IMG SRC="../gx/dennis/smily.gif" ALT=":)" 
		height="24" width="20" align="middle">
</STRONG></P>
<P><STRONG>
thanks for all the good work!
</STRONG></P>
<P>
blinking?  They're not supposed to blink.  In fact, if they are it's been
that way for <EM>YEARS</EM> ... since I first provided .gif files with the ! and ?
in them in blue, instead of with those stupid "!" and "?" that nobody could
read.
</P>
<P>
It would mean I accidentally had layers in them.  But there's no loop command,
so even if you see that briefly it should stop.  Is that what you are seeing,
or does it continue to blink?  Did you change browsers at all recently?  If
so to which one?
</P>
<P>
We have been trying to improve browser compatability lately anyway 
<IMG SRC="../gx/dennis/smily.gif" ALT=":)" 
		height="24" width="20" align="middle"> Thanks
for bringing it up.
</P>
<P>
[ turning to my fellow editor ] Mike, did anybody run any scripts against the
graphic images recently that I need to know about?
</P>
<P>
-- Heather
</P>
<P>
No, we haven't changed those images.  I've threatened to change all .gif's
to .png or .jpg and change all the links, but haven't done it yet.  I've only
used blinking text once or twice and that wasn't in the TAG column.
</P>
<P>
Also, LG is probably the only site in the world that requires NON-ANIMATED
logo images from its sponsors.  Because I personally have a strong
intolerance for unnecessary animations.
</P>
<P>
-- Mike
</P>
<P>
The "blinking Icons" are actually three layer gifs with one backround (white
bubble) and 0ms display time and two layers (question mark and shadow) with
100ms display time in combine mode (will be overlayed over the previous one).
</P>
<P>
opera5.0/Linux displays them on a strange blue background (seems to have a
gif problem, also with other gifs not only these little ones).
</P>
<P>
If you want a scriptable tool (besides gimp) there is a program called
pngquant which can do the color (and size) reduction on png files which
convert will not do.
</P>
<P>
-- K.-H.
</P>
<P><DL><DT>
Mike didn't find the utility in <A HREF="http://www.debian.org/">Debian</A> but its homepage is:
<DD><A HREF="http://www.libpng.org/pub/png/apps/pngquant.html"
	>http://www.libpng.org/pub/png/apps/pngquant.html</A>
</DL></P>
<P>
-- Heather
</P>

<!-- end 3 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/4"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">question</FONT></H3>
Tue, 3 Jul 2001 19:16:24 EDT
<BR>Mattybiz (<a href="mailto:gazette@ssc.com">Mattybiz from aol.com</a>)

<P><STRONG>
Everyone I know is having the same problem. Not only is the Telnet completely
outdated, but it simply does not work for people off campus in most
areas...
</STRONG></P>
<P>
Hint: putty, one of the ssh clients for Windows that we keep pushing, is also
a better "normal telnet" client for Windows. -- Heather
</P>
<P><STRONG><FONT COLOR="#000066"><EM>
And last weekend I discovered that the public library in Halifax, Nova Scotia,
has putty as the <EM>default</EM> terminal emulator on their public Windows
terminals!!!  Way to go, library!  And switching between telnet and ssh in
putty is easy: just choose one radio button or the other.
</EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
Unkudos to the Second Cup cybercafe in Halifax.  The Start menu has a
special item for Telnet but when you choose it, you get a dialog saying,
"this operation is prohibited by the system administrator".  -- Mike
</EM></FONT></STRONG></P>
<P><STRONG>
you call yourself the "answer guy" and all you know how to be is a
sarcastic little bastard..
</STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
If you saw the hundreds of messages we receive every month and the high
percentage of them that are questions totally outside our scope, you
might become a sarcastic little bastard too.  -- Mike
</EM></FONT></STRONG></P>
<ol>
<li> He didn't call himself The Answer Guy -- that's what Marjorie named the
column, and the title clung to him.  It's an okay title but there could
be better ones - none of which stuck long enough to be worth changing the
column title.

<li> It's a whole bunch of people now - has been for months - so it's The
Answer Gang.  Which member of the Gang are you whining about? 
<IMG SRC="../gx/dennis/smily.gif" ALT=":)" 
		height="24" width="20" align="middle">

<br>
I'll assume Jim Dennis, for the moment.


<li>"all he knows how to be is..." - yeah, that's why he has a well paying
job in the Silicon Valley, and a published book (from a normal publishing
house, so yes, it's been spell checked), and speaking engagements at
conferenees.  Because he doesn't know anything.
</ol>
<P>
We all have our good days, and our sarcastic days, and the point of our
column is that we're real people, answering in just the same way we would
if you asked us at the mall while we were buying a box of the latest
Linux distro.
</P>
<P>
A particular thing to note is very few of us are Windows people.  Most of
us not at all - and others have had bad real-life experiences with the OS
you presently favor.  So not everyone will be cheer and light towards things
we consider to be poor sysadmin practices.  Especially things which would
be poor sysadmin practices even in an all Microsoft corporate netcenter.
</P>
<P>
At least two of us have enough WIndows experience to attempt answers in
that direction -- but this is the LINUX Gazette.  If your questions are
not about LINUX at least partially, then we really didn't want to hear
from you... so you should be glad you got any answer at all...
</P>
<P>
... and curiously enough, some Windows people have gotten real answers
for themselves in Linux documents once we point them the right way.
</P>
<P>
The practice of running an open service needs more care than just "clicking
Yes" on the NT service daemon, and some of these services only make sense
in a locked up environment.
</P>
<P>
Many but not all of The Answer Gang feel that telnet is now one such service.
By mailing us you ask our opinion, and that opinion is real, so we say it.
You do not have to like our opinions.  We don't have to like yours.  We
can still share computing power.
</P>
<P align="center">
<em>A free society is one where it is safe to be unpopular.</em>
</P>
<P><STRONG>
you make yourself seem very unintelligent to me and
have you ever heard of "If you can't say anything nice.don't say it at all?"
</STRONG></P>
<P>
As if calling us a bastard is nice, yet you bothered to say <EM>that</EM>.  You know
absolutely nothing of the parentage of any member of this group unless you
read our Bios (<A HREF="../issue67/tag/bios.html"
	>http://www.linuxgazette.com/issue67/tag/bios.html</A>) ...
</P>
<P>
... and we know that you have not because you only speak to one person.
</P>
<P>
Parentage (or lack of one) doesn't necessarily lead to being technologically
clued, but having technical or scientifically inclined parents seems to help.
</P>
<P><STRONG>
Apparently not. The question Nellie asked was a valid one. Too bad she does
now all the mumbo jumbo computer jargon...maybe the next time you should self
proclaim yourself as the "Smart-ass Guy" instead.
Miriam Brown
</STRONG></P>
<P>
I believe "curmudgeon" is the term you're looking for, and yes, Jim Dennis
labels himself to be one.  Proudly.
</P>
<P>
Interestingly, a querent this month has asked where to read up on the techy
mumbo jumbo words so they can learn more about Linux and speak more freely
with their geeky friends.  Our answers to that will actually be useful to
many readers.
</P>
<P>
Poor english is tolerated to a fair degree on the querent's side.
(that is, if we can't figure out what querents are saying, it's hard to
even <EM>try</EM> to answer them).  Each Answerer's personal style is mostly
kept - so some are cheerful, some are grumpy.
</P>
<P><STRONG>
PS...Don't answer guys usually use spell check?
</STRONG></P>
<P>
It is not required to know how to use a spell checker, in order to know how
to rebuild a kernel.  You have delusions of us being some glossy print
magazine like <EM>Linux Journal</EM>.  (ps.  Our host, SSC publishes that.  It
does get spell checked and all those nice things.  Go subscribe to it if
you like.  End of cheap plug.)
</P>
<P>
Nobody here is paid a dime for working on the <EM>Gazette</EM> specifically, so
our editorial time is better spent on link checking and finding correct
answers... er, well, we try... than spellos.  We have occasionally had
people complain about this point very clearly and loudly, but there is
not room in the publishing schedule for them to squish themselves in
between and still meet deadline.  We suggested that they make their own
site carry the past issue after fixes (our copyright allows this) but
the people have then always backed down and gone away.  We'd almost
certainly merge their repairs if they made some, but nobody has taken
up on that offer yet.  Oh well.  Let us know if you want to start the
Excellent Speller's Site - we'll cheer for you.  Maybe some other docs
in the <A HREF="http://www.linuxdoc.org/">Linux Documentation Project</A> (LDP) could stand a typo scrub too.
</P>
<P>
Oddly, many people read <EM>LG</EM> religiously because it's written in 
person to
person mode and doesn't spray gloss all over the articles and columns that
way.   You will get ecstatic excitement at successes and growling at bad
ways to do things and every emotion in between.
</P>
<P>
No, many of the querents don't spell check either, but we still answer
<EM>them</EM>.
</P>
<P>
I hope you enjoyed your time flaming, but we have people asking questions
about Linux to get back to.
</P>

<!-- end 4 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/5"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">"Those were the days"</FONT></H3>
Wed, 11 Jul 2001 14:20:42 -0500
<BR>Pete Nelson (<a href="mailto:gazette@ssc.com">pete.nelson from serversolved.com</a>)

<P>
I have this dream of contributing something wonderfully useful to the
Gazette, but it ain't going to happen today. . .
</P>
<P>
No, I noticed the ravings on The Back Page of issue 67, and had to send
you the lyrics of "Those were the days":
</P>
<h4>For the way Glen Miller Played</h4>
<p>. . .
<br>(It looks like the rest was pretty good up til the last verse)
<br> . . .
<br>Didn't need no welfare state
<br>Everybody pulled his weight
<br>Gee, our old LaSalle ran great 
<br>Those were the days.
</P>
<P>
But better yet, is the Simpsonized version --
</P>
<P>
For the way the BeeGees played
<br>Films that John Travolta made
<br>Guessing how much Elvis weighed
<br>Those were the days
</P>
<P>
And you knew where you were then
<br>watching shows like Gentile Ben
<br>Mister we could use a man like Sheriff Lobo again
</P>
<P>
Disco Duck and Fleetwood Mac
<br>Coming out of my eight-track
<br>Micheal Jackson still was black,
<br>Those were the days
</P>
<P>
Maybe next time I write in, I'll have something more useful.
</P>
<P>
--
Pete Nelson
</P>
<p><em>Thanks, Pete, glad we could amuse.  I think we need a linux version,
or maybe a BSD one... -- Heather</em></p>

<!-- end 5 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/6"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">RE: Linux Gazette Kernel Compile Article.</FONT></H3>
Wed, 1 Jan 1997 00:06:40 +0200
<BR>Zwane Mwaikambo (<a href="mailto:gazette@ssc.com">zwane from linux.realnet.co.sz</a>)


<!-- sig -->

<P>
Hi,
</P>
<P>
First i must commend you on providing a service to all the Linux users
out there trying to get started on rolling their own kernel. I would just
like to point out a few things i found somewhat confusing about your
article.
</P>
<P>
You compiled in "math emulation" support even though you have a CPU with a
built in maths co-processor, in this case the math emulation will never be
used and essentially wastes memory. secondly, you selected SMP support for
your uniprocessor (UP) system. This on some occasion can cause problems with
specific UP motherboards causing them not to boot or certain kernel modules
not loading, in addition to being slower and taking up more memory than a
non-SMP kernel. Also as you might want to break apart your build procedure
by using double ampersands. i.e. "make dep &amp;&amp; make bzImage &amp;&amp; make modules
&amp;&amp; make modules install ....."
</P>
<P>
That aside, it's great that you're willing to share your experiences and
knowledge with the rest of the Linux community.
</P>
<P>
Regards,
<br>Zwane
</P>

<!-- end 6 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/7"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">Parrallel processing</FONT></H3>
Tue, 3 Jul 2001 12:22:08 -0700
<BR>UCT Student - stvchu001 (<a href="mailto:gazette@ssc.com">stvchu001 from mail.uct.ac.za</a>)

<P><STRONG>
I would like to contact the uuthor of the above article which appeared
in the april 2001 edition of your magazine .
</STRONG></P>
<P>
The author's name in all our articles is a hyperlink to his e-mail
address.  Rahul Joshi's is <A HREF="mailto:jurahul@hotmail.com"
	>jurahul@hotmail.com</A> -- Mike
</P>

<!-- end 7 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/8"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">response to: Yet Another Helpful Email</FONT></H3>
Tue, 10 Jul 2001 17:39:19 -0700
<BR>Bryan Henderson (<a href="mailto:gazette@ssc.com">bryanh from giraffe-data.com </a>)

<P>
I was pleased to see a letter by Benjamin D Smith that compares
learning Windows to learning Unix by drawing a mental graph of the
respective learning curves, because I thought it would set straight
a lot of people who misuse the term "steep learning curve."
</P>
<P>
But then Smith went ahead and misused the term himself, in a way
wholly inconsistent with the picture he drew.
</P>
<P>
To set the record straight, allow me to explain what a learning
curve is, and in particular what a steep one is all about.
</P>
<P>
The learning curve is a graph of productivity versus time.  As time
passes, you learn stuff and your productivity increases (except in
weird cases).
</P>
<P>
Windows has a steep learning curve.  You start out useless, but with
just a little instruction and messing around, you're already writing
and printing documents.  The curve rises quickly.
</P>
<P>
Unix has a very shallow learning curve.  You start out useless, and
after a day of study, you can still do just a little bit.  After
another day, you can do a little bit more.  It may be weeks before
you're as productive as a Windows user is after an hour.
</P>
<P>
Smith's point, to recall, was that the Windows learning curve, while
steep, reaches a saturation point and levels off.  The Unix curve,
on the other hand, keeps rising gradually almost without bound.  In
time, it overtakes the Windows curve.
</P>
<P>
--
Bryan Henderson
</P>

<!-- end 8 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="mailbag/9"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">anser guy</FONT></H3>
Wed, 18 Jul 2001 11:57:36 -0700 (PDT)
<BR>Heather (<a href="mailto:gazette@ssc.com">star from betelgeuse.starshine.org</a>)

<P><STRONG>
Are you still the answer guy, and do you still answer questions? If so, I
have one that's been bugging me for a year now. Just let me know,
</STRONG></P>
<P><STRONG>
Thanks!
</STRONG></P>
<P>
It's an Answer Gang now.  Jim Dennis is still one of us.
</P>
<P>
We answer <EM>some</EM> of the hundred of linux questions we get every month.
Questions which are not about Linux get laughed about, but have a much lower
chance of ever geeteting an answer.  They <EM>might</EM> be answered in a linux
specific way.
</P>
<P>
So if you've a linux question, send it our way 
<IMG SRC="../gx/dennis/smily.gif" ALT=":)" 
		height="24" width="20" align="middle">
</P>

<!-- end 9 -->
<a name="gaz"></a>
<P> <hr> <P>
<!-- =================================================================== -->
<center><H3><font color="maroon">GAZETTE MATTERS</font></H3></center>
<P> <HR> <P>
<!--====================================================================-->

<!-- BEGIN GAZETTE MATTERS -->

<UL>
<!-- index_text begins -->
<li><A HREF="#gaz/1"
	><strong>Mistake</strong></a>
<li><A HREF="#gaz/2"
	><strong>An lgbase question</strong></a>
<li><A HREF="#gaz/3"
	><strong>About which list is which</strong></a>
<li><A HREF="#gaz/5"
	><strong>Re: email distribution of the Gazette?</strong></a>
<!-- index_text ends -->
</UL>
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="gaz/1"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">Mistake</FONT></H3>
Thu, 28 Jun 2001 18:16:59 +0100
<BR>Xavier (<a href="mailto:gazette@ssc.com">Xavier from aemiaif.lip6.fr</a>)

<P>
I just look at your issue 41 (I know that is not really recent ...) but
in the article of Christopher Lopes which is talking about CUP, there is
a mistake...
</P>
<P>
I tested it and I see that it didn't walk correctly for all the cases. In
fact it is necessary to put a greater priority to the operator ' - ' if not,
we have 8-6+9 = -7 because your parsor realizes initially (6+9 = 15) and
after (8-15= -7). To solve this problem it is enough to create a state
between expr and factor which will represent the fact that the
operator - has priority than it +.
</P>
<P>
Cordially.
</P>
<P>
Xavier Prat.
MIAIF2.
</P>
<p>See attached <a href="misc/mailbag/issue41-fix.CUP.txt">misc/mailbag/issue41-fix.CUP.txt</a></p>

<!-- end 1 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="gaz/2"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">An lgbase question</FONT></H3>
Mon, 2 Jul 2001 12:10:20 -0500
<BR>Chris Gianakopoulos (<a href="mailto:gazette@ssc.com">pilolla from gateway.net</a>)

<P><STRONG>
I want to install all of the newest Linux Gazette issues on one of our
Linux machines at work.  Sounds easy enough.
</STRONG></P>
<P><STRONG>
Consider that I have approximately 12 month's worth of Linux Gazette
issues AND each lgbase that I download with each issue.  Is the lgbase
file cumulative?  In other words, can I install the latest and greatest
lgbase, and then install (you know -- copy them to the LDP/LG directory
tree) all of the Linux Gazette issues.
</STRONG></P>
<P>
Yes.  There's only one lg-base.tar.gz, which contains shared files for all
the issues.  So you always want the latest lg-base.tar.gz.
</P>
<P>
However, once you've installed it, you don't have to download it again
every month.  Instead, you can download the much smaller lg-base-new.tar.gz,
which contains only the files that are new or changed since the previous
issue.  But if you miss a month, you'll need to download the full
lg-base.tar.gz again to get all the accumulated changes.
</P>
<P>
Always untar lg-*.tar.gz files in the same directory each month.  They will
unpack into a subdirectory lg/ with everything in the correct location.
</P>
<P><STRONG>
Thanks Mike,
</STRONG></P>
<P><STRONG>
You've saved me a lot of time.  The system (<A HREF="http://www.suse.com/">SuSE</A> 7.0 distribution) had an
up-to-date base up until March last year. Your answer saved me lots of
untarring operations.  And yes, I do put the stuff in the same directory
each month on my home system.
</STRONG></P>
<P><STRONG>
Thanks for our fine magazine, and again keep up the good work (all of
you),
</STRONG></P>
<P><STRONG>
Chris G.
</STRONG></P>

<!-- end 2 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="gaz/3"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">About which list is which</FONT></H3>
Mon, 16 Jul 2001 09:52:00 -0700
<BR>Hylton Conacher  (<a href="mailto:gazette@ssc.com">hylton from global.co.za</a>)

<P>
[Resent because Majordomo thought it was a command.  You have to watch that
word  s-u-b-s-c-r-i-b-e near the top of messages. -- Mike]
</P>
<P>
----- Forwarded ------
</P>
<P><STRONG>
Hi Heather,
</STRONG></P>
<P><STRONG>
Sorry, just another dumb newbie question. I have recently signed up to
the tag-admin list but not the tag list. I want  to be subbed to the Tag
list and as a result I have just tried to subscribe to tag by sending
the following to <A HREF="mailto:majordomo@ssc.com"
	>majordomo@ssc.com</A>:
</STRONG></P>
<P><STRONG><BLOCKQuote>
subscribe tag <A HREF="mailto:hylton@global.co.za"
	>hylton@global.co.za</A>
</BLOCKQuote></STRONG></P>
<P>
Given the pattern for the other one, I'm guessing that sending the word
</P>
<P>
subscribe
</P>
<P>
to the address
</P>
<P>
<A HREF="mailto:tag-request@ssc.com"
	>tag-request@ssc.com</A>
...should work too.
</P>
<P><STRONG>
I, as yet, haven't recd any notifications that a new Linux Gazette has
been added to the files area.
</STRONG></P>
<P>
For that, you don't want tag nor tag-admin, you want to send a note to
<A HREF="mailto:lg-announce-request@ssc.com"
	>lg-announce-request@ssc.com</A> and subscribe to lg-announce.  That doesn't
say much except that the gazette is posted.
</P>
<P>
What you will find here on tag-admin are precursor discussions;  talk about
what should or shouldn't get published, need to tweak deadlines, and some
other things that are either water-cooler talk or "infrastucture" matters.
</P>
<P><STRONG>
Do the announcements of the new Linux Gazettes come out on the TAG-Admin
list or only on Tag?
</STRONG></P>
<P>
Neither.
</P>
<P>
If you join the TAG list, you will be inundated with a large number of newbie
and occasional non-newbie computing questions, not all linux-related... and
a certain amount of spam that slips the filters, not all of it in English...
and a certain number of utterly dumb questions with no relation at all to
computing (apparently a side effect of the word "homework" being used so
often here).  I'd dare say most of the spam is not in English.  Since we
sometimes get linux queries in non-English languages we can't just chop
them off by character set from the list server, but they're easy to spot and
delete.
</P>
<P>
You will also see the answers flow by from members of the Gang, and efforts
to correct each other.  If you only visit the magazine once a month, you see
less answers, some of them get posted in 2c Tips, and they have been cleaned
up for readability.
</P>
<P>
So I can see reasons why someone who doesn't feel like answering questions
might want to join the TAG list and lurk, but I'm not sure which of these
you wanted.
</P>
<P><STRONG>
Puzzled.
</STRONG></P>
<P><STRONG>
Hylton
</STRONG></P>

<!-- end 3 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="gaz/4"><HR WIDTH="40%" ALIGN="center"></A> <P>

<!-- sig -->

<P><STRONG>
Thank you Heather,
</STRONG></P>
<P><STRONG>
You as a member of TAG have certainly answered my questions.
</STRONG></P>
<P>
<IMG SRC="../gx/dennis/smily.gif" ALT=":D" 
		height="24" width="20" align="middle">
</P>
<P><STRONG>
There has been a message sent to <A HREF="mailto:majordomo@ssc.com"
	>majordomo@ssc.com</A> to unsub/scribe from
both the TAG and TAG-Admin lists as I do not want to receive idle
watercooler chat as I cannot reply immediately, in a watercooler
fashion, due to my countries telecoms monopolistic provider.
</STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
ob TagAdmin: if Mylton has no objection, this message will go in the mailbag
this month.
</EM></FONT></STRONG></P>
<P><STRONG>
Hylton has no objection so please FW to the necessary people provided
some idea is given of how to ascertain when a new Linux Gazette is
published.
</STRONG></P>
<P>
Send an email, with the subject containing a magic word which mailing list
software enjoys.... please take the slash out though... my sysadmin warns
me if I utter this word in too short a mail, the mail goes to majordomo's
owner and not to you.
</P>
<Pre>
subject:  sub/scribe
to:	<A HREF="mailto:lg-announce-request@ssc.com">lg-announce-request@ssc.com</A>

(body text)
sub/scribe

--
(optionally your sig file)
</Pre>
<P>
...mentioning it in the body text should be unnecessary.  That -- keeps
it from trying your sig as a command too.
</P>
<P>
The result will be your membership on a list which sees mail about once a
month, saying when the Gazette is posted.
</P>
<P>
Because you are in another country you might want to look at the Gazette
Mirrors listing and find a site which is closer to you.  Your bandwidth
cost might be the same but hopefully your download time won't cost as much.
<A HREF="../mirrors.html"
	>http://www.linuxgazette.com/mirrors.html</A>
</P>
<P>
Thx for your permission to publish 
<IMG SRC="../gx/dennis/smily.gif" ALT=":)" 
		height="24" width="20" align="middle">
</P>

<!-- end 4 -->
<!--     .~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.~~.     -->
<P> <A NAME="gaz/5"><HR WIDTH="75%" ALIGN="center"></A> <P>
<H3><IMG ALIGN=BOTTOM ALT="" SRC="../gx/envelope.gif">
<FONT COLOR="navy">Re: email distribution of the Gazette?</FONT></H3>
Tue, 3 Jul 2001 15:28:31 -0700
<BR>Hylton Conacher (<a href="mailto:gazette@ssc.com">hylton from global.co.za</a>)

<P><STRONG><FONT COLOR="#000066"><EM>
Please direct me towards a place where I can sign up to receive the
Linux Gazette on a monthly or weekly basis when they become available.
</EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
I would like this to be a free service.
</EM></FONT></STRONG></P>
<P><STRONG>
You don't "receive" Linux Gazette.  You read it on the web or download
the FTP files.  LG is published monthly on the first of the month, although
occasionally we have mid-month extra issues. -- Mike
</STRONG></P>
<P>
We do have an announce list, though.  Write to <A HREF="mailto:lg-announce-request@ssc.com"
	>lg-announce-request@ssc.com</A>
</P>
<P>
I suppose you could use the Netmind service (<A HREF="http://mindit.netmind.com"
	>http://mindit.netmind.com</A>) if
you don't like ours 
<IMG SRC="../gx/dennis/unsmily.gif" ALT=":(" 
		height="24" width="20" align="middle">
</P>
<P>
Sending large files via email, regularly, is really, really-really, an
incredibly bad idea.  Just come get it via ftp when it's ready!  Our ftp
site is free: <A HREF="ftp://ftp.ssc.com/pub/lg"
	>ftp://ftp.ssc.com/pub/lg</A>
</P>

<!-- end 5 -->
<!--              . . . . . . . . . . . . . . . . . . .              -->
<HR WIDTH="40%" ALIGN="center">

<P><STRONG><FONT COLOR="#000066"><EM>
Heather,
</EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
Thank you for the response regarding my query.
</EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
May I suggest that the service of email distribution of the gazettes be
investigated and provided to those people who sign up for them.
</EM></FONT></STRONG></P>
<P>
Please read our FAQ: we have considered it, and the answer is No.
</P>
<P>
Sending huge email attachments around is an undesirable burden on our own
mail servers as well as major MX relay points;
</P>
<P><STRONG><FONT COLOR="#000066"><EM>
I personally have made note of the ftp site but here in South Africa I
can only afford a dial-up connection the site has therefore been added
into a list to visit in the future. The problem comes in when I want to
know if there are any new tutorials on the ftp space since my last
visit. It would therefore be much more handy for me, and possibly
others, if they were allowed to request and start receiving the gazettes
via email.
</EM></FONT></STRONG></P>
<P>
You may subscribe to the announce list.  When you get the announcement,
visit the FTP site... or a local mirror.
</P>
<P><DL><DT>
There are many mirror sites in South Africa - please use one:
<DD><A HREF="../mirrors.html#south_africa"
	>http://www.linuxgazette.com/mirrors.html#south_africa</A>
</DL></P>
<P><STRONG><FONT COLOR="#000066"><EM>
Not everyone needs to receive it, just the ppl signed up to the
distribution list.
</EM></FONT></STRONG></P>
<P><STRONG><FONT COLOR="#000066"><EM>
Please?
</EM></FONT></STRONG></P>
<P>
Please use the internet's resources wisely.  The whole thing is clogged
up enough, without help from us.
</P>

<STRONG><FONT COLOR="#000066"><EM>
<P>
Hi Heather,
</P>
<P>
OK, OK, I give up.  It was just a suggestion.
</P>
<P>
The Internet is so slow already what with video clips going via email
that I do not feel anything in using a little of it to increase my
knowledge.
</P>
<P>
I have signed up to the announcement list and will use a mirror closest
to me.
</P>
<P>
Is it possibly possible to use Linux wget feature to retrieve all the
bulletins if I so wanted?
</P>
<P>
Hylton
</P>
</EM></FONT></STRONG>

<p>Yes!  That's the spirit! -- Heather</p>

<!-- end 6 -->
<P> <hr> </p>
<!-- *** BEGIN copyright *** -->
<H5 align="center">This page edited and maintained by the Editors
	of <I>Linux Gazette</I> 
<a href="http://www.linuxgazette.com/copying.html"
	>Copyright &copy;</a> 2001
<BR>Published in issue 69 of <I>Linux Gazette</I> August 2001</H5>
<H6 ALIGN="center">HTML script maintained by
	<A HREF="mailto:star@starshine.org">Heather Stern</a> of
	Starshine Technical Services,
	<A HREF="http://www.starshine.org/">http://www.starshine.org/</A> 
</H6>
<!-- *** END copyright *** -->
<!--startcut ======================================================= -->

<CENTER>
<!-- *** BEGIN navbar *** -->
<IMG ALT="" SRC="../gx/navbar/left.jpg" WIDTH="14" HEIGHT="45" BORDER="0" ALIGN="bottom"><A HREF="index.html"><IMG ALT="[ Table of Contents ]" SRC="../gx/navbar/toc.jpg" WIDTH="220" HEIGHT="45" BORDER="0" ALIGN="bottom" ></A><A HREF="../index.html"><IMG ALT="[ Front Page ]" SRC="../gx/navbar/frontpage.jpg" WIDTH="137" HEIGHT="45" BORDER="0" ALIGN="bottom"></A><A HREF="../faq/index.html"><IMG ALT="[ FAQ ]" SRC="./../gx/navbar/faq.jpg"WIDTH="62" HEIGHT="45" BORDER="0" ALIGN="bottom"></A><A HREF="lg_bytes69.html"><IMG ALT="[ Next ]" SRC="../gx/navbar/next.jpg" WIDTH="15" HEIGHT="45" BORDER="0" ALIGN="bottom"  ></A><IMG ALT="" SRC="../gx/navbar/right.jpg" WIDTH="15" HEIGHT="45" ALIGN="bottom">
<!-- *** END navbar *** -->
</CENTER>
</BODY></HTML>
<!--endcut ========================================================= -->