File: lg_bytes57.html

package info (click to toggle)
lg-issue57 2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,704 kB
  • ctags: 189
  • sloc: sh: 251; makefile: 34
file content (1048 lines) | stat: -rw-r--r-- 42,783 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
<!--startcut ==========================================================-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> 
<html> 
<head>
<title> News Bytes LG #57 </title>
</head>

<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#0000AF"
ALINK="#FF0000">

<CENTER>
<!-- *** BEGIN navbar *** -->
<IMG ALT="" SRC="../gx/navbar/left.jpg" WIDTH="14" HEIGHT="45" BORDER="0" ALIGN="bottom"><A HREF="lg_mail57.html"><IMG ALT="[ Prev ]" SRC="../gx/navbar/prev.jpg" WIDTH="16" HEIGHT="45" BORDER="0" ALIGN="bottom"></A><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_answer57.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>
<!--endcut ============================================================-->
<H4 ALIGN="center">"Linux Gazette...<I>making Linux just a little more fun!</I>"</H4>
<HR>

<center>
<table cellpadding=7><tr><td>
<IMG SRC="../gx/bytes.gif" border=1  ALT="News Bytes">
</td><td>
<H3>Contents:</H3>
<ul>
<li><a HREF="#distro">Distro News</A>
<li><a HREF="#general">News in General</a>
<li><a HREF="#software">Software Announcements</a>
</ul>
</td></tr></table>
</center>

<H1 ALIGN="center"><FONT COLOR="maroon"><EM>LG</EM> volunteer opportunity!</FONT></H1>

<P> <STRONG><EM>LG</EM> is looking for volunteers to help format this column.
The work takes 6-8 hours per issue.  We would send you an HTML file containing
the raw entries, and you would decide which items to publish, move similar
items together, strip marketoid verbiage, summarize press releases in one
or two paragraphs, and turn URLs into hyperlinks.  This can all be done with a
text editor and a basic knowledge of HTML.  The ability to convert MIME
attachments (e.g., Word documents) to text is helpful but not required.  If you
would like
to volunteer, e-mail <A HREF="mailto:gazette@ssc.com">gazette@ssc.com</A>.  
</STRONG>

<SPACER TYPE="vertical" SIZE="25">

<P> Submitters, send your News Bytes items in 
<FONT SIZE="+2"><STRONG>PLAIN TEXT</STRONG></FONT>
format.  Other formats may be rejected without reading.  You have been
warned!  As always, a one- or two-paragraph summary plus URL is preferred over
an entire press release.



<P> <hr> <P> 
<!-- =================================================================== -->

<center><IMG ALT=" "   SRC="misc/cover77.jpg" WIDTH=200 HEIGHT=268></center>
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<font color="green">
September 2000 <I>Linux Journal</I>
</font>
</H3>
<P> 
The September issue of <A HREF="http://www.linuxjournal.com/"><I>Linux
Journal</I></A> is on newsstands now.
This issue focuses on embedded systems.  Click <A
HREF="http://www.linuxjournal.com/lj-issues/issue77/index.html"> here</A> to
view the table of contents, or <A
HREF="http://www.linuxjournal.com/subscribe/index.html"> here</A> to subscribe.

<P> 
<FONT COLOR="green"><STRONG>All articles through December 1999 are available for
public reading at 
<A HREF="http://www.linuxjournal.com/lj-issues/mags.html">http://www.linuxjournal.com/lg-issues/mags.html</A></STRONG></FONT>.  
Recent articles are available on-line for subscribers only at 
<A HREF="http://interactive.linuxjournal.com">
http://interactive.linuxjournal.com/</A>.  



<P> <hr> <P> 
<!-- =================================================================== -->

<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<font color="green">
<I>Embedded Linux Journal</I>
</font>
</H3>
<P> 

<P> We're excited to introduce a <I>Linux Journal</I> supplemental issue
which will hit the streets October 10, 2000: <I>Embedded Linux Journal</I>. In
this upcoming special issue you can look forward to conversations about: 

<UL>
	<LI> Industry news emphasizing Open Source software solutions. 
	<LI> Reviews of products to reduce development time and improve testing.
	<LI> Case studies that will save you time. 
	<LI> Design solutions that show you why embedded Linux is the
cost-effective answer. 
	<LI> Hardware vs.  software considerations.
</UL>

<P> Current <I>Linux Journal</I> subscribers who live within North America will 
receive this special supplement at no additional charge. This issue will 
also be heavily distributed at upcoming trade shows, other industry events, 
and to targeted mailing lists. 

<P> We hope you enjoy this special issue. <a
href="MAILTO:embedded@linuxjournal.com">We welcome feedback.</a>


<a name="distro"></a>
<p><hr><p>
<!-- =================================================================== -->
<center><H3><font color="green">Distro News</font></H3></center>

<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Caldera
</FONT>
</H3> 

