aboutsummaryrefslogtreecommitdiff
path: root/share/xml/usergroups.xml
blob: 4ae5f13f2624865d1b70d2984e30eff25e276998 (plain) (blame)
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
<?xml version="1.0"?>
<!DOCTYPE usergroups PUBLIC "-//FreeBSD//DTD FreeBSD XML Database for UserGroups//EN"
                            "http://www.FreeBSD.org/XML/www/share/xml/usergoups.dtd">

<usergroups>
    <cvs:keyword xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
      $FreeBSD$
    </cvs:keyword>

<!--

Please keep this file sorted. The schema is quite simple.

<usergroups>
  <continent name="foo">
    <country code="XX" name="bar">
      <entry id="baz">

      </entry>
      ...
    </country>
    ...
  </continent>
  ...
</usergroups>

The country codes are precise ISO3166 codes from, e.g.

  http://code.google.com/apis/chart/#iso_codes

-->

<continent name="Global">
  <country name="Global">
  <entry id="metabug" continent="North America">
    <name>The Global BSD User Groups</name>
    <url>http://metabug.org/</url>
    <description>The Global BSD User Groups organization was founded to help
      promote local BSD user groups by helping to share ideas and experiences
      with other BUG organizations.  Our goals are:
      <ul>
	<li>Foster inter-BUG relations and communications to increase unity
	  in the BSD user group communities.</li>
	<li>Assist in increasing awareness of smaller user groups in the
	  community.</li>
	<li>Facilitate idea and resource sharing through common access to
	  meeting presentation topics and materials.</li>
	<li>Increase exposure to other BSD projects where local user
	  groups may have less member interest or experience.</li>
	<li>Offer a BSD user group for those without a local BUG.</li>
      </ul>
      We are working on ways to provide remote participation through streaming
      video of presentations.  You can check our <a
	href="http://metabug.org/">website</a> or contact us via <a
	href="mailto:info@metabug">e-mail</a>.
    </description>
  </entry>
  </country>
  </continent>

  <continent name="Oceania">
    <country name="Australia" code="AU">

    <entry id="humbug">
      <name>Home Unix Users Group for Brisbane</name>
      <url>http://www.humbug.org.au/</url>
      <description>We meet fortnightly at meeting rooms provided by the
        <a href="http://www.uq.edu.au/">University of Queensland</a>.
        More information, including how to join the mailing lists, is
        available at <a
        href="http://www.humbug.org.au/">http://www.humbug.org.au</a>.
        Located in Queensland.
      </description>
    </entry>

    <entry id="buga">
      <name>BUGA, The BSD User Group of Adelaide</name>
      <url>mailto:majordomo@lemis.com</url>
      <description>We meet at irregular intervals. Join the mailing
        list by sending a message to <a
        href="mailto:majordomo@lemis.com">majordomo@lemis.com</a> with
        the text <code>subscribe BUGA</code> in the body. Located in
        South Australia.
      </description>
    </entry>

    <entry id="bugs">
      <name>BSD Users Group, Sydney (BUGS)</name>
      <url>http://www.bugs.au.FreeBSD.org/</url>
      <description>The BSD Users Group, Sydney (BUGS) meets occasionally
        in Sydney and surrounds. We have members from all over NSW. To
        join the mailing list or IRC channel, visit <a
  	href="http://www.bugs.au.freebsd.org/">
	http://www.bugs.au.freebsd.org/</a>.  Located in New South Wales.
      </description>
    </entry>
  </country>
</continent>