<P> OREM, UT--July 25, 2000--Caldera Systems, Inc. today announced the
availability of the Linux 2.4 Technology Developer Release Preview. This
developer's preview enables early software development with a beta version of
the new Linux 2.4 kernel, Sun Microsystems' Java HotSpot technology and glibc
2.1.91, KDE 2.0 Development Snapshot with the Konqueror web browser.
Anchordesk UK's Evan Leibovitch did a 
<A HREF="http://www.anchordesk.co.uk/anchordesk/commentary/columns/0,2415,7103515,00.html">review</A> of the product.

<P> <STRONG>Caldera acquires SCO</STRONG> -- OREM, UT--August 2, 2000--Caldera
Systems, Inc.  and The Santa Cruz Operation, Inc., (SCO), today announced that
Caldera Systems has entered into an agreement to acquire the SCO Server
Software Division and the Professional Services Division. The Professional
Services Division will operate as a separate business unit of Caldera, to
provide services to meet the Internet and eBusiness infrastructure needs of
customers.  The new company will offer the industry's first comprehensive Open
Internet Platform (OIP) combining Linux and UNIX server solutions and services
globally. The OIP provides commercial customers and developers with a single
platform that can scale from the thinnest of clients to the clustering needs of
the largest data center. 

<P> OREM, UT and SANTA CRUZ, CA-July 18, 2000-Caldera Systems, Inc. , and
Tarantella, Inc. a wholly owned subsidiary of The Santa Cruz Operation, Inc.,
today announced the first bundling of Tarantella Web-enabling software in the
Linux space. This solution, Caldera OpenLinux Application Server with
Tarantella, provides centralized management and deployment of applications on a
fast, stable and low-cost platform simplifying IT responsibilities while
reducing business costs.  OpenLinux Application Server enables authorized users
with a Java technology-enabled browser to run existing Windows, Linux and UNIX
applications through the company's local area network or remotely through the
Internet - even on a dial-up connection.  In addition, companies can instantly
deliver new Web-based and existing legacy applications to their users without
code rewrites.

<P> OREM, UT-July 18, 2000-Caldera Systems, Inc. today began
shipping its first computer-based training (CBT) product - Quick Start to
Linux.  Quick Start is self-paced with hands-on, guided demonstrations
including the preparation of a Windows-based machine for a Linux
installation, the install itself and the navigation of Linux desktops.  In
addition, Caldera's Quick Start CBT identifies business solutions using
Linux while providing historical Linux information.

<P> RESEARCH TRIANGLE PARK, N.C. (July 25, 2000) - InterLan Technologies, a
managed server provider (MSP), announced today it has formed a
strategic alliance with Caldera Systems. InterLan selected Caldera to provide
the Linux operating systems in its state-of-the-art Internet Utility Center, as
well as for its QuickStart(tm) program, an industry-first program that gets
premium managed servers up and running the same day an order is placed. 




<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Debian
</FONT>
</H3> 

<P> Debian GNU/Linux 2.2, the "Joel 'Espy' Klecker" release.

<P> The Debian Project is pleased to announce the latest release of the
Debian GNU/Linux Operating System.  This release has been in
development for approximately 18 months, and has been extensively
tested by several thousand developers and end-users.

<P> With the addition of the PowerPC and ARM architectures, Debian
GNU/Linux now supports a total of six architectures -- more than any
other distribution.  Packages for all architectures are built from the
same source packages.  Debian GNU/Linux now runs on iMacs and
Netwinders, and of course Intel PC's, Sun SPARCs, Alphas, and older
Macintosh and Amiga hardware are still supported.

<P> Debian GNU/Linux 2.2 features a more streamlined and polished
installation, including automatic network setup via DHCP, a simplified
software selection process (just indicate the tasks your Debian
GNU/Linux system will be used for), and a simplified configurator for
the X Window System.  Debian GNU/Linux can be installed via CD, or
from the network and a few floppies:

<P> For detailed documentation about installing and upgrading
Debian GNU/Linux, please see 
<A HREF="http://www.debian.org/releases/2.2/">http://www.debian.org/releases/2.2/</A>.

<P> Debian GNU/Linux 2.2 is dedicated to the memory of Joel "Espy"
Klecker, a Debian developer who, unbeknownst to most of the Debian
Project, was bedridden and fighting a disease known as Duchenne
Muscular Dystrophy during most of his involvement with Debian.  Only
now is the Debian Project realizing the extent of his dedication, and
the friendship he bestowed upon us.  So as a show of appreciation, and
in memory of his inspirational life, this release of Debian GNU/Linux
is dedicated to him.








<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Kondara
</FONT>
</H3> 


<P> KONDARA MNU/LINUX 2000 claims to be the first and only multilingual
distribution on a single binary.  While other major Linux
distributions have multilingual support, you have to completely reinstall
Linux to switch to a new language. Kondara, on the other hand, lets you read,
write, edit and print in Japanese, English, Chinese, Spanish or over 40 other
languages all on the same desktop.
"One World, One Version."

<P> Kondara also offers multi-platform
support on a single source code. Now users can make a single change to
the source code and have it affect both the Alpha and Intel platforms.

<P> The kernel is 2.2.16

<P> <A HREF="http://www.df-usa.com">www.df-usa.com</A>






<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Linux for Windows
</FONT>
</H3> 

<P> INDIANAPOLIS, Indiana-July 18, 2000-Macmillan announces the update to their
popular Linux for Windows product is currently available in stores.  With
this software, first-time Linux users can try the Linux environment without
losing the Windows functionality that they are familiar with. Linux for
Windows 7.1 includes the Linux-Mandrake 7.1 operating system, most noted for
its ease of use and user-friendly tools.
 
<P> The technology included with Linux for Windows 7.1 removes the need for
disk partitioning or reformatting, thus making an excellent gateway for new
users interested in Linux.  Free 24-hour technical support is also provided via
Internet and fax for installation issues.





<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Lute
</FONT>
</H3> 

<P> Argent Resources Ltd. has signed
an agreement dated July 12, 2000, with Lute Linux.com Corp. that
will result in Argent acquiring 100% control of Lute.
Completion of the transaction is subject to
shareholder approval on a majority of the minority basis, CDNX acceptance
and the resulting company meeting minimum listing requirements as a Tier
2, Category 3 Technology Issuer.
<A HREF="http://www.argentresources.com/news/071200.asp">http://www.argentresources.com/news/071200.asp</A>

<P> <A HREF="http://www.LuteLinux.com">LuteLinux.com</A> has been voted site of
the month by <A HREF="http://InternetBrothers.com">InternetBrothers.com</A> in
the Helpware and Community category.  According ro InternetBrothers.com, the
main crieteria for this honour is a "sound functional interface".
InternetBrothers.com strongly believes that  "A primary key to any successful
web site is the user interface."

<P> Features that make LuteLinux exceptional are their commitment to the Linux
community, and their fostering of interactive information exchange with
that community.  They also provide useful tips and information for the
non-Linux user, helping to open Linux up to a wider 
audience.  LuteLinux.com is committed to bringing Linux knowledge to the
businessman, hobbiest, and newbie alike.

  




<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Mandrake
</FONT>
</H3> 

<P> San Jose, August 14, 2000 - MandrakeSoft, announced that Linux-Mandrake,
has been ported to Sun Microsystems' SPARC(tm) and UltraSPARC(tm) platforms.
Based on the Linux-Mandrake 7.1, the Corporate Server 1.0 provides all the
tools needed to rapidly and easily set up the main server functions. WizDrake
assistants will additionally guide the user in setting up a full range of
services and applications like e-mail, Web servers, firewalls and routers.


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Progeny
</FONT>
</H3> 


<P> Progeny Linux
Systems is a new company headed by Ian Murdock (Debian founder) and 
Bruce Perens (former Debian head guy).

<P> Progeny is doing two things:

<P> a.) Progeny Debian - a stripped down version of Debian with some
improvements like the installer, based on extensive testing of
the latest version. Progeny Debian will have limited circulation
in pre-loads, downloads, and (probably) with third party
companies. Progeny won't be selling it directly in the stores,
although the third parties might be. Basically, Progeny Debian's
main use will be as a basis for Linux NOW.

<P> b.) Linux NOW (Network of Workstations) - an Open Source product.

<P> More information can be found at
<A HREF="http://www.progenylinux.com/news">http://www.progenylinux.com/news</A>,
and in the 
<A HREF="http://www.progenylinux.com/debian">/debian</A> and 
<A HREF="http://www.progenylinux.com/now">/now</A> pages.

<P> <A HREF="http://www.linux-mag.com/online/iv_progeny_01.html">Debian Founder Launches Commercial Company</A>
(Linux Magazine article)


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Red Hat
</FONT>
</H3> 


<P> RESEARCH TRIANGLE PARK, N.C.--July 10, 2000--Red Hat, Inc.  today announced
the Red Hat High Availability Server 1.0, a specialized version of
Red Hat Linux 6.2.

<P> Red Hat High Availability Server is an out-of-the-box clustering solution
that delivers dynamic load balancing, improved fault tolerance and scalability
of TCP/IP based applications. It lets users combine individual servers into a
cluster, resulting in highly available access to critical network resources
such as data, applications, network services, and more. If one server in the
cluster fails, another will automatically take over its workload. 

<P> The Red Hat High Availability Server has built-in
security features designed to withstand common attacks. Systems Administrators
can setup sand traps, providing for redirection of IP traffic from a potential
attacker to a secure address. Out of the box, finger, talk, wall, and other
daemons are disabled or not installed. In addition, multiple traffic routing
and scheduling techniques along with virtual IP addresses allow you to create a
security barrier for your network.