<continent name="Europe">
  <country code="AT" name="Austria">
    <entry id="bsdgraz">
      <name>Grazer BSD Stammtisch</name>
      <url>http://graz.bsdstammtisch.at</url>

      <description>The "Grazer BSD Stammtisch" is a
        german-language oriented user group with members living in or
        near Graz/Austria.  We usually meet once per month to discuss
        BSD related topics.  For more information please visit our
        <a href="http://graz.bsdstammtisch.at">website</a> or our <a
        href="https://www.facebook.com/GrazerBSDStammtisch">Facebook page</a>.
      </description>
    </entry>

    <entry id="bsdwien">
      <name>Wiener BSD Stammtisch</name>
      <url>http://wien.bsdstammtisch.at/</url>

      <description>The "Wiener BSD Stammtisch" is a
        german-language oriented user group.  Visit our <a
        href="http://wien.bsdstammtisch.at">website</a> for more information.
        Located in Austria.
      </description>
    </entry>
  </country>

  <country code="DK" name="Denmark">
    <entry id="bsd-dk">
      <name>BSD-DK</name>
      <url>http://www.bsd-dk.dk/</url>
      <description>The Danish BSD User Group. Promotion and support of the
        BSD derived Operating Systems in Denmark. Mailing lists, lecture
        and workshops. Send mail subscription requests to <a
        href="mailto:bsd-dk-request@bsd-dk.dk">
	bsd-dk-request@bsd-dk.dk</a>.  Located in Denmark.
      </description>
    </entry>
  </country>

  <country code="AL" name="Albania">
    <entry id="albabug">
      <name>AlbaBUG</name>
      <url>http://www.AlbaBSD.org</url>
      <description>The Albanian BSD Users Group is a group that represents
        and supports *BSD in Albanian language.  More information is
        available at <a href="http://www.AlbaBSD.org">
  	http://www.AlbaBSD.org</a>. Located in Prishtina, Kosova.
      </description>
    </entry>
  </country>

  <country code="DE" name="Germany">
    <entry id="augusta">
      <name>Augusta</name>
      <url>http://www.augusta.de/</url>
      <description>The BSD User Group of the Augsburger Computer Forum
        e.V. meets every second Saturday at 17.00.  Please visit our
        <a href="http://www.augusta.de/">web site</a> for more
        information on dates and our address.  We have all kinds of
        BSD, but mainly FreeBSD and Mac OS X.  Located in Germany,
        Augsburg.
      </description>
    </entry>

    <entry id="bsdhh">
      <name>BSD User Group Hamburg (BSDHH)</name>
      <url>http://www.bsdhh.org/bsdhh-de-index.html</url>

      <description>The BSD User Group Hamburg (BSDHH) meets on the
        first Wednesday of the month at 7.00pm in the restaurant
        <em>L&eacute;on</em> (Koppel 1, 20099 Hamburg).
        Most members are FreeBSD users, although
        users of all BSD flavors are welcome.  Located in Germany,
        Hamburg.
      </description>
    </entry>

    <entry id="happabsd">
      <name>HappaBSD Regensburg</name>
      <url>http://www.HappaBSD.de/</url>

      <description>HappaBSD is a regulars' table taking place every
	month in Regensburg, Bavaria, Germany.  For more information
	see the <a href="http://www.HappaBSD.de/">HappaBSD website</a>.
      </description>
    </entry>

    <entry id="uugrn">
      <name>Unix Users Group Rhein-Neckar e.V. (UUGRN e.V.)</name>
      <url>http://www.uugrn.org/</url>
      <description>The Unix Users Group Rhein-Neckar e.V. (UUGRN e.V.)
        provides a regional forum for users of all Unix flavors, with
        a stress on Linux and BSD. <a
        href="http://stammtisch.uugrn.org/">Meetings</a>
        are held on the third Monday of each month in Heidelberg.
        The <a href="http://fixme.uugrn.org/">FIXME</a> meeting happens
        every first Friday of each month in the
        <a href="http://raumzeitlabor.de/">RaumZeitLabor</a> in
        Mannheim.  Located in Germany, <a
        href="http://rhein-neckar-wiki.de/">Rhine-Neckar-Region</a>.
      </description>
    </entry>

    <entry id="bim">
      <name>Berkeley in Munich (BIM)</name>
      <url>http://berklix.org/bim/</url>
      <description>The Berkeley in Munich (BIM) caters for users of
        BSD based systems in Oberbayern.  Located in Germany, Munich.
      </description>
    </entry>

    <entry id="u-bus">
      <name>Ulmer BSD User Stammtisch</name>
      <url>http://www.u-bus.de</url>

      <description>The U-BUS meets every last Thursday of the month.
        For more information about meetings and related issues, please
        check the web page (<a href="http://www.u-bus.de">u-bus</a>).
        Located in Germany, Ulm.
      </description>
    </entry>

    <entry id="bluefrogs">
      <name>Bluefrogs e.V.</name>
      <url>http://www.bluefrogs.de/</url>

      <description>Unix and Linux User Group in Bergisch Gladbach
        (near Cologne), German.  Meetings are held twice a month.  We
        are working with all Open Source Unix derivates: FreeBSD,
        NetBSD, OpenBSD, Linux and others.  We give workshops,
        lectures, talks and install parties.  For more information
        please email us at: <a
        href="mailto:info@bluefrogs.de">info@bluefrogs.de</a>
      </description>
    </entry>

    <entry id="koeln-lug">
      <name>The Koelner Linux und U.n.i.x Gruppe</name>
      <url>http://www.koeln-lug.de/</url>

      <description>The Koelner Linux und U.n.i.x Gruppe(Cologne Linux
        and U.n.i.x Group) is a community of Linux and Unix users
        located in Germany, Koeln (Cologne) with a mailing list and
        meetings two times a month.
      </description>
    </entry>

    <entry id="bse">
      <name>BSE M&uuml;nchen</name>
      <url>http://bse.42.org/</url>

      <description>BSE (BSD Social Event) is located in M&uuml;nchen
        (Munich), Germany.  Feel free to visit our regular meetings
        (every four weeks) or join the mailing list.  For more
        information visit the <a href="http://bse.42.org/">BSE web
        site</a>.
      </description>
    </entry>
  </country>

  <country code="ES" name="Spain">
    <entry id="freebsdspain">
      <name>FreeBSD Spain</name>
      <url>http://freebsdspain.blogspot.com/</url>
      <description>FreeBSD Spain is a new FreeBSD user group for
	Spanish FreeBSD users, where they can share knowledge,
	ideas, opinions and seek help.  For more information please
	visit our <a
	href="http://freebsdspain.blogspot.com/">website</a>.
      </description>
    </entry>
  </country>

  <country code="FR" name="France">
    <entry id="fug-fr">
      <name>FUG-FR</name>
      <url>http://www.fug-fr.org/</url>

      <description>The FreeBSD User Group France (FUG-FR) is an group
        of FreeBSD enthusiasts in France currently involved
        translating marketing papers etc. They are also active in
        helping out FOSDEM (held in Brussels).  For more information
        please visit our web page <a
        href="http://www.fug-fr.org/">http://www.fug-fr.org</a> or
        contact <a href="mailto:rodrigo@bebik.net">Rodrigo Osorio</a>.
      </description>
    </entry>
  </country>

  <country code="RS" name="Serbia">
    <entry id="bsd-srbija">
      <name>The Serbian BSD User Group</name>
      <url>http://www.bsdserbia.org/</url>

      <description>The Serbian BSD Users Group provides an open forum
        for all things BSD-related in the Serbian language.  Located
        in Serbia.
      </description>
    </entry>
  </country>

  <country code="RU" name="Russia">
    <entry id="lissyara">
      <name>Lissyara.su</name>
      <url>http://www.lissyara.su</url>

      <description>We are a russian FreeBSD community.  On our site we
	offer several articles for setting up FreeBSD and various other
	applications.  In addtition to the articles we also provide a <a
	href="http://forum.lissyara.su/">user forum</a> where experienced
	users of FreeBSD are pleased to be able to help other users.
      </description>
    </entry>

    <entry id="rfug">
      <name>Russian FreeBSD User Group (RFUG)</name>
      <url>http://bsdportal.ru</url>

      <description>The Russian FreeBSD User Group (RFUG) is a Russian
        language oriented user group for the Russian and ex-USSR
        users.  Located in the Russia.
      </description>
    </entry>
  </country>

  <country code="IT" name="Italy">
    <entry id="gufi">
      <name>Gruppo Utenti FreeBSD Italia (GUFI)</name>
      <url>http://www.gufi.org/</url>

      <description>The Gruppo Utenti FreeBSD Italia (GUFI) is a
        "italian powered" FreeBSD User Group. It is intended to help
        Italian FreeBSD users to find support and articles on/about
        FreeBSD in the italian language. Please follow this <a
        href="http://www.gufi.org/">link</a> to know more about us.
        Located in Italia.
      </description>
    </entry>
  </country>

  <country code="RO" name="Romania">
    <entry id="bsdforums">
      <name>Romanian BSD Forums</name>
      <url>http://bsdforums.unixro.net/</url>

      <description>Romanian BSD Forums provides a friendly place for
        the Romanian *BSD community to share knowledge. A specific
        FreeBSD section is available on the forum.
      </description>
    </entry>

    <entry id="rofug">
      <name>The Romanian FreeBSD Users Group/Free Unix Group
        (ROFUG)</name>
      <url>http://www.rofug.ro/</url>

      <description>The ROFUG (Romanian FreeBSD Users Group/Free Unix
        Group) is a User Group for the Romanian users of FreeBSD and
        Open Source in general, promoting and supporting FreeBSD and
        Open Source usage.  To join the mailing lists, send an email
        to <a href="mailto:listar@rofug.ro">listar@rofug.ro</a> with
        <code>subscribe rofug</code> and/or <code>subscribe
        rofug-announce</code> in the body of the message. Located in
        Romania.
      </description>
    </entry>
  </country>

  <country code="LV" name="Latvia">
    <entry id="bug-lv" >
      <name>BSD User Group Latvia</name>
      <url>http://www.bug.lv</url>

      <description>To learn more about the BSD User Group Latvia,
        please visit our <a href="http://www.bug.lv/">site</a> and our
        <a href="http://www.bug.lv/">forums</a>.  Located in Latvia.
      </description>
    </entry>
  </country>

  <country code="NO" name="Norway">
    <entry id="nobug" >
      <name>The Norwegian BSD User Group (NOBUG)</name>
      <url>http://www.nobug.no/</url>

      <description>The Norwegian BSD User Group (NOBUG) is a User
        Group for BSD users and enthusiasts in Norway.  Meetings are
        currently held in Oslo and Bergen.  Visit our website for more
        information.  There is also a Unix User Group (<a
        href="http://www.nuug.no/"> NUUG</a>) with more regular
        meetings, sometimes even with a BSD subject.  Located in
        Norway.
      </description>
    </entry>
  </country>

  <country code="PL" name="Poland">
    <entry id="lublin" >
      <name>The Lublin BSD Users Group</name>
      <url>http://www.FreeBSD.lublin.pl/</url>
      <description>Please follow the link for details.  Located in Poland.
      </description>
    </entry>
  </country>

  <country code="PT" name="Portuguese">
    <entry id="ptbsd" >
      <name>The Portuguese *BSD Users Group</name>
      <url>mailto:ptbsd@yahoo.com</url>

      <description>The Portuguese *BSD Users Group is a User Group for
        Portuguese users of BSD operating systems.  Contact Rui
        Pereira <a href="mailto:ptbsd@yahoo.com">ptbsd@yahoo.com</a>
        for more information.  Located in Portugal, Amadora.
      </description>
    </entry>

    <entry id="npf" >
      <name>N&uacute;cleo Portugu&ecirc;s de FreeBSD (NPF)</name>
      <url>http://npf.pt.FreeBSD.org/</url>

      <description>The N&uacute;cleo Portugu&ecirc;s de FreeBSD (NPF)
        is a Portuguese FreeBSD User Group that is engaged in the
        production of documentation in Portuguese language.  Currently
        the activities are centred on the translation of the FreeBSD
        Handbook and on the production of CF's (aka HowTos) that try
        to answer questions or propose solutions to problems that are
        experienced by Portuguese users. See <a
        href="http://npf.pt.FreeBSD.org/">
        http://npf.pt.FreeBSD.org</a> for more information.  Located
        in Portugal.
      </description>
    </entry>
  </country>

  <!-- Ask pgj@ before touching this entry. -->
  <country code="HU" name="Hungary">
    <entry id="bsdhu">
      <name>The Hungarian BSD Group</name>
      <url>http://www.bsd.hu/</url>

      <description>The Hungarian BSD Group is a group of NetBSD, &os;,
	and OpenBSD users located in Hungary.  Their meetings occur on
	the second Friday of the month.  The website of the group is <a
	  href="http://www.bsd.hu/">http://www.bsd.hu/</a>.</description>
    </entry>
  </country>

  <country code="SE" name="Sweden">
    <entry id="bus" >
      <name>BSD Users Sweden (BUS)</name>
      <url>http://bsdusers.se/</url>

      <description>The BSD Users Sweden (BUS) maintains a mailing
        list. To join send an email to <a
        href="mailto:majordomo@stacken.kth.se">
        majordomo@stacken.kth.se</a> with <code>subscribe bus</code>
        in the body. Located in Sweden.
      </description>
    </entry>

    <entry id="freebsd-se" >
      <name>The Swedish FreeBSD Community</name>
      <url>http://www.FreeBSD.se/</url>

      <description>FreeBSD.se is a Swedish FreeBSD community in which
        one can read and post articles and how-to:s in Swedish.  There
        is also an active forum for asking questions and helping
        others with problems related to FreeBSD.
      </description>
    </entry>
  </country>

  <country code="UA" name="Ukraine">
    <entry id="uafug" >
      <name>Ukrainian FreeBSD User Group (UAFUG)</name>
      <url>http://www.uafug.org.ua/</url>

      <description>The Ukrainian FreeBSD User Group (UAFUG) is a
        Russian/Ukrainian languages oriented user group for the
        Ukrainian users of BSD-derivatives, promoting and supporting
        BSD flavours and Open Source usage.  The UAFUG has had its
        first meeting on 2 June 2002 and meets every 2-3 weeks.  We
        also provide an open forum for all BSD-related things in the
        Russian and Ukrainian languages (though we can read/write in
        english as well).  To join the mailing list send a message to
        <a href="mailto:majordomo@FreeBSDDiary.org.ua">
        majordomo@FreeBSDDiary.org.ua</a> with <code>subscribe
        freebsd</code> in the body of the message. Check the <a
        href="http://www.uafug.org.ua/">link</a> above for more
        information.  Located in the Ukraine.
      </description>
    </entry>
  </country>

  <country code="GB" name="UK">
    <entry id="bsdgroups" >
      <name>Manchester BSD Users Group</name>
      <url>http://www.bsdgroups.org.uk/manchester</url>

      <description>The Manchester BSD Users Group meets reasonably
        often in the Lass O'Gowrie, on Charles Street, Manchester.
        Contact <a href="mailto:sams@bsdgroups.org.uk">Sam Smith</a>
        for more information.  Located in The United Kingdom,
        Manchester.
      </description>
    </entry>

    <entry id="ukug">
      <name>FreeBSD UK Users group (FreeBSD UKUG)</name>
      <url>http://mailman.uk.freebsd.org/mailman/listinfo/ukfreebsd</url>

      <description>The FreeBSD UKUG (FreeBSD UK User's Group) exists
        for the benefit of FreeBSD users in the United Kingdom.
        Please follow the link for more information.  Located in
        the United Kingdom.
      </description>
    </entry>
  </country>
</continent>

<continent name="North America">
  <country code="US" name="USA">
  <entry id="amesfug">
    <name>The Ames Free-Unix Group (amesfug)</name>
    <url>http://www.amesfug.org</url>
    <description>The Ames Free-Unix Group aims to promote the use of
      Free Unix.  We meet on the campus of Iowa State University once a
      month and hold a presentation with an open question and answer
      session afterwards.  You can join our mailing list by visiting
      <a href="http://lists.amesfug.org/mailman/listinfo">
	http://lists.amesfug.org/mailman/listinfo</a>.  Located in
      Ames, Iowa.
    </description>
  </entry>

  <entry id="bugor">
    <name>BSD User Group Oak Ridge (BUGOR)</name>
    <url>http://sites.google.com/site/bugortn/Home</url>
    <description>BUGOR is an open and free network of BSD users in the
      Oak Ridge TN area.  Ideally, professional sysadmins, programmers
      and grizzled old hackers will meet each week to explore and debate
      the intricacies of the Unix design philosophy and the art of Unix
      programming while mentoring neophyte users and rehabilitating
      WIMP users.
    </description>
  </entry>

  <entry id="buug">
    <name>The Berkeley Unix User Group</name>
    <url>http://www.buug.org</url>
    <description>The Berkeley Unix User Group is a general Unix Users
      Group for anyone in the San Fransico Bay Area.  We meet on a
      weekly basis in downtown Berkeley.  Visit the web site or send a
      message to <a href="mailto:buug-request@weak.org">
        buug-request@weak.org</a> with <code>subscribe</code> in the
      body.  Located in Berkeley, CA.
    </description>
  </entry>

  <entry id="cdbug">
    <name>The Capitals District *BSD Users Group</name>
    <url>http://lists.nycbug.org/mailman/listinfo/cdbug-talk</url>
    <description>The Capitals District *BSD Users Group draws it's
      membership from New York's capital district and the surrounding
      communities.  CDBUG was founded in December of 2004 and has a
      small but growing membership.  We currently meet on the last
      Sunday of every month in the Albany area.  Our mailing list is
      graciously being hosted by NYCBUG at: <a
	href="http://lists.nycbug.org/mailman/listinfo/cdbug-talk">
	http://lists.nycbug.org/mailman/listinfo/cdbug-talk</a>.
      Located in Albany, NY.
    </description>
  </entry>

  <entry id="chifug">
    <name>The Users of Free Operating Systems (UFO Chicago)</name>
    <url>http://www.chifug.org</url>
    <description>The Users of Free Operating Systems (UFO Chicago) is
      an open-source Unix User Group that meets twice a month
      in Chicago.  For directions and mailing list information, please
      check our web site <a href="http://ufo.chicago.il.us">
        http://ufo.chicago.il.us</a>.  Chicago, IL.
    </description>
  </entry>

  <entry id="cfug">
    <name>The Connecticut Free Unix Users Group (CFUG)</name>
    <url>http://www.cfug.org</url>
    <description>The Connecticut Free Unix Users Group (CFUG) is
      devoted to free Unix, but has resources for almost all Unixen.
      Their area of operation is Connecticut and Western Massachusetts.
      More information can be found at <a href="http://www.cfug.org/">
        http://www.cfug.org</a>.  Located in Connecticut.
    </description>
  </entry>

  <entry id="kulua">
    <name>Kansas Unix &amp; Linux Users Association (KULUA)</name>
    <url>http://kulua.org</url>
    <description>The Kansas Unix &amp; Linux Users Association (KULUA)
      is a Free Unix User Group based in Lawrence, Kansas, but with
      users throughout eastern Kansas and western Missouri.  We have
      about 120 members and meet biweekly.  Visit the web site or email
      <a href="mailto:kulua@kulua.org">kulua@kulua.org</a> for more
      information.  Located in Lawrence, Kansas.
    </description>
  </entry>

  <entry id="yahoo-club">
    <name>The Yahoo Club</name>
    <url>http://clubs.yahoo.com/clubs/bsdusersoflosangeles</url>
    <description>The Yahoo Club group is a foundation for a Los Angeles
      based BSD User Group.  Located in Los Angeles, CA.
    </description>
  </entry>

  <entry id="nmlug">
    <name>NMLUG</name>
    <url>mailto:majordomo@swcp.com</url>
    <description>The NMLUG in Alburquerque meets once a month and
      supports both BSD and Linux users.  To join the mailing list,
      send a message to <a href="mailto:majordomo@swcp.com">
        majordomo@swcp.com</a> with <code>subscribe nmlug</code> in
      the body.  Located in New Mexico.
    </description>
  </entry>

  <entry id="nycbug">
    <name>New York City *BSD User Group (NYCBUG)</name>
    <url>http://www.nycbug.org</url>
    <description>The New York City *BSD User Group (NYCBUG) meets the
      first Wednesday of the month.  Mailing lists are available at
      <a href="http://lists.nycbug.org">http://lists.nycbug.org</a>.
      Located in New York, NY.
    </description>
  </entry>

  <entry id="raleighbug">
    <name>The Raleigh BSD Users Group </name>
    <url>http://www.raleighbug.org/</url>
    <description>The Raleigh BSD Users group welcomes all BSD users
      of the Raleigh, NC area.  The purpose of the group is to
      exchange ideas and learn about Unix.  Please visit <a
      href="http://www.raleighbug.org">our website</a> for
      more information.
    </description>
  </entry>

  <entry id="sacblug">
    <name>The Sacramento BSD and Linux Users Group (SacBLUG)</name>
    <url>http://sacblug.org/</url>
    <description>The Sacramento BSD and Linux Users Group (SacBLUG) is
      a collaborative effort amongst *BSD/Linux professionals in the
      Sacramento area, with a focus on enterprise and server
      environments.  Our aim is to share our experiences in managing
      and maintaining systems while also providing a social network
      for members.  Check out <a
      href="http://sacblug.org">our website</a> for more information.
    </description>
  </entry>

  <entry id="yfuug">
    <name>Yavapai Free Unix Users Group</name>
    <url>mailto:rcarter@consys.com</url>
    <description>The Yavapai Free Unix Users Group is now forming for
      *BSD/Linux, etc., users in Northern Arizona.  Please contact
      Russel Carter (<a href="mailto:rcarter@consys.com">
        rcarter@consys.com</a>) for details.  Located in Northern
      Arizona.
    </description>
  </entry>

  <entry id="wplug">
    <name>Western Pennsylvania Linux Users Group (WPLUG)</name>
    <url>http://www.wplug.org</url>
    <description>The Western Pennsylvania Linux Users Group (WPLUG)
      has a strong and growing community of BSD users that it supports.
      See our home page (<a href="http://www.wplug.org">
        http://www.wplug.org</a>) for information on regular meetings
      and join the mailing lists.  Located in Pennsylvania.
    </description>
  </entry>

  <entry id="pbclug">
    <name>Palm Beach County Linux Users Group</name>
    <url>http://groups.yahoo.com/group/pbclinux</url>
    <description>We are a user group for discussion and advocacy of
      Linux, FreeBSD and other Open Source operating systems and Open
      Source software.  While most members run Linux systems, there are
      FreeBSD users in the group.  Discussion and questions on any
      Open Source operating system topic or on Open Source software
      in general is welcome.  The organization also actively
      participates in events such as Software Freedom Day.
      Send us an <a href="mailto:pbclug@Comcast.net">email</a> or
      join our <a
      href="http://groups.yahoo.com/group/pbclinux">mailinglist</a>.
    </description>
  </entry>

  <entry id="phoenix">
    <name>Phoenix BSD Users Group</name>
    <url>http://bsd.phoenix.az.us</url>
    <description>The Phoenix BSD Users Group is fully open for business.
      Anyone from the Phoenix area please feel free to join in <a
        href="http://bsd.phoenix.az.us">http://bsd.phoenix.az.us</a>.
      Located in Phoenix, AZ.
    </description>
  </entry>

  <entry id="portland">
    <name>Portland (Oregon) FreeBSD Users Group</name>
    <url>mailto:pdx-freebsd@toybox.placo.com</url>
    <description>The Portland (Oregon) FreeBSD Users Group meets on the
      third Thursday of each month.  Mail <a
        href="mailto:pdx-freebsd@toybox.placo.com">The Portland FreeBSD
	Users Group</a>.  Located in Portland, OR.
    </description>
  </entry>

  <entry id="rlug">
    <name>Reno Linux Users Group (RLUG)</name>
    <url>http://www.rlug.org</url>
    <description>The Reno Linux Users Group (RLUG) meets monthly in Reno,
      Nevada and discusses the use of BSD and Linux.  Visit <a
	href="http://www.rlug.org">our website</a> for more information,
      where you may also join our mailing list. Located in Reno, NV.
    </description>
  </entry>

  <entry id="seabug">
    <name>Seattle BSD Users Group (SeaBUG)</name>
    <url>http://www.seabug.org</url>
    <description>The Seattle BSD Users Group (SeaBUG) meets
      occasionally.  View our web site for more details and for
      information on how to join our mailing list.  Located in
      Seattle, WA.
    </description>
  </entry>

  <entry id="sdbug">
    <name>San Diego BSD Users Group</name>
    <url>http://www.sdbug.org</url>
    <description>The San Diego BSD Users Group for users of FreeBSD,
      OpenBSD and NetBSD.  The meeting is first Thursday of every month
      at Boll Weevil off Clairemont Mesa Blvd., near the intersection
      with Ruffin Road.  More information can be found <a
        href="http://www.sdbug.org">here</a>.  Located in San Diego, CA.
    </description>
  </entry>

  <entry id="bafug">
    <name>Bay Area BSD Users Group (BABUG)</name>
    <url>http://www.bafug.org</url>
    <description>The Bay Area BSD Users Group (BABUG) has monthly
      meetings, alternating between San Fransisco and Berkeley.  Those
      interested in attending should visit the web site or send mail to
      the <a href="mailto:jgrosch@mooseriver.com">BABUG Web Master</a>.
      Located in North San Fransisco Bay Area.
    </description>
  </entry>

  <entry id="svbug">
    <name>Silicon Valley BSD User Group (SVBUG)</name>
    <url>http://www.svbug.com</url>
    <description>The Silicon Valley BSD User Group (SVBUG), a forum for
      BSD and BSD embedded systems, meets on the first Thursday of the
      month.  Meetings are held at the Carl's JR. on First Street and
      Trimble Road in San Jose, California.  For details on events or
      what is going on visit the web site or send a message to <a
        href="mailto:webmaster@svbug.com">webmaster@svbug.com</a>.
      Located in Silicon Valley, CA.
    </description>
  </entry>

  <entry id="tfug">
    <name>Tucson Free Unix Group (TFUG)</name>
    <url>http://www.tfug.org</url>
    <description>Tucson Free Unix Group, Arizona.  Located in Tucson,
      AZ.
    </description>
  </entry>

  <entry id="su3g">
    <name>The Southern Utah Unix Users Group (SU3G)</name>
    <url>http://www.su3g.org</url>
    <description>
      The Southern Utah Unix Users Group (SU<sup>3</sup>G, SU^3G, SU3G,
      or SUUUG) is for users of any version of Unix or Unix-like
      operating system, commercial or open source.  So, whether you use
      FreeBSD, Linux, Mac OS X, BSD/OS, Solaris, OpenBSD, or any other
      Unix or Unix-like OS, and if you live, work, or associate with
      someone who lives or works in southwestern Utah, then consider
      joining the SU<sup>3</sup>G.  For more information send an email
      to <a href="mailto:kendall@su3g.org">kendall@su3g.org</a> or
      visit the website at <a href="http://www.su3g.org/">
        http://www.su3g.org/</a>.
    </description>
  </entry>

  <entry id="gllug">
    <name>Greater Lansing Linux User Group</name>
    <url>http://gllug.org</url>
    <description>GLLUG is an organization for users of Linux, FreeBSD,
      and associated free software in Lansing, Michigan (USA) and the
      surrounding area.  As with the organization at large, the weekly
      meetings are very informal.  We talk about what we've been working
      on for the last few weeks and catch each other up with what is
      going on.  Often there is an official topic proposed ahead of time
      on the mailing list, but sometimes we just discuss what is on our
      minds.
    </description>
  </entry>

  <entry id="capbug">
    <name>Capital Area BSD Users Group</name>
    <url>http://capbug.org</url>
    <description>We meet on the last Tuesday of the month.  Join
      the mailing list by sending a message to
      <a href="mailto:misc+subscribe@capbug.org">misc+subscribe@capbug.org</a>.
      We meet in Maryland, but welcome anyone from MD, DC or VA.
    </description>
  </entry>

  <entry id="kcbug">
    <name>Kansas City Area *BSD User.s Group</name>
    <url>http://www.kcbug.org</url>
    <description>We are a beginning BSD User Group with currently two
      members. If you would like to join, please visit our web site
      <a href="http://www.kcbug.org/">here</a>.  Our goals are to have
      fun, help others to learn about and using *BSD and evangelize the
      BSD operating systems.
    </description>
  </entry>

  <entry id="wcosug">
    <name>Western Connecticut's Open Source User Group (WCOSUG)</name>
    <url>http://wcosug.org</url>
    <description>WCOSUG is The Western Connecticut Open Source User
      Group. Unlike Linux User Groups we also recognize the BSD's and
      other operating systems. We are based in Fairfield County, CT,
      we have several users based on the CT, NY border and due to lack
      of an Eastern NY User Group we feel that it is our job to pull up
      the slack and help these users out.
    </description>
  </entry>

  </country>

  <country code="CA" name="Canada">
  <entry id="gtabug">
    <name>GTABUG</name>
    <url>http://www.gtabug.ca</url>
    <description>The GTABUG User Group welcomes all BSD users.  Monthly
      meetings give attendees a chance to share ideas, discussion and
      information.  Installations and other events help preach the good
      news of BSD to the community.  Come drop by for a meeting!
      Located in Greater Toronto Area, Ontario.
    </description>
  </entry>
  <entry id="wuug">
    <name>Windsor Unix Users Group</name>
    <url>http://www.wuug.org</url>
    <description>The Windsor Unix Users Group (Windsor, Ontario, Canada)
      covers BSD, Solaris, SCO and others.  This is not specifically a
      FreeBSD User Group, but we do already have members running
      FreeBSD.  The group operates a mailing list
      (wuug-list@unixpower.org).  More information can be found at <a
      href="http://www.wuug.org">http://www.wuug.org</a>.
    </description>
  </entry>

  <entry id="ottawa">
    <name>Ottawa-Carleton Unix Users Group</name>
    <url>http://www.ocbug.ca/</url>
    <description>We are a small group of
      hobbyists, users, authors, sysadmins, and hackers that meet monthly to
      discuss the latest topics in a very informal setting.  Check our
      <a href="http://mail.ocbug.ca/mailman/listinfo/ocbug_ocbug.ca">mailing list</a>
      for the latest information.
      Located in Ottawa, Ontario.
    </description>
  </entry>
  </country>

  <country code="MX" name="Mexico">
  <entry id="freebsd-mexico">
    <name>The FreeBSD Mexican Community</name>
    <url>http://www.freebsd.mx</url>
    <description>The FreeBSD Mexican Community is a spanish language
      orientated user group which wants to promote and educate people about
      BSD operating systems by making tutorials and organizing events and
      conferences.  We are also working with other Open Source Unix
      derivates like NetBSD, OpenBSDa and Linux.  For more
      information please visit our <a href="http://freebsd.mx/">website</a>
      or send us an <a href="mailto:ernesto@freebsd.mx">email</a>.
    </description>
  </entry>
  </country>
</continent>

<continent name="South America">
  <country code="AR" name="Argentina">
  <entry id="beersd-argentina">
    <name>bug.dc.uba.ar</name>
    <url>http://bug.dc.uba.ar</url>

    <description>Buenos Aires based group with monthly meetings.
      Comprised of many students at the University of Buenos Aires
      Computer Science department.</description>
  </entry>
  </country>

  <country code="PE" name="Peru">
  <entry id="bsdperu">
    <name>The BSD Users Group Peru</name>
    <url>http://www.bsd-peru.org</url>
    <description>The BSD Users Group Peru is a group of people with the
      objective to promote the use of the different *BSD systems in Peru.
      They provide information, documentation and forums for discussion.
      For more information you can use their web site <a
	href="http://www.bsd-peru.org">http://www.bsd-peru.org</a> or write to
      <a href="mailto:contacto@bsd-peru.org">contacto@bsd-peru.org</a>
    </description>
  </entry>
  </country>

  <country code="VE" name="Venezuela">
  <entry id="bsd-ve">
    <name>Grupo de Usuarios BSD de Venezuela</name>
    <url>http://groups.google.com/group/bsd-ve/about</url>
    <description>The Grupo de Usuarios BSD de Venezuela is a forum
      for *BSD users in Venezuela.  For more information please
      contact the group admin <a
      href="mailto:amijaresp@gmail.com">Alberto Mijares</a>.
    </description>
  </entry>
  </country>
  
  <country code="BR" name="Brazil">
  <entry id="fugspbr">
    <name>The Brazilian FreeBSD User Group (FUG-BR)</name>
    <url>http://www.fug.com.br</url>
    <description>The Brazilian FreeBSD User Group (FUG-BR) is a
      Portuguese language oriented User Group intended to help
      Brazilian FreeBSD users to find support and articles on and
      about FreeBSD in the Portuguese language.  We keep some projects
      such as the "<a href="http://www.sourceforge.net/projects/livecd">
	FreeBSD LiveCD</a>".  Currently the group has over 800 members and
      our mailing list has an average traffic of 80 messages per day.
      To join FUG-BR mailing list, visit <a
	href="https://www.fug.com.br/mailman/listinfo/www">
	https://www.fug.com.br/mailman/listinfo/www</a>.
    </description>
  </entry>

  <entry id="bsdsul">
    <name>User Group BsdSul</name>
    <url>http://www.bsdsul.com.br/</url>
    <description>The User Group BsdSul (Grupo de Usuarios
      de FreeBSD du Sul do Brasil) is a South Brazilian
      User Group of FreeBSD.  They provide information,
      documentation and forums for discussion.  For more
      information you can use their web site.
    </description>
  </entry>
  </country>

  <country code="CL" name="Chile">
  <entry id="bsdcl">
    <name>BSD Chile</name>
    <url>http://www.bsd.cl</url>

    <description>The BSD Chile User Group (bsd.cl) maintains mirrors,
      documents, and mailing lists for the Chilean BSD community.  The
      group also provides infrastructure for BSD events in Chile and
      can be reached on the IRC server irc.bsd.cl #BSD in addition to
      the <a href="http://www.bsd.cl">www.bsd.cl</a> web site.
      </description>

  </entry>
  </country>
</continent>

<continent name="Asia">
  <country code="CN" name="China">
  <entry id="freebsdchina">
    <name>The FreeBSD China Community</name>
    <url>http://www.freebsdchina.org</url>
    <description>The FreeBSD China Community was formed June
      2002.  We provide Web based support <a
	href="http://www.FreeBSDChina.org/forum/">forum</a>
      and <a href="http://wiki.FreeBSDChina.org/">wiki</a>
      on FreeBSD and other *BSD technologies.</description>
  </entry>
  </country>

  <country code="JP" name="Japan">
  <entry id="debug">
    <name>The Daibou East *BSD Users Group (DEBUG)</name>
    <url>http://www.debug.gr.jp</url>
    <description>The Daibou East *BSD Users Group (DEBUG) is now
      forming for *BSD users in Tsukuba area.  Located in Ibaraki,
      Japan.
    </description>
  </entry>
  <entry id="kbug">
    <name>The Kansai *BSD Users Group (K*BUG)</name>
    <url>http://www.kbug.gr.jp</url>
    <description>The Kansai *BSD Users Group was established on
      November 13, 1999.  It is expected to promote communication of
      any of the BSD variants' users.  Some of its activities are to
      hold friendly parties of the members, and to hold seminars
      covering wide variety of topics.  Please e-mail here (<a
        href="mailto:kbug-admin@kbug.gr.jp">kbug-admin@kbug.gr.jp</a>).
      Located in Kansai, Japan.
    </description>
  </entry>
  <entry id="ebug">
    <name>The Echigo BSD Users Group (EBUG)</name>
    <url>http://www.ebug.jp</url>
    <description>The Echigo BSD Users Group is the users group for BSD
      users around Echigo (aka Niigata).  For more information on our
      events and mailing lists, please check the EBUG web site.
    </description>
  </entry>

  </country>

  <country code="ID" name="Indonesia">
  <entry id="jfug">
    <name>The Jogja FreeBSD Users Group</name>
    <url>mailto:22961476@students.ukdw.ac.id</url>
    <description>The Jogja FreeBSD Users Group is based in Yogyakarta
      City, Indonesia.  Send email to <a
        href="mailto:22961476@students.ukdw.ac.id">
	22961476@students.ukdw.ac.id</a> for more information.
    </description>
  </entry>
  </country>

  <country code="IL" name="Israel">

  <entry id="ibug">
    <name>The Israeli *BSD Users Group</name>
    <url>mailto:bsd-il@libagent.org</url>
    <description>The Israeli *BSD Users Group has a mailing list for
      general discussion of *BSD operating systems for Israeli users,
      which includes topics such as setting up and working with
      Hebrew in BSD and setting up Internet connections with ISPs.
      The Israeli *BSD mailing list promotes the use of *BSD throughout
      the country, and acts as an information center for all *BSD users.
      Mailing list posts can be sent to <a
        href="mailto:bsd-il@libagent.org">bsd-il@libagent.org</a>.
      Visit <a href="http://www.libagent.org/mailman/listinfo/bsd-il">
        http://www.libagent.org/mailman/listinfo/bsd-il</a> to
      subscribe. Located in Israel.
    </description>
  </entry>
  </country>

  <country code="MY" name="Malaysia">
  <entry id="mybsd-malaysia">
    <name>The MyBSD Malaysia Project</name>
    <url>http://www.mybsd.org.my</url>
    <description>The MyBSD Malaysia Project is a Kuala Lumpur based User
      Group for BSD users and open-source in general, promoting and
      supporting FreeBSD, OpenBSD, NetBSD and open source usage.  We
      meet once a month, usually at Universiti Malaya or Restaurant
      Bahadur Shah.  One of our projects is to develop a <a
        href="http://staff.mybsd.org.my/skywizard/bsd-explorer">Unix
	file manager</a>.  Visit our web site or contact <a
	href="mailto:info@mybsd.org.my">info@MyBSD.org.my</a> for more
      information.
    </description>
  </entry>
  </country>

  <country code="PK" name="Pakistan">
  <entry id="bsdpakistan">
    <name>BSD Pakistan</name>
    <url>http://bsdpakistan.org/</url>
    <description>BSD Pakistan is a user community who aims to promote
      and educate people about BSD Operating Systems; including FreeBSD,
      NetBSD, OpenBSD, DragonFly BSD and Mac OS X.  For more information
      please visit our web site.
    </description>
  </entry>
  </country>

  <country code="IN" name="India">
  <entry id="bangbug">
    <name>Bangalore BSD User Group (BANGBUG)</name>
    <url>http://www.bangbug.org/</url>
    <description>BANGBUG - (Bangalore BSD User Group) is a users group
      for open source Unix-based systems in the Bangalore India area.
      Our primary emphasis is on FreeBSD, but enthusiasts of other open
      source Unix and Unix-like systems such as Linux, DragonFly BSD,
      OpenBSD, NetBSD, Darwin, MacOsX and OpenBSD are welcome.
    </description>
  </entry>
  </country>

  <country code="MN" name="Mongolia">

  <entry id="muug">
    <name>Mongolian Unix User Group (MUUG)</name>
    <url>http://www.mnbsd.org/</url>
    <description>MUUG - (Mongolian Unix User Group) was formed in 2004
      and it is based in Ulaanbaatar, Mongolia.  Our objectives are to
      share the knowledge, and to promote and educate people about
      Unix, Linux, and BSD operating systems and open source software.
      We meet once a month.  We also operate a local Unix mailing list
      and maintain downloadable images of Unix/Linux/BSD distros. For
      more information please send email to
      <a href="mailto:admin@mnbsd.org">admin@mnbsd.org</a>
      or visit our web site at
      <a href="http://www.mnbsd.org/">http://www.mnbsd.org/</a>.
      The web site is in Mongolian only.</description>
  </entry>
  </country>

  <country code="BD" name="Bangladesh">
  <entry id="bangladesh">
    <name>Bangladeshi FreeBSD User Group</name>
    <url>http://www.freebsdmovement.org/</url>
    <description>The Bangladeshi FreeBSD User Group is a group of the FreeBSD
      users in Bangladesh.  This group aims to build the scope of sharing
      knowledge and experiences on FreeBSD.
    </description>
  </entry>
  </country>

  <country code="TR" name="Turkey">
  <entry id="enderunix">
    <name>EnderUNIX (Turkish *BSD team)</name>
    <url>http://www.enderunix.org/?lng=en</url>
    <description>EnderUNIX is a Turkish BSD user group that provides
      documentation, tips, mailing lists, and mirrors for BSD operating
      systems.</description>
  </entry>
  </country>

</continent>
</usergroups>