<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Rock
</FONT>
</H3> 

<P> Rock Linux is a distribution that's "harder to install" than the others.

<P> There, did that get your attention?  If so, Rock Linux may be for you.
It aims to be "sysadmin friendly" rather than "user friendly", to get out of
the way as much as possible from between you and your applications.  This 
means you configure the system using Unix's traditional command-line 
interface and shell scripts.  Oh yes, X-windows is included.

<P> Serious geeks will love the fact that you get to compile your own 
distribution (optionally putting it on a CD) before installing it.

<P> <A HREF="http://www.rocklinux.org">http://www.rocklinux.org</A>

<P> <A HREF="http://e-zine.nluug.nl/pub/rock/GUIDE.html">http://e-zine.nluug.nl/pub/rock/GUIDE.html</A>

<BLOCKQUOTE><EM>
	[I'd really like to see an article or some Mailbag items about
	people's experience with this.  Has anybody tried it?  -Ed.]
</EM></BLOCKQUOTE>



<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Slackware
</FONT>
</H3> 

<P>  Slackware 7.1 is out at <A HREF="http://www.slackware.com">www.slackware.com</A> and mirrors.


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Storm
</FONT>
</H3> 


<P> VANCOUVER, British Columbia--Stormix Technologies Inc., announces the
launch of Storm Linux 2000 Starter Edition.
The Storm Linux 2000 Starter Edition provides Windows users who want to
try Linux with a full featured, easy-to-install distribution at a low
cost.  This new product is intended for people who want to easily access
the power of Linux without an abundance of third party software.
The Storm Linux 2000 Starter Edition is the first member of the Storm
Linux 2000 family  based on Debian/GNU Linux 2.2 ("Potato").

<P> The Duke of URL has a 
<A HREF="http://www.thedukeofurl.org/reviews/misc/stormix2k">review</A> of
Storm Linux 2000.

<P> August 10 -- Vancouver, British Columbia -- Stormix Technologies Inc.,
today announced the launch of Storm FirewallTM, a flexible, scalable network
security solution targeted at small office and home office (SOHO) users.

<P> Storm Firewall is the first in a line of dedicated network products from
StormixTM. Capitalizing on the natural protective features of Linux, it
is one of the most powerful tools available for network protection.
Storm Firewall uses a graphical user interface to simplify the once
complex process of installing a Linux firewall.  The choice of simple
options or advanced setup gives users ultimate control over network
traffic.  In addition, users will benefit from IP masquerading which
allows for multiple computers to share a single Internet connection.


<P> VANCOUVER, British Columbia - User Friendly Media Inc. and Stormix
Technologies Inc. today announced an agreement for the sponsorship of the
inaugural three month's publication of an online interactive newsletter for
fans of the popular <A HREF="http://UserFriendly.org">UserFriendly.org</A> IT Web site.
The e-mail newsletter, known as 
<A HREF="http://ars.userfriendly.org/register.html#newsletter">The Static
Cling</A>, offers subscribers access to several exclusive features, including
unique cartoons and artwork, a trivia contest with prizes and links to a
threaded comment section. UserFriendly.org is the leading online entertainment
and community destination for the global IT community.

<P> <A HREF="http://www.stormix.com">www.stormix.com</A>





<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">SuSE
</FONT>
</H3> 


<P> The German version of SuSE Linux 7.0 is out.  The English version will ship
in September.

<P> English version: <A HREF="http://www.suse.com">http://www.suse.com</A>

<P> German version: <A HREF="http://www.suse.de/">http://www.suse.de/</A>
<A HREF="http://www.suse.de/de/produkte/susesoft/linux/index.html">http://www.suse.de/de/produkte/susesoft/linux/index.html</A>




<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Trustix
</FONT>
</H3> 

<P> We are proud to announce the release of Trustix Secure Linux 1.1. You can
download it at:
<A HREF="http://www.trustix.net/download/">http://www.trustix.net/download/</A>
 or directly from
<A HREF="http://www.trustix.net/mirrors.php3">http://www.trustix.net/mirrors.php3</A>.

<P> This is primarily a maintainence release, but some new features like
database support and improved mail filtering have been added. In addition
we've added Lynx with SSL support and various other utilities to simplify
the every day maintainance of your server. 

<P> Trustix Secure Linux is a Linux distribution aimed towards the server
market.

<P> For a more complete list of features, please see
<A HREF="http://www.trustix.net/products/trustix-1.1/">http://www.trustix.net/products/trustix-1.1/</A>

<P> 
<A HREF="http://www.anchordesk.co.uk/anchordesk/commentary/columns/0,2415,7105716,00.html">Unix phoenix</A>.  On Unix openness, Unix history, and Linux.  
Another Anchordesk UK article by Evan Leibovitch.





<a name="general"></a>
<p><hr><p>
<!-- =================================================================== -->
<center><H3><font color="green">News in General</font></H3></center>


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Upcoming conferences &amp; events
</FONT>
</H3> 


<P> O'Reilly's conference next year on emerging enterprise-class Java
applications has a <A HREF="http://conferences.oreilly.com/java2001/news/call.html">call for papers</A>.
Submission deadline is <STRONG>September 15, 2000</STRONG>.

<P>
<table cellpadding=10 border=3 width=100%>

<tr>
<td valign=top>
<b>Linux Business Expo</b><br>(co-located with Networld + 
Interop event)<BR>

<td valign=top>
September 26-28, 2000<BR>
Atlanta, GA<BR>
<A HREF="http://www.key3media.com/linuxbizexpo/"
target=_blank>www.key3media.com/linuxbizexpo</A><BR>
<P>
</td></tr> 



<tr>
<td valign=top>
<b>Atlanta Linux Showcase</b><BR>
<td valign=top>
October 10-14, 2000<BR>
Atlanta, GA<BR>
<A HREF="http://www.linuxshowcase.org" target=_blank>www.linuxshowcase.org</A><BR>
<P>
</td></tr> 

<tr>
<td valign=top>
<b>ISPCON</b><BR>
<td valign=top>
November 8-10, 2000<BR>
San Jose, CA<BR>
<A HREF="http://www.ispcon.com"
target=_blank>www.ispcon.com</A><BR>
<P>
</td></tr> 

<tr>
<td valign=top>

<b>Linux Business Expo</b><br>(co-located with 
COMDEX event)<BR>
</td>

<td valign=top>
November 13-17, 2000<BR>
Las Vegas, NV<BR>
<A HREF="http://www.key3media.com/linuxbizexpo/"
target=_blank>www.key3media.com/linuxbizexpo</A><BR>
<P>
</td></tr> 



	<tr>
<td valign=top>
<b>USENIX Winter - LISA 2000</b><BR>
<td valign=top>
December 3-8, 2000<BR>
New Orleans, LA<BR>
<A HREF="http://www.usenix.org" target=_blank>www.usenix.org</A>
<P>
</td></tr> 
            

<tr>
<td valign=top>
<b>LinuxWorld Conference & Expo</b><BR>
<td valign=top>
January 30 - February 2, 2001<BR>
New York, NY<BR>
<A HREF="http://www.linuxworldexpo.com"
target=_blank>www.linuxworldexpo.com</A><BR>
<P>
</td></tr>

</table>




<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">$399 Linux computer with monitor
</FONT>
</H3> 

<P> July 17, 2000- Introducing the PortalPC, our new solution to the computing
and networking market.  After thorough development and extensive
testing, we are proud to bring to the consumer this revolutionary new product.
The unique design of the PortalPC gives the users numerous options and
versatility with their computing needs without the expense.  With a starting
price of $149.99, this computer is a perfect base for all of the functions a
traditional PC can provide.  Complete packages that include CD-ROM, Floppy,
4.3GB HD, 15 Monitor, 32 Mb PC100 Ram, Keyboard, Mouse and free copy
of Red Hat 6.2 start at $399.99.  The on-board technology includes, 10/100
network card, Dual USB, PS/2 port, Parallel port, Com port, VGA display, Disk
On Chip Socket 8 to 144Mb and PC/104 16BIT Expansion Connector.  This unique
configuration enables the PortalPC to be uniquely small (approximately
12x5x9).
Using the PortalPC to build your private network, you can have 6 workstations
at the cost of a traditional tower computer.  

<P> <A HREF="http://www.portalpc.net">www.portalpc.net</A>




<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Linux Square
</FONT>
</H3> 

<P> ITsquare.com is pleased to announce the launch of Linux Square, a
supplement to the existing b2b marketplace for IT services at
<A HREF="http://www.ITsquare.com/">http://www.ITsquare.com/</A>. Linux Square
provides access to scores of established Linux development firms. Through use
of a web-based framework, clients are able to securely and efficiently procure
the development of Linux applications.






<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">MaxSQL
</FONT>
</H3> 

<P> Helsinki, Finland and Carlisle, Massachusetts, USA--August 9,
2000--MySQL AB and Sleepycat Software, Inc. today announced the release
of MaxSQL, a new Open Source, high performance, and fully transactional
SQL server. MaxSQL, developed jointly by the two companies, combines the
industry-standard interface of MySQL's data access language with the
high-performance transaction services of Sleepycats Berkeley DB.
MaxSQL is available immediately via download at no charge from
<A HREF="http://www.maxsql.com">www.maxsql.com</A>.

<P> MaxSQL is the first Open Source relational database engine to offer the
reliability, scalability, and performance that commercial users demand.
The software provides the ability to perform transactions with full
recoverability for committed changes. It manages databases up to 256
terabytes in size, accommodates many concurrent users, and survives
power failure or system crashes without losing data. Those features,
combined with MySQL's enormous popularity make MaxSQL a potent threat in
the SQL marketplace.

<P> The full source code for MaxSQL is available for download at <A
HREF="http://www.maxsql.com">www.maxsql.com</A>.  The software is distributed
under the GNU Public License (GPL).



<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">The Napster battle has implications for free-software
developers
</FONT>
</H3> 

<P> Salon article: "As the long arm of the law reaches Napster and its
lookalikes, programmers could be held responsible for what others do with their
code."

<P> "Free speech, copyright, piracy and the fundamental nature of source code --
ever since the Internet began its surge to cultural and economic prominence,
these concepts have swirled around each other in a confusing and contradictory
morass. Now, in courtrooms from coast to coast, judges are attempting to bring
order to the burgeoning online chaos. And from the first indications,
programmer freedom may end up coming under the most sustained assault yet
seen."

<P> "We are on the verge of defining software and determining the responsibility
of software developers to control the uses of their work."

<P> <A HREF="http://salon.com/tech/feature/2000/08/07/yoink_napster/index.html">http://salon.com/tech/feature/2000/08/07/yoink_napster/index.html</A>



<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Linux Brains Sought for New Tech Support Site
</FONT>
</H3> 

<P> August 15, 2000, Vancouver, BC -- 
<A HREF="http://www.IQLinux.com">IQLinux.com</A> has launched a new 
technical support website for the global pool of independent Linux 
experts to meet the support need of Linux users.

<P> "IQLinux.com is a combination of Ebay and Onvia.com for the Linux 
community. The site's potential is like a rocket and I encourage 
Linux enthusiasts to take a ride", said Mark Kuharich, publisher and 
editor of Softwareview.com.

<P> IQLinux.com membership is free. The site's seamless negotiation 
process fully manages the negotiation of open source products and 
their supporting services.

<P> IQLinux.com's combined features make it a unique opportunity for the 
Linux community to interact. It allows members to easily form 
business relationships, manage virtual consulting teams, negotiate 
agreements and contracts, set prices, define deliverables and carry 
out technical support transactions, while being assured of payment.



<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Overseas internships for Canadian nationals
</FONT>
</H3> 

<P> Hello from Ottawa. I am the recruiting officer for NetCorps Canada with
Voluntary Services Overseas (VSO Canada). Currently I have 2 6-month
internships open to Canadian citizens or landed immigrants between the ages
of 19-30 to go overseas in September. On is for a linux administrator to go
to Jamaica for 6 months, the other is for someone with e-commerce skills to
go to Guyana for 6 months. 

<P> Interested applicants should forward their CV and brief cover letter to
Wendy Street, NetCorps Program Officer, VSO Canada. Applicants who are accepted
need to be prepared to leave no later than 
<STRONG>September 20th, 2000</STRONG>.
wendys@vsocan.com, fax: +1 (613) 234-1444, <A HREF="http://www.vsocan.com">http://www.vsocan.com</A>


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">"Dilbert Killer" on-line games
</FONT>
</H3> 


<P> User Friendly Media Inc., and SuSE Linux announced the launch of the first
in a series of challenging and diverse on-line games currently under
development for the new game section on 
<A HREF="http://UserFriendly.org">UserFriendly.org</A>.

<P> "This first game focuses on geek trivia and allows our very intellectual
audience to compete head on in a variety of challenging information
categories. The combatants move up the pyramid until there is only one...
there can be only one", said Wildcard, lead coder for User Friendly Media
Inc. and creator of "Pyramid of Trivia".

<P> The site also has an 
<A HREF="http://www.userfriendly.org/animation">animated cartoon series</A>
now.  This caused technicians to scramble for 300 GB of additional bandwidth
for the debut.  (Requires Flash player; episode 1 is 2.5 MB / 7 minutes.)


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Linux Links
</FONT>
</H3> 

<P> The age of cyborgs is coming closer.
"Scientists are attempting to create 
<A HREF="http://dailynews.yahoo.com/h/nm/20000809/sc/dna_dc_1.html">molecular electronic
circuits using DNA</A>.  They say that they could potentially create circuits
10,000 times smaller than with current technology."  Yahoo via Slashdot.


<P> <A HREF="http://www.linuxlookup.com">www.linuxlookup.com</A> is "Your
Source For Reviews, HOWTOs, Guides &amp; Gear".

<P> A <A HREF="http://www.bahnhof.se/~chimbis/ratatosk/">searchable 
distribution database</A>.

<P> <A HREF="http://www.SiliconPenguin.com">SiliconPenguin.com</A> is an index
of information on embedded Linux.  The information is not gathered by web
spiders, but by humans who evaluate each link.

<P> <A HREF="http://www.linuxlinks.com">LinuxLinks.com</A> now has a web-based
calendar.

<P> The Duke of URL articles:
<UL>
	<LI> <A HREF="http://www.thedukeofurl.org/reviews/misc/wheelmouselinux">Scrolling the mouse wheel HOWTO</A>
	<LI> <A HREF="http://thedukeofurl.org/reviews/misc/mozillam16/">Mozilla
milestone 16</A> review.
	<LI> <A HREF="http://www.thedukeofurl.org/reviews/video/v55500/">
Voodoo5 5500 AGP</A> review.
	<LI> <A
	HREF="http://www.thedukeofurl.org/reviews/misc/linuxguide3">Linux
Buyer's Guide</A> review.
	<LI> Pogo's Winux Box
<A HREF="http://www.thedukeofurl.org/reviews/systems/winux">Pogo's Winux
box</A>, powered by VMWare.
	<LI> <A HREF="http://www.thedukeofurl.org/reviews/misc/linuxworld1">LinuxWorld</A> happenings.
</UL>


<P> <A HREF="http://www.cs.utexas.edu/users/kharker/linux-laptop">
Linux laptop</A> info.  
<A HREF="http://www.geocities.com/ltedood/Index.html">Another laptop</A> page.
(Turn off Java for the second one to avoid Geocities popups.)

<P> Sony plans a notebook computer with Transmeta's Crusoe chip and a digital
camera by year's end.
<A HREF="http://news.cnet.com/news/0-1003-200-2523739.html">http://news.cnet.com/news/0-1003-200-2523739.html</A>

<P> <A HREF="http://www.linuxlinks.com/local/business/databases.shtml">Linux Means Business</A> 
is a collection of articles on how businesses can make use of 
Linux.

<P> <A HREF="http://www.hardware-unlimited.com">Hardware-Unlimited</A> has lots
of reviews about video cards and other hardware.  Includes a price comparision
guide of graphics cards and dealers.
Here's a review of the <A HREF="http://www.hardware-unlimited.com/reviews/dlinkmp3/">D-Link MP3 player.</A>

<P> How 
<A HREF="http://www.anchordesk.co.uk/anchordesk/commentary/columns/0,2415,7105834,00.html">Linux's falling stock prices</A> 
are only temporary.  (Anchordesk UK article by Charles Babcock)

<P> <A HREF="http://www.linuxsecurity.com/feature_stories/remote_logserver-1.html">Complete Reference Guide to Creating a Remote Log Server</A>.
LinuxSecurity article.  Note that this is "log" in the sense of "logging error
messages to a file", not "logging in remotely".

<P> <A HREF="http://www.gnu.org/philosophy/right-to-read.html">The Right to
Read</A> by RMS is a short science-fiction story about the implications of
widespread anti-piracy measures on electronic books. 

<P> <A HREF="http://www.wininformant.com">www.wininformant.com</A> is a 
source of information on Microsoft's activities.  The site has a pro-MS bent,
but is honest about MS's shortcomings.  One article the persistent rumor that MS
is  
<A HREF="http://www.wininformant.com/display.asp?ID=2881">porting Office applications
to Linux</A>, which the company denies it is doing.  Meanwhile, CNET news.com 
attempts to
<A HREF="http://news.cnet.com/news/0-1003-200-2605044.html?tag=st.ne.1002.bgif.ni">sort out</A> the rumors.






<a name="software"></a>
<P> <hr> <P> 
<!-- =================================================================== -->
<center><H3><font color="green">Software Announcements</font></H3></center>


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">FIASCO
</FONT>
</H3> 


<P> I am pleased to announce the first public release of FIASCO.

<P> FIASCO is an image and video compression system for low bit-rates
based on fractal coding which outperforms the well known JPEG and MPEG
standards.  License GPL.

<P> FIASCO consists of command line applications (like cjpeg/djpeg) to
encode images and videos and to decode and display generated FIASCO
streams. Moreover, library functions are available for reading and
writing FIASCO files.

<P> 
<A HREF="http://ulli.linuxave.net/fiasco">http://ulli.linuxave.net/fiasco</A>


<P> <hr> <P> 
<!-- =================================================================== -->
<H3><IMG ALT=" "   SRC="../gx/bolt.gif">
<FONT COLOR="green">Other software
</FONT>
</H3> 


<P> <A HREF="http://www.randomfactory.com/lfa.html">Linux
for Astronomy</A> is precompiled astronomical software.

<P> <A HREF="http://www.styx.demon.co.uk/smslink/">SMSLink</A> 0.48b-2
implements a client / server gateway to the SMS protocol
(the short messages sent to mobile phones). This version is mostly a bugfix
release.  License GPL.

<P> <A HREF="http://www.linux.corel.com">Corel PHOTO-PAINT</A> is a 
photo-editing, image composition and painting application, now
available for free download.

<P> <A HREF="http://www.metrolink.com">Metrolink</A> has released Open Motif
with Metro Link's enhancements and bug fixes, available for FTP download.

<P> Sun's <A HREF="http://www.sun.com/staroffice">StarOffice</A> 5.2 office
suite is available for download in eleven languages.

<P> <A HREF="http://www.provenacct.com/pr/Prtb.html">Proven CHOICE Accounting</A>
is a complete business accounting system for Linux.  New is the time billing
module.

<P> <A HREF="http://www.cryptocard.com">CRYPTOAdmin</A> 5.0 protects Apache,
iPlanet and Microsoft IIS Web servers from unauthorized access - right down to
the page level.  The new feature, WEBGuard, ensures access to protected pages
is only permitted with the correct one-time challenge/response generated from a
CRYPTOCard hardware or software token.  Web severs communicate directly with
CRYPTOAdmin, enabling ASP (Active Server Page) or JSP (Java Server Page)
security.  CRYPTOAdmin is included with industry leading products such as Cisco
Secure ACS and Red Hat Linux at no charge.  Established in 1989, CRYPTOCard is
a Canadian company based in Kanata, Ontario.

<P> Servtec's <A HREF="http://www.servertec.com">iServer</A> is now available
for Dallas Semiconductor's TINI board, an embedded Internet computer.  iServer
TINI Edition is a full featured Application/Web Server written entirely in Java
running on TINI.  90-day free preview.

<P> <A HREF="http://www.solutionsoft.com/perl.htm">Perl Builder</A> 2.0 is a
major upgrade to Solutionsoft's Perl IDE.  Includes a CGI Wizard, debugger, and
the ability to test CGI scripts on the desktop.  14-day evaluation copy 
available for download.  (Note: "no route to host" error during final 
proofreading.)
		
<P> Helios <A HREF="http://www.helios.de/helios_N/news00/N_10_00.html">PDF Handshake</A> 2.0 is in beta.  It allows PDF documents
to be created remotely via a "Create PDF" print queue.  A print preview queue
is also available.

<P> The <A HREF="http://www.linux.org.sa">Linux Arabization project</A>
announces Aedit, an Arabic editor that supports bidirectional text and features
specific to the Arabic language.  Aedit is meant to be an international editor
with support to other languages. Aedit is based on the internationalization
support available in Gtk+-1.3.  License GPL.

<P> <A HREF="http://www.mainsoft.com">Mainsoft</A> has a porting application
that turns Windows Code into native Unix.

<P> Loki news: Loki will maintain and support the Linux version of Unreal
Tournament by Epic Games, Inc.  Loki has also teamed up with
BSDI to ensure Loki's games run on FreeBSD using its Linux-compatibility
features.  Certified games will be fully supported by Loki.

<P> Intel's <A HREF="http://developer.intel.com/ial/upnp/">Universal Plug and Play (UPnP) Software Development Kit (SDK)</A> 1.0 is available through an 
open-source license.

<P> <A HREF="http://www.magic-sw.com">Magic Software</A> news: Magic announced
support for mobile e-business (mBusiness) in its web applications eService and
eMerchant, allowing them to support remote transactions via the Wireless
Application Protocol (WAP).  Magic also announced an intention to acquire
CoreTech Consulting Group, Inc., a provider of e-business professional services.
This will enhance Magic's ability to offer consulting and professional services
in North America.

<A HREF="http://www.activestate.com/Products/PerlMx/index.html">PerlMX</A>
embeds Perl in Sendmail as a mail filter engine.  This allows you to use Perl
code for spam control, keyword scanning, custom routing, etc.
By ActiveState.

<P> <A HREF="http://objc.sourceforge.net">CURSEL</A> is a freeware FMLI (Forms
and Menu Language Interpreter) implementation for Linux and UNIX.  CURSEL
interprets Menu description files, which are simple text files, describing a
character GUI (Menus, forms, text files) for character terminals (xterm, vt100,
etc.). Pipes, shell escapes, backquoted expressions, and file redirection are
supported, and when compiled with ncurses 5, CURSEL supports color.  CURSEL
also supports coroutines, and descriptors to create, send data, or receive
data, from an another process via named pipes.  License GPL.





<!-- *** BEGIN copyright *** -->
<P> <hr> <P> 
<H5 ALIGN=center>
This page written and maintained by the Editors of the <I>Linux Gazette</I>.
Copyright &copy; 2000, <A HREF="mailto:gazette@ssc.com">gazette@ssc.com</A><BR> 
Published in Issue 57 of <i>Linux Gazette</i>, September 2000</H5>
<!-- *** END copyright *** -->

<!-- startcut ============================================================-->

<CENTER>
<!-- *** BEGIN navbar *** -->
<IMG ALT="" SRC="../gx/navbar/left.jpg" WIDTH="14" HEIGHT="45" BORDER="0" ALIGN="bottom"><A HREF="lg_mail57.html"><IMG ALT="[ Prev ]" SRC="../gx/navbar/prev.jpg" WIDTH="16" HEIGHT="45" BORDER="0" ALIGN="bottom"></A><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_answer57.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 ============================================================-->