/[cvs]/joko/doc/SampleTasks/joko_2003-03.twingle
ViewVC logotype

Contents of /joko/doc/SampleTasks/joko_2003-03.twingle

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.178 - (show annotations)
Sat Apr 5 01:27:19 2003 UTC (21 years, 1 month ago) by joko
Branch: MAIN
CVS Tags: HEAD
Changes since 1.177: +2 -128 lines
AutoCommit from grasshopper

1 @sequence meta
2 @title joko's sample notes - 2003-03 - ResourceIntegration
3 @subtitle ResourceIntegration II
4 @topic joko's Tasks
5 @author joko@netfrag.org
6 @document-mime-type text/plain
7 @document-mime-type text/english text/german
8 @document-mime-type text/vnd.twingle
9
10 @sequence meta
11 @document-history
12 @cvs-info
13 $Id: joko_2003-03.twingle,v 1.177 2003/04/03 15:59:24 joko Exp $
14
15
16 Revision 1.93 2003/03/14 14:55:57 joko
17 + AUTOCOMMIT: updated/added content
18
19 Revision 1.91 2003/03/13 15:25:56 joko
20 + AUTOCOMMIT: updated/added content
21
22 Revision 1.90 2003/03/13 14:56:54 joko
23 + AUTOCOMMIT: updated/added content
24
25
26 Revision 1.3 2003/03/07 03:56:59 joko
27 + AUTOCOMMIT: updated/added content
28
29 Revision 1.2 2003/03/07 00:56:08 joko
30 + AUTOCOMMIT: updated/added content
31
32 Revision 1.1 2003/03/06 22:34:20 joko
33 + initial commit
34
35
36 @sequence meta
37 @x-transport
38 @x-transport-from grasshopper.netfrag.org
39 @x-transport-to quepasa.netfrag.org
40 @x-transporter Microsoft Windows
41 @x-transporter WinCVS [WinCVS 1.3.8.1 Beta 8 (Build 1)]
42 @x-transporter-protocol cvs client-server protocol
43 @x-transporter OpenSSH client on grasshopper [OpenSSH_3.4p1, SSH protocols 1.5/2.0, OpenSSL 0x0090607f]
44 @x-transporter-protocol ssh [OpenSSH Version 2]
45 @x-transporter OpenSSH daemon on quepasa [OpenSSH_3.4p1 Debian 1:3.4p1-1, SSH protocols 1.5/2.0, OpenSSL 0x0090603f]
46 @x-transporter cvs [Concurrent Versions System (CVS) 1.11.1p1 (client/server)]
47 @x-transporter-protocol cvs client-server protocol
48 @x-transporter Linux running on quepasa.netfrag.org [Linux version 2.4.18-29um (root@linux) (gcc version 2.95.3 20010315 (SuSE)) #1 Sun May 26 17:01:48 CEST 2002]
49 @x-transporter-protocol ext3
50 @x-transporter Linux running on h1.service.netfrag.org [Linux version 2.4.10-4GB (root@Pentium.suse.de) (gcc version 2.95.3 20010315 (SuSE)) #1 Tue Sep 25 12:33:54 GMT 2001]
51 @x-transporter-protocol ext3
52 #@x-converter twingle [Twingle 0.01 - http://search.netfrag.org/twingle]
53
54 @sequence script
55 @set o=@todo
56
57
58
59 @sequence block
60 @injected
61 @date 2003-03-06 20:29
62 @file [unknown]
63 @x-editor Notepad [Microsoft Editor Version 5.0 (Build 2195: Service Pack 3)
64 @x-transporter Microsoft COM
65 @x-transporter-protocol copy & paste negotiation
66 @x-editor UltraEdit [UltraEdit(r)-32 Professional Text/HEX Editor Version 8.10b]
67
68
69 o use arial|verdana for netscape|mozilla rendering on netfrag.org
70
71 - We get spam!
72 After feeling relatively safe through amavis based email filtering, it happened again.
73 jonen recieved some spam again.
74
75 Why?
76 I believe the addresses get collected by foreign agents crawling
77 the growing content on netfrag.org.
78
79 What todo now?
80 Mungle email addresses published on netfrag.org through some lisp-
81 or scheme-based address-mungler found recently.
82 They stay rfc-compliant, but are (hopefully) unreachable for common
83 regex parsers.
84 Send info to ->jonen.
85 @tbd Automate this task! Do you wanna rewrite each address by hand...???
86
87 o personal requirement:
88 o daily: review contributions made by other users
89 o requirement to solve this: have everything as rss/rdf and filter the xml by author
90
91 o rss.netfrag.org (register)
92 o establish some web-based rss-browser embedding content from
93 o RssGenerators for local content ...
94 o news//rss (for news.netfrag.org)
95 o cvs//rss (for cvs.netfrag.org)
96 o ... and RssGateways to other ones, possibly at remote locations
97 o phpWiki//rss (for www.netfrag.org)
98 o TWiki//rss (for future www.netfrag.org)
99
100 o post to perl-development (nfo.dev.perl):
101 o how to abstract the view/editing of xml-files via an api?
102 o fetch: all|single-node
103 o edit: single-node flattened into an object
104 o browser layer: locator registry (pointing to a) an orm-db and b) to a file-set of xml-files (our control-db))
105 o item layer: view/edit nodes of an xml-file a) in a tree-editor (look at HTML_Tree_XYZ itself!!!) and
106 b) split into our "flat-components" Item and List (object-like)
107
108 how b)? solve in backend!
109 o backend
110 o change values containing references to their interpolated placeholders to convert a node to an item
111 ->getNode(...)
112 example: getNode('root')
113 o place querying api via XPath parallel to that -> also returns a single node or multiples (a node-set)
114 ->getNodeSet(...)
115 example: getNodeSet('xpath-query|named-filter')
116 o establish backend querying api for xml-documents on top of that!
117 ->sendQuery(...) should dispatch to one of ->getNode or ->getNodeSet
118 o frontend
119 o browse relations (parent-, child-node) using the ValueInterpolator and the ItemComponent
120 o edit Attributes and Content of Nodes with the ItemComponent showing *two* areas (this is the "FlatteningOfNodes"):
121 o -> attributes
122 o -> content
123 That's the way various XML-EasyTree-Xyz implementations use to work.
124 @link http://www.cpan.org/
125 o frontend issues these generic rpc-commands to the backend (encapsulated somewhere)
126 o ->sendQuery(array(remote=1, rpc=1, blah=1, $query )) -
127 which gets dispatched by switching some stuff from "$query" to these methods under the hood (in fact, *implemented at backend side*)
128 o ->getNodeSet('xpath-query|named-filter')
129 example:
130 $xml_filter_query = array( 'return' => 'object|object-set', [filter => 'xpath-query|named-filter'] );
131 (speak: Item or List)
132 sendQuery(array(remote=1, rpc=1, blah=1, $xml_filter_query , xml=1??? )) -
133
134 --> what is 'remote' and/or 'rpc' about???
135 if i remember that right - 'remote' means 'orm' (the datasource-type) and 'rpc' means 'rpc' (the transport-type)
136
137 o new twingle-symbol-topology using ...
138 <code>
139 o ... @-tags (stolen from JavaDoc via phpDocumentor)
140 o @-tags only refer to scopes they live in
141 o make the basic work: @todo, @link, @see, etc. (but enhanced - of course - since perl doesn't limit you in any way....!!!)
142 o add some more: @sequence, @is-a, @title
143 o @see
144 o @embed this-and-that from these .twingle files:
145 o @link DummyNamespaces in PHP - final proposal.twingle
146 o @link Re - Namespaces in PHP.twingle
147 </code>
148
149 o project-metadata: / nfo topics
150 <code>
151 @is-a rfc
152 @todo tbd
153 x @topic source(cvs)
154 x @topic doc(api)
155 o @topic source(raw) (via symlinks: expand directories first, symlink files afterwards!)
156 o @topic doc(tutorial)
157 o @topic doc(examples)
158 o @topic doc(howto)
159 o introduce: @subtopic:
160 @topic source
161 @subtopic raw|cvs
162 @topic doc
163 @subtopic api|tutorial|examples|howto
164 </code>
165
166 o register: api.netfrag.org
167
168 o arcor!!!
169
170 o working alpha version of "Ts" on new server niu!!!
171
172 o .phpdocrc: split main code to module, integrate index-generation of predefined (registered) modules
173
174 o RssNewsletter:
175 o schedule
176 o hourly, daily, weekly, monthly, on-incoming
177 o choose topic
178 o all topics (cvs, news, api, docs, www)
179 o choose destination
180 o filtered-rss made available at specified url as xml or xhtml
181 o via email
182 o archived in archive-type (zip|tar) with format (html|)
183 made available at specified url
184
185 o look at FreeBSD's "doscmd"!!!
186
187 o mechanism to refactor old smtp-mail-messages into new nntp-news-posts
188 all our tools fail! *forwarding* the message seems to break mime (for e.g. the mozilla-viewer and probably others)
189 o possible solution: strip "--- forwarded by ---" - header before actually posting
190 maybe identifiable by subject: [Fwd: ]
191
192 o enhance Twingle:
193 o twingle2message:
194 o twingle2mail: twingle2rfc822, twingle2mime
195 o twingle2news: twingle2rfc
196
197 o gather version info from installed components:
198 o CPAN
199 o PEAR
200 x GNU: <program> --version (e.g.: cvs --version)
201 x OpenSSH: ssh -V
202 x Linux: cat /proc/version
203 o our Perl-/PHP- component system
204
205
206
207 @sequence block
208 @written
209 @date 2003-03-06
210 @x-editor UltraEdit [UltraEdit(r)-32 Professional Text/HEX Editor Version 8.10b]
211
212 o what are the MIME-types of XML-payloads sent between (e.g.) RPCXML-hosts???
213 text/xml???
214
215 look at /etc/mime.types!!!
216 e.g.: (stripped from there) - looking interesting:
217
218 text/*
219 text/x-java
220 text/uri-list
221 text/rfc822-headers
222 text/directory
223 text/vnd.IPTC.NewsML
224 text/vnd.IPTC.NITF
225 text/vnd.motorola.reflex
226 text/vnd.DMClientScript
227 text/richtext
228 text/rtf
229 text/plain
230 text/comma-seperated-values
231 text/css
232 text/enriched
233
234 --> vnd=vendor???
235
236 @sequence references
237 @title The text/enriched MIME Content-type
238 @link http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1896.html
239 @title Mechanisms for Specifying and Describing the Format of Internet Message Bodies
240 @link http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1521.html
241 @title The text/enriched MIME Content-type
242 @link http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1523.html
243 @title Mechanisms for Specifying and Describing the Format of Internet Message Bodies
244 @link http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1341.html
245 @title The text/enriched MIME Content-type
246 @link http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1563.html
247
248 message/delivery-status
249 message/disposition-notification
250 message/external-body
251 message/http
252 message/s-http
253 message/news
254 message/partial
255 message/rfc822
256
257 inode/chardevice
258 inode/blockdevice
259 inode/directory-locked
260 inode/directory
261 inode/fifo
262 inode/socket
263
264 multipart/*
265
266 o refactor some twingle tags using ETF:
267 @link http://citeseer.nj.nec.com/borenstein94textenriched.html
268 --- snip ---
269 @misc{ borenstein-textenriched,
270 author = "N. Borenstein",
271 title = "The text/enriched MIME Content-type",
272 url = "citeseer.nj.nec.com/borenstein94textenriched.html" }
273 --- snip ---
274
275 o re-enable yakka!
276 @link http://netfrag.org/~bareface/yakka/
277
278 o search.netfrag.org
279 o enable mnoGoSearch to index http://www.netfrag.org/docs/code/api/
280
281 o post xml-via-rpc-querying proposal from above to nfo.dev.perl and cc to jonen!
282
283 o enhancement for Twingle AutoLink LinkInterpolation:
284 o don't resolve namespace identifiers (e.g. 'Data::Storage') against
285 global search.netfrag.org/Search::This::Namespace
286 o query namespaced links against an organization-wide (custom) NamespaceRegistry before!!!
287 o use mysql/Tangram?
288 o use xml?
289 o just fallback to "GlobalSerchMode" if nothing was found in the step before!
290 o Data::Storage will directly be resolved to this url or tag afterwards:
291 @link http://www.netfrag.org/docs/topics/perl-libs/Data-Storage.html
292 and not to
293 @link http://www.netfrag.org/search/?q=Data::Storage&o=1&ul=/
294 like it was before!
295
296 o mimic the functionality of TLTP (The LDAP Trigger Process) by using Data::Rap.
297
298 o applications to be solved using LDAP
299 o organization-wide addressbook
300 o global / per-app software component registry
301 o organization-wide item library -> inventory
302
303 dot http://www.nc.ihost.com/ -> IBM
304
305 @topic EasyAuthoring
306 @see sdf
307 @see text/enriched
308 @see ETF
309 @see WPP
310 @link http://the.sunnyspot.org/wpp/index.html
311
312 @company Watchfire
313 @topic centrally located site integrity management software
314 @link http://www.watchfire.com/
315
316 o look at brian finley's "Storage" article series at http://hpc.devchannel.org/ !!!
317
318 - f-prot error on quepasa.netfrag.org:
319 root@quepasa:~# tail -f /var/log/mail.log
320 --- snip ---
321 Mar 7 18:23:30 quepasa amavis[20705]: Virus scanner failure: /usr/local/f-prot/f-prot (error code: 1)
322 Mar 7 18:23:30 quepasa amavis[20705]: virus_scan FAILED, retry: All virus scanners failed! at /usr/sbin/amavisd line 933, <GEN9> line 4712.
323 Mar 7 18:23:30 quepasa amavis[20705]: mail processing failed, RETRY/TEMPFAIL
324 Mar 7 18:23:30 quepasa sm-mta[20758]: h27HLveE020758: Milter: data, reject=451 4.7.1 Please try again later
325 --- snip ---
326 root@quepasa:~# /usr/local/f-prot/f-prot
327 Error: SIGN.DEF is damaged or incompatible with this version of F-PROT.
328 root@quepasa:~# /usr/local/f-prot/check-updates.sh
329 root@quepasa:~# /usr/local/f-prot/f-prot
330
331
332
333 @sequence block
334 @injected
335 @date 2003-03-07 19:01
336 @file [unknown]
337 @x-editor Notepad [Microsoft Editor Version 5.0 (Build 2195: Service Pack 3)
338 @x-transporter Microsoft COM
339 @x-transporter-protocol copy & paste negotiation
340 @x-editor UltraEdit [UltraEdit(r)-32 Professional Text/HEX Editor Version 8.10b]
341
342 @set ->=@see
343
344
345 o .phpdocrc: Tie::IxHash
346
347 - writing a browser is a complex task
348 -> Internet Explorer
349 -> KDE xyz
350 -> Mozilla
351
352 - writing a mailer is a complex task
353 -> Microsoft Outlook and (-Express)
354 -> KDE (KMail, Kontact, Kolab)
355 -> Evolution
356 -> Mahogany
357
358
359
360 @sequence block
361 @written
362 @date 2003-03-07
363
364 - janosch: pdf-gateway!?
365
366 o setup ->colorize on quepasa.netfrag.org
367
368 o refactor DesignPattern::MVC
369 o new: @uses instances of classes inherited from the base ones
370 DesignPattern::MVC::Model and DesignPattern::MVC::View, where
371 - DesignPattern::MVC::Model is-a DesignPattern::Observer::Subject
372 - DesignPattern::MVC::View is-a DesignPattern::Observer
373 o new: refactor the rules-subsystem to be a ChangeManager
374 between Subject and Observer sits a ChangeManager acting as mediator (is-a DesignPattern::Mediator)
375 @see http://selab.korea.ac.kr/selab/courses/GoF-patterns/observer.htm
376
377 o Twingle!
378 o twingle -> dispatchmail (Twingle::Mail)
379 o twingle -> twingledoc (Twingle::Doc)
380
381 o update www.netfrag.org
382 o refactor to "twingled/":
383 o http://netfrag.org/~joko/computing/overview/topics/topics/
384 o http://netfrag.org/~joko/computing/overview/topics/SampleTasks/
385 o update http://netfrag.org/~joko/computing/overview/topics/topics.html
386
387 x re-enable Yakka
388
389 o setup phpDocumentor from cvs
390
391 o "subscribe" a Folder (using rss/rdf!)
392
393 o Arial (or similar font w/o serifs) for Mozilla!
394
395 o edit preferences: Font (family, size)
396
397 o debian-upgrade -> perl-upgrade => missing CPAN packages =>
398 o check in intervals:
399 o /data/opt/dispatchmail/bin/dispatchmail
400 --- snip --- [/var/log/mail.log]
401 Mar 8 07:15:51 quepasa sm-mta[30731]: h286FmeE030726: to=|"/data/opt/dispatchmail/bin/dispatchmail --base=/home/joko/virtual/joko_mail", ctladdr=<joko_mail@quepasa.netfrag.org> (1000/100), delay=00:00:03, xdelay=00:00:01, mailer=prog, pri=30962, dsn=5.3.0, stat=unknown mailer error 2
402 Mar 8 07:15:51 quepasa sm-mta[30731]: h286FmeE030726: h286FpeD030731: DSN: unknown mailer error 2
403 Mar 8 07:15:52 quepasa sm-mta[30731]: h286FpeD030731: to=|"/data/opt/dispatchmail/bin/dispatchmail --base=/home/joko/virtual/joko_mail", ctladdr=<joko_mail@quepasa.netfrag.org> (1000/100), delay=00:00:01, xdelay=00:00:01, mailer=prog, pri=31986, dsn=5.3.0, stat=unknown mailer error 2
404 Mar 8 07:15:52 quepasa sm-mta[30731]: h286FpeD030731: h286FpeE030731: return to sender: unknown mailer error 2
405 Mar 8 07:15:53 quepasa sm-mta[30731]: h286FpeE030731: to=|"/data/opt/dispatchmail/bin/dispatchmail --base=/home/joko/virtual/joko_mail", ctladdr=joko_mail (1000/100), delay=00:00:01, xdelay=00:00:01, mailer=prog, pri=33010, dsn=5.3.0, stat=unknown mailer error 2
406 Mar 8 07:15:53 quepasa sm-mta[30731]: h286FpeD030731: Saved message in /var/lib/sendmail/dead.letter
407 --- snip ---
408 Can't locate Hash/Merge.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.0 /usr/local/share/perl/5.8.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8.0 /usr/share/perl/5.8.0 /usr/local/lib/site_perl .) at ./dispatchmail line 34.
409 BEGIN failed--compilation aborted at ./dispatchmail line 34.
410 x perl -MCPAN -e "install Hash::Merge"
411 dependencies resolved automagically: ->Clone
412 o /data/opt/dispatchmail/bin/postmessage
413 --- snip --- [/var/log/mail.log]
414 Mar 8 07:26:40 quepasa sm-mta[30953]: h286Q5eE030946: to=|/data/opt/dispatchmail/bin/dispatchmail, ctladdr=<links-computing@netfrag.org> (1014/1014), delay=00:00:32, xdelay=00:00:22, mailer=prog, pri=47232, dsn=5.3.0, stat=unknown mailer error 2
415 Mar 8 07:26:41 quepasa sm-mta[30953]: h286Q5eE030946: h286QfeD030953: DSN: unknown mailer error 2
416 Mar 8 07:26:47 quepasa sm-mta[30946]: h286Q5eG030946: collect: premature EOM: unexpected close
417 Mar 8 07:26:47 quepasa sm-mta[30946]: h286Q5eG030946: collect: unexpected close on connection from pD9E77CD4.dip.t-dialin.net, sender=<andreas.motl@ilo.de>
418 --- snip ---
419 Can't locate News/Article.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.0 /usr/local/share/perl/5.8.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8.0 /usr/share/perl/5.8.0 /usr/local/lib/site_perl .) at ./postmessage line 8.
420 BEGIN failed--compilation aborted at ./postmessage line 8.
421 x perl -MCPAN -e "install News::Article"
422 o /data/opt/dispatchmail/bin/buildmail
423 Can't locate MIME/Lite.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.0 /usr/local/share/perl/5.8.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8.0 /usr/share/perl/5.8.0 /usr/local/lib/site_perl .) at ./buildmail line 7.
424 BEGIN failed--compilation aborted at ./buildmail line 7.
425 x perl -MCPAN -e "install MIME::Lite"
426 o /data/opt/dispatchmail/bin-tests/build_dispatch_mode mail2news alt.test
427 DesignPattern::Bridge->load: Can't locate mixin/with.pm in @INC (@INC contains: /data/libs/nfo/perl/libs /etc/perl /usr/local/lib/perl/5.8.0 /usr/local/share/perl/5.8.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8.0 /usr/share/perl/5.8.0 /usr/local/lib/site_perl .) at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch/Newsgate.pm line 6, <STDIN> line 16.
428 BEGIN failed--compilation aborted at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch/Newsgate.pm line 6, <STDIN> line 16.
429 Compilation failed in require at (eval 6) line 1, <STDIN> line 16.
430 BEGIN failed--compilation aborted at (eval 6) line 1, <STDIN> line 16.
431 (/data/libs/nfo/perl/libs/Mail/Audit/Dispatch.pm:193)
432 Can't locate object method "Newsgate" via package "Mail::Audit::Dispatch" at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch.pm line 194, <STDIN> line 16.
433 x perl -MCPAN -e "install mixin"
434 o check okay:
435 --- snip --- [/var/log/mail.log]
436 Mar 8 07:45:55 quepasa sm-mta[31471]: h286jNeD031413: to=|"/data/opt/dispatchmail/bin/dispatchmail --base=/home/joko/virtual/joko_mail", ctladdr=<joko_mail@localhost> (1000/100), delay=00:00:32, xdelay=00:00:05, mailer=prog, pri=577260, dsn=2.0.0, stat=Sent
437 --- snip ---
438
439 o @lookup Data::Match - Complex data structure pattern matching [by Kurt A. Stephens]
440 @see also perl, Array::PatternMatcher, Data::Compare, Data::Dumper, Data::DRef, Data::Walker
441
442 o make up a notation which can explicit describe component far away
443 e.g. CPAN--Hash::Merge
444
445 o @lookat News::FormReply News::FormArticle News::AutoReply
446
447 x updated phpDocumentor to version from cvs
448 o trying to get uml-rendering working
449 x apt-get install dia
450 x apt-get install dia2code
451
452 x setup org.droogs--Autodia: location http://www.droogs.org/autodia/
453 #> cd /tmp
454 #> /data/opt/tools/Autodia-1.4/autodia.pl -l php -i * -p /data/www/virtual/netfrag/docs/nfo/code/flib -O
455 x setup CPAN--Template: perl -MCPAN -e "install Template"
456 ->CPAN--TT2
457 ->CPAN--Splash!
458 Which Splash! colour scheme would you like to use to build the
459 documentation? Acceptable values are:
460 Name Colours
461 -------------------------
462 default lilac/mauve
463 aqua aqua/marine
464 blue grey75/blue75
465 green grey75/green75
466 grey grey75/grey50
467 leon red75/orange/white/black
468 red grey75/red75
469 Enter name of colour scheme: [default]
470 ->CPAN--AppConfig
471 ->CPAN--GD
472 CPAN.pm: Going to build L/LD/LDS/GD-2.06.tar.gz
473 NOTICE: This module requires libgd 2.0.5 or higher.
474 ->Debian--libgd2: apt-get install libgd2 libjpeg62 libpng2 xlibs zlib1g
475 ->Debian--debconf ->Debian--nethack-common ->Debian--xfree86-common
476 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
477 Installing new version of config file /etc/X11/Xsession.d/99xfree86-common_start ...
478 Adding system startup for /etc/init.d/xfree86-common ...
479 /etc/rcS.d/S70xfree86-common -> ../init.d/xfree86-common
480 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
481 Setting up X server socket directory /tmp/.X11-unix...done.
482 Setting up xlibs (4.2.1-6) ...
483 ->CPAN--Math::Trig
484 ->Debian--libgd2-xpm: apt-get install libgd2-xpm libgd2-xpm-dev
485 #> cd /.cpan/build/GD-2.06
486 #> make
487 x some further library-patches: cd /usr/lib
488 #> ln -s ln -s libperl.so.5.8 libperl.so
489 #> ln -s libpng.so.2 libpng.so
490 #> ln -s libfreetype.so.6 libfreetype.so
491 #> ln -s libjpeg.so.62 libjpeg.so
492 x test:
493 #> ld -l png|jpeg|freetype|perl|X11
494 X11 still fails with make GD!!!
495 #> cd /.cpan/build/GD-2.06
496 #> make
497 /usr/bin/ld: cannot find -lX11
498 collect2: ld returned 1 exit status
499 make: *** [blib/arch/auto/GD/GD.so] Error 1
500 #> apt-get install xlibs-dev
501 #> make
502 yai!
503 #> make test
504 t/GD..........ok 1/10libpng warning: Application was compiled with png.h from libpng-1.2.5
505 libpng warning: Application is running with png.c from libpng-1.0.12
506 gd-png: fatal libpng error: Incompatible libpng version in application and library
507 #> apt-get install libpng2-dev
508 #> apt-get install libjpeg62-dev
509 ... still the same error with "make test"
510 #> apt-get install libpng3 libpng3-dev
511 #> apt-get install libfreetype6-dev
512 The first output xml is seen! Great! Let's move on to graphviz:
513 Can't locate GraphViz.pm in @INC (@INC contains: /data/opt/tools/Autodia-1.4 /etc/perl /usr/local/lib/perl/5.8.0 /usr/local/share/perl/5.8.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8.0 /usr/share/perl/5.8.0 /usr/local/lib/site_perl .) at /data/opt/tools/Autodia-1.4/Autodia/Diagram.pm line 336.
514 #> apt-get install graphviz
515 ???#> perl -MCPAN -e "install Template"
516 #> perl -MCPAN -e "install Graphviz"
517 ->CPAN--IPC::Run
518 ->CPAN--Graph
519 ->CPAN--Math::Bezier
520 ->CPAN--Heap
521 Freetype Font's do not work!
522 #> apt-get install freetype2-tools
523 #> apt-get install libttf-dev
524 #> apt-get install xfonts-scalable
525 #> apt-get install xfonts-base
526 #> apt-get install ttf-freefont
527 Freefont Serif, Sans and Mono Truetype fonts:
528 A set of free high-quality TrueType fonts covering the UCS character set.
529 These fonts are similar to the (in)famous Helvetica, Times and Courier fonts.
530 http://packages.debian.org/unstable/x11/ttf-freefont.html
531 (#> apt-get install ttf-xfree86-nonfree ttf-larabie-deco ttf-larabie-straight ttf-larabie-uncommon)
532 #> defoma-font register-all /etc/defoma/hints/ttf-freefont.hints
533 o enhance:
534 root@quepasa:/home/joko/public_html/test# ./.autodiarc
535 getting pattern for php
536 using directory : /data/www/virtual/netfrag/docs/nfo/code/org.netfrag.glib
537 recursively searching files..
538 o the "php-pattern" should also contain namespaces and stuff
539 (components gets instantiated by either 'mkObject' or 'php::mkComponent')
540 make this possible!
541
542 o quick (javascript) search for netfrag.org and packages.debian.org (xul?)
543
544 o phpDirectoryIndex:
545 o integrate Joshua Eichhorns 'auth' [[http://cvs.joshuaeichorn.com/cvsweb.cgi/auth/]]
546 o hide more entries: e.g. 'CVS' (declare as "cvs-repository-metadata" - "hidden by default")
547
548 @lookat http://cvs.joshuaeichorn.com/cvsweb.cgi/phpXmlTransform/
549
550 o autodia: enhance with "projects"
551 <-> couple with phpDocumentor
552
553 o phpDocumentor: try php 4.3.0 for having cross-indexed browsable source as an additional feature ;-)
554 o <-> link to pages prepared by Autodia
555 o add additional browser in top left frame for cross-domain-browsing (having multiple apis beside each other)
556 o the html-title! (make it unique!!!)
557
558 o for Autodia:
559 o resize images to a) 800x600 portrait and b) DIN A 4 square or s.th.l.th.
560 => x .autozoom -> zoomall -> zoommulti -> zoomone
561 o stamp picture with header and footer (little expressions for including predefined title, current filename, date, etc.!)
562 o idea: render as SVG???
563 o class- and package-diagrams:
564 o "Class" for relationships of Code- and DB-Schema-classes
565 o "Package" for relationships of code-packages
566 o integrate with phpDocumentor:
567 /data/opt/tools/phpdocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/left_frame.tpl
568 o Autodia-TODO:
569 Add ability to split projects into multiple diagrams and group contents of
570 a diagram/subdir into system boxes - much improving clarity in big
571 projects.
572
573 o glib-namespace aufräumen!
574
575 o twingle
576 o what about "<pre>"-blocks?
577 o what about non-html-tags (e.g. <optional-var-name>)?
578 => we'll probably need a html-tag-db to solve this
579 o establish as RunnerAgent and IntervalRunnerAgent on quepasa!
580
581 o phpDocumentIndex
582 o recognize symlinked directories!!!
583 o integrate with ImageZoom written for Autodia
584 -> manipulate images: zoom, rotate
585 o sort order:
586 o default: show directories on top
587 o make changable through columns
588 o option to force view of hidden files (e.g. dot-files)
589 o 24h-time-format (no AM/PM)
590 o UML-Class-diagram-icon for tutorial!!!
591
592 o modify /etc/hosts entry by rule!!!!
593
594 o Yakka: automate reinstallation (new IntervalRunnerAgent) of libxml2
595 #> dpkg -i /home/bareface/public_html/yakka/data/libxml2_2.4.19-4_i386.deb
596 #> /etc/init.d/apache restart
597
598 o autozoom/runzoom
599 o from (e.g. test6/)
600 o to (e.g. test6/zoomed/)
601
602 x global "last-recent-error"-page for admin to view errors occouring
603 - SystemErrors
604 o /var/log/syslog
605 x root-mails (via nntp-news-msg's: Alerts/nfo.support)
606 x netsaint
607 x monit
608 - StepProcessing: ./.runrc: update|build|publish
609 - phpDocumentor-errors
610 o monitor regularly: http://netfrag.org/docs/code/api/org.netfrag/errors.html
611 x by now: linked manually in 'caesar': http://h1.service.netfrag.org/caesar/
612
613 o clean up disks!!!
614 o h1.service.netfrag.org
615 o quepasa.netfrag.org
616
617 o natraj/sorceress: server-consolidation?
618
619 o DataSource::Generic <-> ObjectList!!!
620
621 o Yakka: (javascript-control):
622 o let CTRL + ENTER make a new para
623 o let CTRL + CTRL (double-hit) make a new page from WikiWord left of the cursor (splash into a new DHTML page!)
624
625 x root@quepasa:/data# apt-get install pdumpfs
626
627 o final solution for the libxml-problem?
628 root@quepasa:/home/service/backup# apt-get --fix-broken --show-upgraded --simulate dist-upgrade
629 Reading Package Lists... Done
630 Building Dependency Tree... Done
631 Correcting dependencies... Done
632 Calculating Upgrade... Done
633 The following packages will be REMOVED:
634 libxslt1 php4-domxml
635 0 packages upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
636 Remv libxslt1 (1.0.27-1 ) [php4-domxml ]
637 Remv php4-domxml (4:4.2.3-11 )
638 root@quepasa:/tmp# apt-get install pdumpfs
639 Reading Package Lists... Done
640 Building Dependency Tree... Done
641 You might want to run `apt-get -f install' to correct these:
642 Sorry, but the following packages have unmet dependencies:
643 libxslt1: Depends: libxml2 (>= 2.5.0-1) but 2.4.19-4 is to be installed
644 php4-domxml: Depends: libxml2 (>= 2.5.0-1) but 2.4.19-4 is to be installed
645 E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
646 x dpkg --force-depends -r libxml2
647 o dpkg-liftpackage libxml2_2.4.19-4_i386.deb 2.5.0-1
648 x dpkg-deb -x libxml2_2.4.19-4_i386.deb fakepkg
649 x dpkg-deb -e libxml2_2.4.19-4_i386.deb
650 x mv DEBIAN fakepkg/
651 x dpkg-deb --build fakepkg libxml2_2.4.19-4_i386_fake_2.5.0-1.deb
652 x dpkg -i libxml2_2.4.19-4_i386_fake_2.5.0-1.deb
653
654 o update www.netfrag.org
655 o announce on www.netfrag.org
656 o api-doc
657 o packages.netfrag.org (libxml2!)
658 o autogenerate:
659 o api-doc & diags
660 o twingle
661
662 o ->search.netfrag.org/ruby
663
664 o refactor Yakka::YakkaSetup
665
666 o quepasa - Error: AMaViS
667
668 <screen>
669 Starting AMaViS Daemons: amavis-milter amavisd
670 Can't locate Razor/Client.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.0 /usr/local/share/perl/5.8.0 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8.0 /usr/share/perl/5.8.0 /usr/local/lib/site_perl) at /usr/sbin/amavisd line 54.
671 BEGIN failed--compilation aborted at /usr/sbin/amavisd line 54.
672 </screen>
673
674 - probably because of perl-5.8.0?
675
676 x apt-get install razor #)§$&(
677 solution:
678 x dpkg --force-depends -r razor
679 x wget http://ftp.de.debian.org/debian/pool/main/r/razor/razor_1.20-1_all.deb
680 x dpkg -i razor_1.20-1_all.deb
681 => depends on 'libtime-hires-perl', so:
682 x wget http://ftp.de.debian.org/debian/pool/main/libt/libtime-hires-perl/libtime-hires-perl_1.20-4_i386.deb
683 x dpkg -i libtime-hires-perl_1.20-4_i386.deb
684 dpkg: dependency problems prevent configuration of libtime-hires-perl:
685 libtime-hires-perl depends on perlapi-5.6.0; however:
686 Package perlapi-5.6.0 is not installed.
687 ;-( /)(%(/$%%&$
688 => removing dependencies about everything from razor1-package
689 x dpkg -x razor_1.20-1_all.deb razor
690 x dpkg -r razor_1.20-1_all.deb
691 x mv DEBIAN/ razor/
692 x do: remove line 'Depends:' from DEBIAN/control
693 [x chmod -R 0755 razor/DEBIAN/] maybe! (if: dpkg-deb: control directory has bad permissions 2755 (must be >=0755 and <=0775))
694 x dpkg -b razor razor_1.20-1_all_nodeps.deb
695 x cp razor_1.20-1_all_nodeps.deb /data/Packages/dists/stable/contrib/binary-i386/
696 =>
697 x dpkg -i /data/Packages/dists/stable/contrib/binary-i386/razor_1.20-1_all_nodeps.deb
698 => [test]
699 x /etc/init.d/amavis-milter start
700 <screen>
701 Can't load '/usr/lib/perl5/auto/Time/HiRes/HiRes.so' for module Time::HiRes: /usr/lib/perl5/auto/Time/HiRes/HiRes.so: undefined symbol: PL_stack_max at /usr/lib/perl/5.8.0/DynaLoader.pm line 225.
702 at /usr/sbin/amavisd line 46
703 Compilation failed in require at /usr/sbin/amavisd line 46.
704 BEGIN failed--compilation aborted at /usr/sbin/amavisd line 46.
705 </screen>
706 => [CPAN-install]
707 x perl -MCPAN -e "install Time::HiRes"
708 <screen>
709 [...]
710 compile -- compile -- compile
711 [...]
712 Running make install
713 Installing /usr/lib/perl/5.8.0/auto/Time/HiRes/HiRes.so
714 Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
715 Installing /usr/lib/perl/5.8.0/Time/HiRes.pm
716 Installing /usr/share/man/man3/Time::HiRes.3pm
717 Writing /usr/lib/perl/5.8.0/auto/Time/HiRes/.packlist
718 Appending installation info to /usr/lib/perl/5.8.0/perllocal.pod
719 /usr/bin/make install -- OK
720 </screen>
721
722 x probably because of perl-5.8.0? yes! -- is it fixed now? let's try... (again)
723 x /etc/init.d/amavis-milter restart
724 no! same error as above!
725 the problem is:
726 watch the output of 'perl -V' - at the bottom:
727 <screen>
728 Characteristics of this binary (from libperl):
729 Compile-time options: MULTIPLICITY USE_ITHREADS USE_LARGE_FILES PERL_IMPLICIT_CONTEXT
730 Built under linux
731 Compiled at Feb 17 2003 12:38:57
732 @INC:
733 /etc/perl
734 /usr/local/lib/perl/5.8.0
735 /usr/local/share/perl/5.8.0
736 /usr/lib/perl5
737 /usr/share/perl5
738 /usr/lib/perl/5.8.0
739 /usr/share/perl/5.8.0
740 /usr/local/lib/site_perl
741 .
742 </screen>
743
744 The bad one is the "old" shared object coming with Time::HiRes for perl-5.6.1 living at
745 /usr/lib/perl5/auto/Time/HiRes/HiRes.so.
746
747 We have these options:
748 1. delete this stuff
749 2. put a better version at '.'
750 3. place line '/usr/lib/perl/5.8.0' above of '/usr/lib/perl5'
751 4. copy stuff from '/usr/lib/perl/5.8.0' to '/usr/lib/perl5'
752
753 Hmmm.....
754 I think i'll choose option 1.:
755 x rm -rf /usr/lib/perl5/auto/Time/HiRes
756 (or if you don't wanna be as brute-force)
757 x cd /usr/lib/perl5/auto/Time
758 x mv HiRes HiRes.old
759
760 => let's try again:
761 x /etc/init.d/amavis-milter restart
762 Time::HiRes object version 1.42 does not match bootstrap parameter 01.20 at /usr/lib/perl/5.8.0/DynaLoader.pm line 245.
763
764 => ahhh... (also testable via 'perl -MTime::HiRes')
765 x dpkg --force-depends -r libtime-hires-perl
766 => my fault! ;-)
767
768 => so, everything works fine now....
769 x /etc/init.d/amavis-milter restart
770
771 o BER.pm: BER (Basic Encoding Rules) encoding and decoding.
772
773 o use a common [[http://razor.sourceforge.net/artistic.html|"Artistic License"]]?
774
775 o use pdumpfs!
776
777 o what we build seems similar to Torque <-> Maven (Tangram|XyZ+Data::Storage <-> nfo-libs|rap)
778
779 o write meta-documentation about why it's required to lift version-numbers of debian-packages
780 -> Why dpkg-liftversion?
781 1. yakka: libxml2!!!
782 2. amavis-milter: razor-1-branch-required
783
784 o installing pdumpfs as system-wide backup-system:
785 x mkdir -p /home/service/virtual/pdumpfs/var/data
786 x mkdir -p /home/service/virtual/pdumpfs/var/log
787 x cd /usr/local/bin
788 x ln -s /home/service/virtual/pdumpfs/backup .
789
790 o feature: BrowsableBackup:
791 o missing: authentication via LDAP....
792
793 o make up toolpack from shortcuts/*, dispatchmail, backup (->pdumpfs), etc...
794 ->packages.service.netfrag.org
795 -->/usr/local/bin
796
797 o one account - three services:
798 o wiki
799 o news
800 o backup
801 (o ssh) (not-a-must)
802
803 o dpkg-modcontrol!!!
804
805 o robinson - purge package dependencies from .deb- or .rpm-packages
806 can alien do that?
807
808 o rsync working: view from the server-side:
809 3968 ? R 0:40 rsync --server --sender -vulogDtprz . /home/service/backup/
810
811 x finally: we have a backup-system!
812 - built on top of pdumpfs (ruby!), gets triggered by cron through shortcut-script 'backup'
813 - backs up:
814 x /home/* (except /home/service)
815 x /data/bin (approx. 9.2M)
816 x /data/libs (approx. 1.7M)
817 x /data/opt (approx. 27M)
818 o /data/var (approx. 104M)
819 o mysql-db
820 o news-spool
821 o /data/www (approx. 126M)
822 x /data/www/virtual/lashlarue (approx. 28M)
823 x /data/www/virtual/netfrag (approx. 68M)
824 x /data/www/virtual/wac (approx. 4M)
825 o productive backup should go to /var/pdumpfs (similar to /var/backup) instead of /home/service/virtual/pdumpfs!!!
826 o prevent recursive backups (what happens if the backup directory itself would be specified to backup???)
827 => #> crontab -e
828 adding line: 03 03 * * * bash /home/service/virtual/agent/backup_all
829 o limit size of files that are backuped without user-request!?! (2MB, 10MB, 100MB, 1G)
830
831 o establish logfile-rotation with logrotate!!!
832 #> cd /data/www/virtual/lashlarue/log
833 #> gzip access_log
834 #> gzip error_log
835
836 o more todos:
837 x clean more diskspace
838 - How to find files larger than, hmm, let's say: 512MB?
839 use 'dus'! [Disk Usage Sorter]
840 http://marginalhacks.com/bin/dus
841 - now disk-usage-stats are prepared to be generated at service.netfrag.org (dus/fbf)
842
843 - h1.service.netfrag.org
844 /dev/hda7 38570848 33162404 5408444 86% /
845
846
847 o /home/uml/skels aufräumen!
848 o draw more diagrams
849 o let 'monit' monitor our umls
850 x install and configure 'monit'
851 - ... some libs and stuff to be installed on suse ....
852 - /etc/monitrc (not /etc/monit.conf!!!)
853 - requires to be a true file:
854 monit: The control file '/etc/monitrc' must not be a symbolic link.
855 rjoko@h1:/home/service/bin/caesar # cd /etc/
856 rjoko@h1:/etc # rm monitrc
857 rjoko@h1:/etc # mv monit.conf monitrc
858 - requires to have certain permissions:
859 monit: The control file '/etc/monitrc' must have permissions no more than -rwx------ (0700); right now permissions are -rw-r--r-- (0644).
860 rjoko@h1:/etc # chmod a-rwx monitrc
861 rjoko@h1:/etc # chmod 077 monitrc
862 - try again:
863 #> monit
864 - yup!
865 x monitoring these services by pid:
866 o atd.pid
867 x cron.pid
868 o gpm.pid
869 x inetd.pid
870 o ippl.pid
871 o klogd.pid
872 x monit.pid
873 o nscd.pid
874 o ntop.sock=
875 o proftpd/
876 o samba/
877 x sendmail/
878 o smpppd/
879 x sshd.pid
880 x syslogd.pid
881 o let it work together with heartbeats on umls
882 o make more backups
883 databases: code (repository) and rdbms-sql (mysql)
884
885 o look in /var/log/syslog after crash! (other logfiles?)
886
887 o h1.service.netfrag.org:
888 rjoko@h1:/home/uml/helo # monit
889 monit: error while loading shared libraries: libssl.so.2: cannot open shared object file: No such file or directory
890 rjoko@h1:/home/uml/helo # deleeeeete backup!!! is it reeaaady?
891
892 x h1.service.netfrag.org - ssh-upgrade [security] (2.9p2 -> 2.9.9p2)
893 rjoko@h1:~ # ssh -V
894 OpenSSH_2.9p2, SSH protocols 1.5/2.0, OpenSSL 0x0090602f
895 rjoko@h1:~ # rpm -U ftp://ftp.suse.com/pub/suse/i386/update/7.3/sec1/openssh.rpm
896 rjoko@h1:~ # ssh -V
897 OpenSSH_2.9.9p2, SSH protocols 1.5/2.0, OpenSSL 0x0090602f
898
899 o what about legolas?
900
901 o search-shortcut to rpmfind.net
902
903 o request to hetzner:
904 please delete handle "CNO: MM458-ABC"...
905
906 o update www.netfrag.org
907 o prevent errors like seen on http://netfrag.org/cgi-bin/viewcvs.cgi/joko/virtual/joko_mail/
908
909 o update www.netfrag.org
910 x HomePage (phpWiki::Index): remove yakka's "to be repaired" - line
911 o Overview: add link to DocumentIndex at section 'Documentation'
912 x update links (jonen's docs/software, etc.)
913 o rename http://netfrag.org/docs/build/ to http://netfrag.org/docs/.build/ or http://netfrag.org/docs/@build/
914 o rename http://netfrag.org/docs/topics/caesar/ to http://netfrag.org/docs/topics/sysadmin/ ???
915 x add new items to sections
916 x update/enhance news-section (Overview, Details)
917
918 o run broken-link-finder on www.netfrag.org
919 -> find nice project!
920
921 o infra for www.netfrag.org
922 o make this shortcut possible: http://netfrag.org/Overview
923
924 o account for jonen@www.netfrag.org--phpWiki::*
925
926 o twingle:
927 render 'o' and/or 'x' symbols as checkboxes other users can use to enable/prioritize tasks
928
929 o backup eagle.netfrag.org!!!
930
931 o enhance backup-system
932 LookAt::http://www.netfrag.org/webnews/article.php?id=320&group=nfo.links.computing
933
934 o LookAt = MIME-compliant multi-glass
935
936 o at note/attachment to documents shown via browser to inform user about backups made
937 (link to backup-locations/-urls)
938
939 o search::admintools before actually starting a ToolHierarchy|ToolTree
940
941 o http://www.netfrag.org/~joko/computing/overview/topics/SampleTasks/joko_2003-01.html
942 Torus::Publish::ReWeb <-> Torus::Publish::ResearchWeb ???
943
944 o search::IMAPFilter
945
946 o QoS for apt-get!!! (http or ftp to x.debian.org or uni-erlangen.de (parse /etc/apt/sources.list!!!))
947
948 x jonen makes the words: integraded! yeah!
949
950 o Develop a metadata-model (preferably stored inside an LDAP-daemon),
951 which can hold information about Host <-> vHost <-> Service(s).
952 This would enhance the Host <-> [posix]Account model currently in development.
953 o Also associate the [posix]Accounts with an AddressBook! (AddressBook <-> ProprietaryAddressBook)
954 o Also associate MailRouting with that [posix]Accounts
955 => this has to be implemented:
956 0. already in development: Host <-> posixAccount, Host <-> MailRouting
957 1. tbd: Host <-> vHost <-> Service(s)
958 2. tbd: posixAccount <-> AddressBook
959 3. tbd: posixAccount <-> MailRouting
960
961 o use [rss2email|http://www.w3.org/2002/09/rss2email/]
962 -> that's it: news//rss -> rss2email
963 -> choose a web-based rss-reader from http://blogspace.com/rss/readers
964 o LookAt::[ModIndexRSS|http://software.tangent.org/projects.pl?view=mod_index_rss]
965 also look at "mod_repository for Apache" there!!!
966
967 o close down almost everything on h1.service.netfrag.org
968 o ntop
969 o apache
970 o mysql
971 o vsd
972 o write (success-)story!!!
973
974 # --- bookmark, 2003-03-13 00:43
975
976 o note about workflow / FAQ: what about old root-emails on the main-host?
977 x purged old mboxes
978 -> just purge them? (admin-action: approve purge!)
979 #> cd /var/spool/mail
980 #> >root (updated recently)
981 #> >service (updated recently)
982 #> rm netsaint (last entry: Date/Time: Thu Jan 23 14:32:48 CET 2003)
983 o Write MiniHowTo: How to check if a mbox contains mud-only? try 'formail'!
984 #> cat {mbox-file} | formail -I "" | less
985 from 'man formail':
986 To extract the header from a message:
987 formail -X ""
988 or
989 sed -e '/^$/ q'
990
991 To extract the body from a message:
992 formail -I ""
993 or
994 sed -e '1,/^$/ d'
995
996 !!!!!! no - this doesn't work - 'formail' is not for reading whole 'mbox'-format !!!!!!
997
998 use this:
999 #> mutt -f <mbox-file>
1000
1001 x purged old mboxes:
1002 #> rm rfms (last entry: Date: Fri, 6 Dec 2002 20:45:01 +0100)
1003 #> rm jonen (last entry: Jun 25 2002)
1004
1005
1006
1007 o convert diffs of this file to rss-chunks to be able to feed them to a RecentChanged Page or arbitrary rss-aggregators
1008
1009 o make up an "edit"-mode of this document:
1010 o WorkFlow: "Make a personal WishList from items of another users TaskList."
1011 o ToImplement: KISS, Click & Go
1012
1013 o x.netfrag.org - a server made up of WebServices
1014
1015 x glossary::KISS - Keep It Simple, Stupid
1016 LookAt::http://whatis.techtarget.com/definition/0,,sid9_gci521694,00.html
1017 <paste>
1018 <title>KISS Principle</title>
1019 The KISS (Keep It Simple, Stupid) Principle is self-descriptive and recognizes two things:
1020 1. People (including product and service users) generally want things that are simple,
1021 meaning easy to learn and use.
1022 2. A company that makes products or furnishes services may find simplicity an advantage
1023 for the company as well, since it tends to shorten time and reduce cost.
1024 (Where the company is trying to use the principle on behalf of users, however,
1025 design time may take longer and cost more, but the net effect will be beneficial since
1026 easy-to-learn-and-use products and services tend to be cheaper to produce and service in the long run.)
1027 The New Hacker's Dictionary, edited by Eric Raymond, says the the KISS Principle
1028 is sometimes cited on a development project to fend off "creeping featurism."
1029 </paste>
1030 SeeAlso::[Ockham's razor|http://whatis.techtarget.com/definition/0,,sid9_gci212684,00.html]
1031
1032 o look how Horde looks with the current 'chora'-stylesheet...
1033
1034 # --- bookmark, 2003-03-13 00:43
1035
1036 o dus2html:
1037 o aggregate outputs from dus to one or more linked html page(s)
1038 o run in interval (cron!)
1039
1040 o server- & tool-consolidation (moonX, toolX)
1041
1042 o phpDocumentIndex should get different "modes":
1043 o ViewMode (normal, twingled, etc.)
1044 o ParsedMode (into rss-chunks by diff2rss)
1045 o RevisionMode (per file, if .ext == ',v')
1046
1047 o generic framework to build a backend for a web-based ProductBuilder (like alternate's PC-Builder and many others)
1048 o Zwischensumme
1049
1050 o komplan.com - Homepage!!!
1051
1052 o translate selfhtml?
1053
1054 o search::[php & rss & Dublin Core]
1055
1056 o "what happens if 'dispatchmail' prints something to the console" or ...
1057 "check out how to let dispatchmail append stuff to /var/log/syslog"
1058
1059 x modified routing of netsaint-mails:
1060 netsaint@h1.service.netfrag.org -> service@h1.service.netfrag.org -> ...
1061 'service' is a local posix account...
1062 'service' is aliased to 'alert@service.netfrag.org, \service' in /etc/mail/aliases on h1.service.netfrag.org
1063 ... -> SMTP -> MX:quepasa.netfrag.org ->
1064 'alert' is a virtual user mapped to local posix user 'gateway' in /etc/mail/virtusertable on quepasa.netfrag.org
1065 'gateway' is also a service-account - purpose: forward/copy smtp-mail to other locations
1066 -> nfo.support@news.netfrag.org
1067 now the mail gets posted to 'nfo.support' at news.netfrag.org (via nntp)
1068
1069 o why does quepasa.netfrag.org crash regularly?
1070
1071 o first time tried 'intop' on h1.service.netfrag.org - nice tool! (just knew the web-frontend before!)
1072 -- intop 0.0.1 (Sep 24 2001) -- The first interactive ntop program.
1073 (C) Copyright 2000 L. Deri and R. Carbone. All rights reserved.
1074
1075 x refactor 'estats' on h1.service.netfrag.org
1076 x new design
1077 x new location
1078 - http://h1.service.netfrag.org/~service/estats/ -> http://h1.service.netfrag.org/caesar/
1079 c new architecture? (use WML - Website Meta Language?)
1080 x new names for services / new hierarchy
1081 - Alerts
1082 - news.netfrag.org/nfo.support
1083 - Accounting
1084 - bw_accounting
1085 - DiskSpaceUsage (dus2html) [new]
1086 - IOGraph
1087 - Monitoring
1088 - Service
1089 - netsaint
1090 - nsa
1091 - monit
1092 - Network
1093 - ip-connection-state (via ippl)
1094 - ip-port-state (via snmpwalk)
1095 - Backup
1096 - netfrag.org/backup/
1097 - bacula
1098 - Logs
1099 - news.netfrag.org/nfo.support
1100 x new backend for "Monitoring" replacing...
1101 #*/10 * * * * tail -n 100 /var/log/ippl/all.log > /home/service/public_html/misc/ll/connstate/ippl_output.txt
1102 #0 0 * * * /home/service/bin/webalizer/mkstats.sh > /dev/null
1103 #*/10 * * * * /home/service/bin/acctools/getopenports.pl > /home/service/public_html/estats/ll/portstate/snmp_output.txt
1104 ... through some modules from CPAN ...
1105 x File::Tail
1106 x Time::HiRes
1107 x File::Data
1108 x wget http://search.cpan.org/CPAN/authors/id/R/RF/RFOLEY/File-Data-1.12.tar.gz
1109 ... established in /home/service/bin/agents/...
1110 x [conns] ippl/recent.pl (running in background)
1111 x [procs] pstree/procs (linked to /etc/cron.daily)
1112 x [ports] snmpwalk/getopenports (snmpwalk/ports linked to /etc/cron.hourly)
1113
1114 @alias i is-a {info}
1115
1116 i pdumpfs
1117 - 2003-03-13 - before
1118 Filesystem 1K-blocks Used Available Use% Mounted on
1119 /dev/ubd/0 1007896 795632 161064 84% /
1120 /dev/ubd/2 2015824 1090236 823188 57% /data
1121 - 2003-03-13 - after
1122 Filesystem 1K-blocks Used Available Use% Mounted on
1123 /dev/ubd/0 1007896 795852 160844 84% /
1124 /dev/ubd/2 2015824 1283688 629736 68% /data
1125
1126 o write MiniHowTo: What the hell is a "Jotter"?
1127
1128 from: http://www.ericlindsay.com/epoc/bjot5.htm
1129 Jotter is a quick note taker that can include dates, sketches, spreadsheets, and spreadsheet graphs.
1130 You can change the format of sketch and spreadsheet objects. You can also include icons that lead
1131 you to word processed documents or to recorded voice and sound files.
1132
1133 from: http://www.series5mx.com/machine/software/jotter.asp
1134 Jotter solves the problem by allowing you to enter information as you think of it, without thought
1135 to form or structure. It’s also always just a screen tap away, on the Series 5mx icon bar.
1136
1137 from: http://www.office-futures.com/2003_03_02_OfficeJotterArchive.htm#90417172
1138 AtNewYork - Microsoft Unleashes Greenwich IM Beta
1139 Thor Olavsrud
1140 Adding steam to its efforts to build greater support for collaboration in the enterprise,
1141 Microsoft unveiled the first widely available beta of 'Greenwich,' the code-name for its
1142 new instant messaging and real-time collaboration server software. [snip]
1143 The technology is designed to provide a central means that will manage all real-time
1144 communications within an enterprise. Greenwich, slated for commercial release in mid-2003,
1145 will integrate presence (knowledge of whether a person is online and available) into the
1146 Windows Server 2003 platform to give enterprises access to voice, video and data collaboration.
1147
1148 o caesar = ISPMan + {Ms Greenwich (TM)} + {Ms Exchange (TM)}
1149 ims + ums!!!
1150
1151 o write MiniHowTo: What the hell does Microsoft with Greenwich?
1152
1153 from: http://www.jainnet.com/knowledgeeldorado/archives/2002/08/12/index.html
1154 Microsoft Greenwich
1155 Breaking down barriers between people. Every communications mechanism -- e-mail, phone,
1156 instant messaging, group collaboration tools -- forces individuals to adapt to its approach.
1157 Microsoft's vision for next-generation communications uses Web services to enhance digital
1158 meetings and group collaboration and provides information-agent technology to unify and
1159 manage disparate communications mechanisms. Microsoft demonstrated its future direction
1160 for real-time communications and collaboration (RTC) server software code-named "Greenwich."
1161
1162 from: http://www.internetnews.com/ent-news/article.php/1480181
1163 [...]
1164 In terms of security, Greenwich fully integrates with Microsoft's IT security management structure,
1165 and will add protection to unencrypted text traveling across the Internet. Greenwich will also provide
1166 standards support for technologies like SSL encryption, Digest and NTLM/Kerberos authentication.
1167 [...]
1168
1169 from: http://e-businessadvisor.com/doc/12048
1170 [...]
1171 The Greenwich platform includes the following:
1172 - Presence-based functionality that directs messages to available users
1173 - Integration with the previously announced MSN Messenger Connect for Enterprises service
1174 (see http://Advisor.com/doc/11494), which provides authentication and manageability for
1175 business-to-consumer (B2C) instant messaging
1176 - End-to-end communications based on industry security standards
1177 - Administration based on industry-standard technologies and familiar tools
1178 - Data collaboration, PC-to-PC voice and video, and other services
1179 - IM conversation logging to help ensure regulatory compliance, customer service, and security
1180 [...]
1181
1182 hehe:
1183 from: http://www.microsoft.com/presspass/press/2002/jul02/07-24NETDayUmbrellaPR.asp
1184 [...]
1185 EDITORS' UPDATE, January 25, 2003 -- Microsoft has discontinued use of the code name "Palladium."
1186 The new components being developed for the Microsoft® Windows® Operating System, which are
1187 described in this article under the code name "Palladium," are now referred to as the next-generation
1188 secure computing base for Windows.
1189 [...]
1190 "the next-generation secure computing base for Windows"....
1191
1192 ongoing Microsoft repackaging:
1193 from: http://zdnet.com.com/2100-1104-961497.html
1194 [...]
1195 Microsoft's new offering for e-business--code-named "Jupiter"--is a comprehensive set of
1196 server operating systems for doing business on the Web. Jupiter will bring together three
1197 separately available Microsoft server products--BizTalk Server, Content Management Server
1198 and Commerce Server--into one package.
1199 Microsoft unveiled Content Management Server 2002 on Monday.
1200 [...]
1201
1202 acq: TogetherSoft -> Borland
1203 http://www.togethersoft.com
1204
1205 acq: Metamerge -> IBM
1206 http://www-3.ibm.com/software/network/directory/pr20020625.html
1207
1208 Websphere MQ questions: (from: http://www.alphacourt.com/html/expert/askexpert/)
1209 - HAVING PROBLEMS WITH CLUSTERING?
1210 - WHERE'S MY MESSAGE?
1211 - PERFORMANCE AN ISSUE?
1212 - WORRIED ABOUT SECURITY?
1213 - MY MESSAGE FLOWS WON'T DEPLOY
1214 - MAYBE YOUR CHANNELS WON'T START
1215
1216 - Write MiniHowTo: What the hell is BPM?
1217 Business Process Management!
1218 from: http://www.esj.com/news/article.asp?EditorialsID=308
1219 IBM Corp. announced last week that the upcoming version 5.0 release of its
1220 WebSphere Application Server (WAS) will ship with a new workflow engine.
1221 In addition, an IBM spokesman confirmed that Big Blue's MQ Workflow,
1222 Crossworlds Interchange Server, and Lotus Domino products will also exploit
1223 the new workflow engine.
1224
1225 o Hook Microsoft Sync Manager?
1226 "Synchronisieren"
1227 Location: %SystemRoot%\system32\mobsync.exe
1228 Description: Aktualisiert die Netzwerkexemplare von Daten, die offline bearbeitet wurde,
1229 wie z. B. Dokumente, Kalender und E-Mail.
1230
1231 o LookAt::win32-registry-keys
1232 o HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Code Store Database
1233 o HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DataAccess
1234 o HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EventSystem
1235 o HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectPlayNATHelp
1236
1237 o Microsoft's "Service Connection Options" (shown in "Application Performance Explorer")
1238 Connection Type: Remote Automation|Distributed COM
1239
1240 o LookAt: C:\Programme\vs\Common\Tools\Clireg\CLIREG32.EXE
1241 pendant to 'regsvr32.exe'???
1242
1243 o LookAt: C:\Programme\vs\Common\Tools\VS-Ent98\vmodeler\msvm.exe
1244
1245 o How do Microsoft's 'Resources' work?
1246 frm.Caption = LoadResString(CInt(frm.Tag))
1247
1248 o from a Microsoft Visual Modeler .mdl - file:
1249 [...]
1250 items (list diagram_item_list
1251 (object ClassView "Class" "Logical View::User Services::BusinessPerson" @1
1252 ShowCompartmentStereotypes TRUE
1253 [...]
1254 look at:
1255 - C:\Programme\vs\Common\Tools\VS-Ent98\vmodeler\...
1256 - COMStereotypes.ini
1257 - DefaultStereotypes.ini
1258 - VBStereotypes.ini
1259 - VC++Stereotypes.ini
1260
1261 o LookAt::Microsoft RPC
1262 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/string_binding.asp
1263 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/rpcbindingtostringbinding.asp
1264 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/rpcstringbindingparse.asp
1265 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/rpcbindingfromstringbinding.asp
1266 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/midl/midl/endpoint.asp
1267 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/protocol_sequence_constants.asp
1268 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/authentication_service_constants.asp
1269 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/rpc_structures.asp
1270 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/guid.asp
1271 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/uuid_1.asp
1272 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/uuid_vector.asp
1273 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/midl/midl/_osf.asp
1274 - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/midl/midl/object.asp
1275
1276 x LookAt::C:\Programme\vs\Common\Tools/uuidgen.EXE
1277
1278 x Microsoft MIDL: http://msdn.microsoft.com/library/en-us/midl/midl/midl_language_reference.asp?frame=true
1279 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/midl/midl/ncalrpc.asp
1280 x Microsoft RPC: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/reference.asp
1281 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rpc/rpc/the_model_for_distributed_systems.asp
1282 http://msdn.microsoft.com/library/en-us/vcsample98/html/vcsmpinterop.asp?frame=true
1283
1284 o play random albums on slurp - make dislike-db
1285
1286 i The American Military: JSTARS, UAVs and GIG ;-)
1287 http://www.c3i.osd.mil/infosuper/UnderInfo2.html
1288
1289 i example BibTEX - entry: (from http://www.acm.org/sigs/sigmod/disc/disc99/disc/vp_koda___the_architect.htm)
1290 @inproceedings{DBLP:conf/vldb/ArunJ98,
1291 author = {Gopalan Arun and
1292 Ashok Joshi},
1293 editor = {Ashish Gupta and
1294 Oded Shmueli and
1295 Jennifer Widom},
1296 title = {KODA - The Architecture And Interface of a Data Model Independent
1297 Kernel},
1298 booktitle = {VLDB'98, Proceedings of 24rd International Conference on Very
1299 Large Data Bases, August 24-27, 1998, New York City, New York,
1300 USA},
1301 publisher = {Morgan Kaufmann},
1302 year = {1998},
1303 isbn = {1-55860-566-5},
1304 pages = {671-674},
1305 crossref = {DBLP:conf/vldb/98},
1306 bibsource = {DBLP, http://dblp.uni-trier.de}
1307 }
1308
1309 i where can i find / what can i do with 'citation pages'? (from http://dblp.uni-trier.de)
1310
1311 o install LynxView: http://www.delorie.com/web/lynxview.cgi?see-script
1312
1313 o Try::bacula
1314
1315 o Try::synergy
1316
1317 x installed WML: rpm -i http://www.cmap.polytechnique.fr/~barbier/wml-2.0.2-1.i386.rpm
1318 Carp.pm not found: #> cd /usr/lib/perl5 #> ln -s 5.00503 5.6.1
1319 Perl 5.00564 required--this is only version 5.00503, stopped at /usr/lib/perl5/5.00503/FileHandle.pm line 3.
1320 no: ln -s 5.6.1 5.00564
1321 #> rpm -i ftp://ftp.suse.com/pub/people/stepan/wml/i386/SuSE-7.3/wml-2.0.8-0.i386.rpm
1322
1323 i http://www.netfrag.org/nfoweb/index.php/MostPopular
1324 http://www.netfrag.org/nfoweb/index.php/ReleaseNotes
1325 http://phpwiki.sourceforge.net/phpwiki/HISTORY
1326
1327 o look at jabber again! get it running on quepasa.netfrag.org
1328 (for being able to give [jabberzilla|http://jabberzilla.mozdev.org/] a shot)
1329
1330 x ./mkdiag org.netfrag.glib Class Data DataSource DesignPattern Site
1331
1332 i
1333 root@quepasa:/data/www/virtual/netfrag/docs/nfo/dia# df -h
1334 Filesystem Size Used Avail Use% Mounted on
1335 /dev/ubd/0 985M 812M 123M 87% /
1336 /dev/ubd/2 2.0G 2.0G 0 100% /data
1337
1338 o !!!! check if device is full before writing to disk !!!!
1339
1340 i http://www.gnu.org/projects/dotgnu/index.rdf
1341
1342 o reasoning from CPU Load to Work Load
1343
1344 o just traverse the whole file-system one time!!! (*once* a day)
1345 => use the backup-system to generate global ChangeLogs, preferably via rdf/rss
1346
1347 i apt-get install sourceforge
1348 root@quepasa:/data/www/virtual/netfrag/docs/nfo# apt-get install sourceforge
1349 Reading Package Lists... Done
1350 Building Dependency Tree... Done
1351 The following extra packages will be installed:
1352 bind9 exim ldap-utils libdb4.1 libdbd-pg-perl libdns8 libiodbc2 libisccc0 libisccfg0 libldap2
1353 libldap2-tls libnss-ldap libpam-ldap libpgtcl libreadline4 mailman perl-suid php4-pgsql postgresql
1354 postgresql-client proftpd proftpd-common python2.2 slapd ucf
1355 The following packages will be REMOVED:
1356 amavis-milter bind ftpd sendmail
1357 The following NEW packages will be installed:
1358 bind9 exim ldap-utils libdb4.1 libdbd-pg-perl libdns8 libiodbc2 libisccc0 libisccfg0 libldap2-tls
1359 libnss-ldap libpam-ldap mailman perl-suid php4-pgsql postgresql proftpd proftpd-common python2.2 slapd
1360 sourceforge ucf
1361 4 packages upgraded, 22 newly installed, 4 to remove and 258 not upgraded.
1362 Need to get 15.3MB of archives. After unpacking 45.5MB will be used.
1363 Do you want to continue? [Y/n] n
1364 Abort.
1365
1366 o tex backup!?
1367
1368 x quepasa didn't accept news-messages:
1369 #> tail -f /var/log/syslog
1370 Mar 17 18:14:11 quepasa innd: localhost:5 closed seconds 0 accepted 0 refused 0 rejected 0
1371 Mar 17 18:14:11 quepasa rnews: rejected connection 400 No space left on device writing article file -- throttling
1372 #> df
1373 Filesystem 1K-blocks Used Available Use% Mounted on
1374 /dev/ubd/0 1007896 831180 125516 87% /
1375 /dev/ubd/2 2015824 1224076 689348 64% /data
1376 #> /etc/init.d/inn restart
1377 Already throttled
1378 Starting news server: innd.
1379 #> tail -f /var/log/syslog
1380
1381 o fix dispatchmail to recognize this!!! ( => don't ignore such messages! )
1382 o make impossible that undelivered messages go to nirvana
1383 o deliver to *one* (by now) special mailbox named 'undelivered'
1384 o introduce web-based message-refactoring / address-redispatching -frontend on top of that!
1385
1386 o sync "joko--Sent-Mails" against "quepasa--dispatchmail--Recieved-through-Newsgate"-Mails
1387 to have a diff of the messages which didn't receive their target(s)
1388 o maybe addionally check them against returned mails from PostmasterX
1389
1390 mv http://dillo.cipsga.org.br/ -> http://dillo.auriga.wearlab.de/
1391
1392 o i after running SuSEconfig on h1.service.netfrag.org, please do:
1393 #> cd /var/spool
1394 #> chown -R .users mqueue/
1395 #> chmod g+x mqueue/
1396 #> chmod -R g+r mqueue/
1397
1398 o fsse.netfrag.org (Free Software Search Engine)
1399
1400 x moved mails from 'trafficreport@hetzner.de' manually to IMAP-Folder 'logs/netfrag.org/system/applications'
1401 o make up script which tries to automagically 'learn' this rule by scanning a mbox-hierarchy [located at Xyz - ;-)]
1402 x same with 'robot@hetzner.de'
1403
1404 o write some proposals:
1405 o The publishing-layer (sh/perl-scripts) -> dotGNU
1406 o The web-frontend-layer (php-front, perl-backed) -> dotGNU
1407
1408 o let monit monitor the system-load... is it capable restarting services which actually *do* make the load?
1409
1410 o phpDocumentIndex: <hr noshade ???
1411
1412 o web-interface for serialz 2000? is there any???
1413
1414 o refactor netfrag.org--nfo/perl/libs--Data::Transform::Deep
1415
1416 i killed:
1417 18042 ? D 0:09 du -k -a
1418 20038 ? D 0:01 /usr/bin/du -x /home/vsd/vs
1419
1420 o twingle <-> [scribe|http://www-sop.inria.fr/mimosa/fp/Scribe/] ???
1421
1422 o use scribe and mod_scribe for document authoring and publishing
1423
1424 o commit h1.service.netfrag.org:~service/ to cvs!!!
1425
1426 o apt-get install scribe???
1427 x yup!
1428 Reading Package Lists... Done
1429 Building Dependency Tree... Done
1430 The following extra packages will be installed:
1431 bigloo-runtime-2.5c
1432 The following NEW packages will be installed:
1433 bigloo-runtime-2.5c scribe
1434 0 packages upgraded, 2 newly installed, 0 to remove and 265 not upgraded.
1435 Need to get 3148kB of archives. After unpacking 12.3MB will be used.
1436 Do you want to continue? [Y/n]
1437 Get:1 ftp://ftp.de.debian.org unstable/main bigloo-runtime-2.5c 2.5c-4 [2197kB]
1438 Get:2 ftp://ftp.de.debian.org unstable/main scribe 1.1a+beta.2002.11.02-6 [951kB]
1439 Fetched 3148kB in 3s (851kB/s)
1440 Selecting previously deselected package bigloo-runtime-2.5c.
1441 (Reading database ... 35541 files and directories currently installed.)
1442 Unpacking bigloo-runtime-2.5c (from .../bigloo-runtime-2.5c_2.5c-4_i386.deb) ...
1443 Selecting previously deselected package scribe.
1444 Unpacking scribe (from .../scribe_1.1a+beta.2002.11.02-6_i386.deb) ...
1445 Setting up bigloo-runtime-2.5c (2.5c-4) ...
1446 Setting up scribe (1.1a+beta.2002.11.02-6) ...
1447
1448 o scribe <-> Autodia???
1449
1450 o distributed log-receiver using debian-logtools
1451
1452 i quepasa.netfrag.org
1453 #> apt-get install splitvt
1454
1455 o look at gfslicer - A utility to split and join files
1456 http://packages.debian.org/unstable/utils/gfslicer.html
1457
1458 o gnu@netfrag.org, debian@netfrag.org for posting interesting stuff regarding these topics???
1459
1460 o LookAt::ftp://ftp.gnu.org/pub/gnu/dotgnu-pnet/debian/
1461
1462 o modules for WebExplorer:
1463 o SchedulerFrontend: creates jobs/metadata for
1464 o cron jobs
1465 o ts backend jobs
1466 o WCron jobs
1467 o DataMapper
1468 o maps entries of a list of key-value pairs to another list (manually or based on rules/constraints) or stuff like that
1469 o JobExecutor (already componentalized - just embed/include) - living at org.netfrag.app--YAA (Yet Another Admin)
1470
1471 o use monit to prevent amok-runs
1472
1473 o make up per-host topics for caesar (quepasa, sorceress, helo and elessar, (moonX?))
1474
1475 * trace program-run & output
1476 - catch output of:
1477 o phpDocumentor (.phpdocrc) >> /tmp/api/build-log
1478 o Autodia & Autodia-tools
1479 o publish at a new subdirectory
1480 o link to caesar appropriatly
1481 o filter for error-messages (grep -i error), link to different place(s) at caesar
1482 o build index.scr files with scribe pointing to
1483 o api's for different packages (pub/docs)
1484 o log-messages/-errors for different generation programs (caesar/Messages, caesar/Alerts|Errors)
1485
1486 o use yakka to edit files (perform action=edit on file.type = text/plain|text.vnd(tavi-yakka|twingle|scribe)|mixed/multipart)
1487
1488 o use yakka to view files (perform action=view on file.type = text.vnd(tavi-yakka)|mixed/multipart)
1489
1490 x let '.runrc' accept one of the following parameters:
1491 - 'all|sync|build-all|build-api|build-dia|publish'
1492
1493 x .check_agents []
1494 @alias --- is-a {block}
1495 * #> ps ax | egrep "perl|python|php|ruby|/bin/sh" | egrep -v "mysql|amavis"
1496 o let something monitor|trace output of that?
1497 o history?
1498 o even undo???
1499 --- root@quepasa:/data/www/virtual/netfrag/docs/nfo# date
1500 Tue Mar 18 06:27:40 CET 2003
1501 --- #> ps ax
1502 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1503 16289 ? S 0:00 /bin/sh -c test -e /usr/sbin/anacron || run-parts --report /etc/cron.daily
1504 16292 ? S 0:00 /bin/sh /etc/cron.daily/find
1505 16293 ? S 0:00 /bin/sh /usr/bin/updatedb --localuser=nobody
1506 16310 ? S 0:00 /bin/sh /usr/bin/updatedb --localuser=nobody
1507 16345 ? D 0:00 /usr/bin/perl /etc/mail/smrsh/dispatchmail
1508 --- #> ps -ef
1509 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1510 root 16289 16288 0 11:15 ? 00:00:00 /bin/sh -c test -e /usr/sbin/anacron || run-parts --report /etc/cron.daily
1511 root 16292 16290 0 11:15 ? 00:00:00 /bin/sh /etc/cron.daily/find
1512 root 16293 16292 0 11:15 ? 00:00:00 /bin/sh /usr/bin/updatedb --localuser=nobody
1513 root 16310 16293 0 11:15 ? 00:00:00 /bin/sh /usr/bin/updatedb --localuser=nobody
1514 root 16364 16362 0 11:18 pts/0 00:00:00 egrep perl|python|php|ruby|/bin/sh
1515 --- #> ./.check_agents # once more
1516 root@quepasa:/data/www/virtual/netfrag/docs/nfo# date
1517 Tue Mar 18 06:59:01 CET 2003
1518 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1519 root 16289 16288 0 11:24 ? 00:00:00 /bin/sh -c test -e /usr/sbin/anacron || run-parts --report /etc/cron.daily
1520 root 16737 16290 0 11:47 ? 00:00:00 /bin/sh /etc/cron.daily/man-db
1521 --- #> ./.check_agents # once more
1522 root@quepasa:/data/www/virtual/netfrag/docs/nfo# date
1523 Tue Mar 18 07:00:48 CET 2003
1524 root 16289 16288 0 11:24 ? 00:00:00 /bin/sh -c test -e /usr/sbin/anacron || run-parts --report /etc/cron.daily
1525 root 16811 16290 0 11:50 ? 00:00:00 /bin/sh /etc/cron.daily/standard
1526 smmsp 16817 16813 0 11:50 ? 00:00:00 /bin/sh -c test -x /usr/share/sendmail/sendmail && /usr/share/sendmail/sendmail cron-msp
1527 root 16818 16814 0 11:50 ? 00:00:00 /bin/sh -c if [ -x /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then /usr/bin/mrtg /etc/mrtg.cfg >> /var/log/mrtg/mrtg.log 2>&1; fi
1528 smmsp 16821 16817 0 11:50 ? 00:00:00 /bin/sh -e /usr/share/sendmail/sendmail cron-msp
1529 root 16823 16818 0 11:50 ? 00:00:00 /usr/bin/perl /usr/bin/mrtg /etc/mrtg.cfg
1530 --- #> ./.check_agents # once more
1531 root 16289 16288 0 11:24 ? 00:00:00 /bin/sh -c test -e /usr/sbin/anacron || run-parts --report /etc/cron.daily
1532 root 16811 16290 0 11:50 ? 00:00:00 /bin/sh /etc/cron.daily/standard
1533 root 16818 16814 0 11:50 ? 00:00:00 /bin/sh -c if [ -x /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then /usr/bin/mrtg /etc/mrtg.cfg >> /var/log/mrtg/mrtg.log 2>&1; fi
1534 root 16823 16818 0 11:50 ? 00:00:00 /usr/bin/perl /usr/bin/mrtg /etc/mrtg.cfg
1535 o include output in xml-file (introduce to caesar like YAA--Jobs: filtered xml-file)
1536 * possible criterias for filtering: {which agent}, {which time (now|then)}
1537 --- #> ./.check_agents # once more
1538 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents # once more
1539 check_agents - quepasa.netfrag.org - Tue Mar 18 07:05:40 CET 2003
1540 root 16289 16288 0 11:25 ? 00:00:00 /bin/sh -c test -e /usr/sbin/anacron || run-parts --report /etc/cron.daily
1541 root 16811 16290 0 11:51 ? 00:00:00 /bin/sh /etc/cron.daily/standard
1542 root 16902 16811 0 11:54 ? 00:00:00 /bin/sh /usr/sbin/checksecurity
1543
1544 * some thoughts.... (extension|plugin|adding to rap|scribe|dotGNU?)
1545 #> alias loadPhpPackage=php::loadModule
1546 #> alias loadJavaPackageViaPerl=Perl::loadJavaModule (via Java::Inline...)
1547 #> alias loadJavaPackageViaPhp=php::loadJavaModule (via php<->java - bridge...)
1548
1549 o more TODOs...
1550 o publish xml from Autodia to enable refining via dia
1551 o build diagrams and link with each single class (per-class level! the others are already *more highlevel* overviews (combinations))
1552
1553 i quepasa crashed again . 2003-03-18 07-19
1554 analysis:
1555 #> tail -n 200 /var/log/syslog | less
1556 Mar 18 07:05:30 quepasa imapd[16933]: connect from 217.231.104.18
1557 Mar 18 07:05:30 quepasa imapd[16933]: imaps SSL service init from 217.231.104.18
1558 Mar 18 07:05:31 quepasa imapd[16933]: Login user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1559 Mar 18 07:05:49 quepasa imapd[16933]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1560 Mar 18 07:07:06 quepasa /USR/SBIN/CRON[16956]: (joko) CMD (~/.cronrc-hourly)
1561 Mar 18 07:08:12 quepasa innd: ME time 361626 idle 351611(3) artwrite 0(0) artlink 0(0) hiswrite 0(0) hissync 0(1
1562 ) sitesend 0(0) artctrl 0(0) artcncl 0(0) hishave 0(0)
1563 Mar 18 07:15:10 quepasa syslogd 1.4.1#10: restart.
1564 Mar 18 07:15:11 quepasa kernel: klogd 1.4.1#10, log source = /proc/kmsg started.
1565 Mar 18 07:15:11 quepasa kernel: Cannot find map file.
1566 Mar 18 07:15:11 quepasa kernel: Loaded 50 symbols from 7 modules.
1567 Mar 18 07:15:11 quepasa kernel: actually_do_remove : couldn't remove 'pid' from '/home/uml/quepasa/var/quepasa',
1568 errno = 13
1569 Mar 18 07:15:11 quepasa kernel: umid 'quepasa' is in use
1570 Mar 18 07:15:11 quepasa kernel: Open of machine pid file "/home/uml/quepasa/var/quepasa/pid" failed - errno = 17
1571 Mar 18 07:15:11 quepasa kernel: tracing thread pid = 16706
1572 Mar 18 07:15:11 quepasa kernel: Linux version 2.4.18-29um (root@linux) (gcc version 2.95.3 20010315 (SuSE)) #1 S
1573 un May 26 17:01:48 CEST 2002
1574 Mar 18 07:15:11 quepasa kernel: On node 0 totalpages: 32768
1575 Mar 18 07:15:11 quepasa kernel: zone(0): 0 pages.
1576 Mar 18 07:15:11 quepasa kernel: zone(1): 32768 pages.
1577 Mar 18 07:15:11 quepasa kernel: zone(2): 0 pages.
1578 Mar 18 07:15:11 quepasa kernel: Kernel command line: mem=128M umid=quepasa uml_dir=/home/uml/quepasa/var eth0=tu
1579 ntap,tap1 ubd0=/home/uml/quepasa/rootfs/root_fs.woody-stable.ext3 ubd1=/home/uml/quepasa/swap ubd2=/home/uml/que
1580 pasa/datafs/data_fs.ext3 root=/dev/ubd0
1581 Mar 18 07:15:11 quepasa kernel: Calibrating delay loop... 616.81 BogoMIPS
1582 Mar 18 07:15:11 quepasa kernel: Memory: 129008k available
1583 Mar 18 07:15:11 quepasa kernel: Dentry-cache hash table entries: 16384 (order: 5, 131072 bytes)
1584 Mar 18 07:15:11 quepasa kernel: Inode-cache hash table entries: 8192 (order: 4, 65536 bytes)
1585 Mar 18 07:15:11 quepasa kernel: Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
1586 Mar 18 07:15:11 quepasa kernel: Buffer-cache hash table entries: 8192 (order: 3, 32768 bytes)
1587 Mar 18 07:15:11 quepasa kernel: Page-cache hash table entries: 32768 (order: 5, 131072 bytes)
1588 Mar 18 07:15:11 quepasa kernel: Checking for host processor cmov support...Yes
1589 Mar 18 07:15:11 quepasa kernel: Checking for host processor xmm support...No
1590 Mar 18 07:15:11 quepasa kernel: Checking that ptrace can change system call numbers...OK
1591 Mar 18 07:15:11 quepasa kernel: Checking that host ptys support output SIGIO...No, enabling workaround
1592 Mar 18 07:15:11 quepasa kernel: POSIX conformance testing by UNIFIX
1593 Mar 18 07:15:11 quepasa kernel: Linux NET4.0 for Linux 2.4
1594 Mar 18 07:15:11 quepasa kernel: Based upon Swansea University Computer Society NET3.039
1595 Mar 18 07:15:11 quepasa kernel: Initializing RT netlink socket
1596 Mar 18 07:15:11 quepasa kernel: Starting kswapd
1597 Mar 18 07:15:11 quepasa kernel: VFS: Diskquotas version dquot_6.4.0 initialized
1598 Mar 18 07:15:11 quepasa kernel: Journalled Block Device driver loaded
1599 Mar 18 07:15:11 quepasa kernel: devfs: v1.10 (20020120) Richard Gooch (rgooch@atnf.csiro.au)
1600 Mar 18 07:15:11 quepasa kernel: devfs: boot_options: 0x1
1601 Mar 18 07:15:11 quepasa kernel: JFFS version 1.0, (C) 1999, 2000 Axis Communications AB
1602 Mar 18 07:15:11 quepasa kernel: JFFS2 version 2.1. (C) 2001 Red Hat, Inc., designed by Axis Communications AB.
1603 Mar 18 07:15:11 quepasa kernel: pty: 256 Unix98 ptys configured
1604 Mar 18 07:15:11 quepasa kernel: block: 128 slots per queue, batch=32
1605 Mar 18 07:15:11 quepasa kernel: RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
1606 Mar 18 07:15:11 quepasa kernel: Netdevice 0 : TUN/TAP backend -
1607 Mar 18 07:15:11 quepasa kernel: loop: loaded (max 8 devices)
1608 Mar 18 07:15:11 quepasa kernel: Universal TUN/TAP device driver 1.4 (C)1999-2001 Maxim Krasnyansky
1609 Mar 18 07:15:11 quepasa kernel: NET4: Linux TCP/IP 1.0 for NET4.0
1610 Mar 18 07:15:11 quepasa kernel: IP Protocols: ICMP, UDP, TCP
1611 Mar 18 07:15:11 quepasa kernel: IP: routing cache hash table of 1024 buckets, 8Kbytes
1612 Mar 18 07:15:11 quepasa kernel: TCP: Hash tables configured (established 8192 bind 8192)
1613 Mar 18 07:15:11 quepasa kernel: NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
1614 Mar 18 07:15:11 quepasa kernel: Initializing stdio console driver
1615 Mar 18 07:15:11 quepasa kernel: Initializing software serial port version 1
1616 Mar 18 07:15:11 quepasa kernel: mconsole (version 2) initialized on /home/uml/quepasa/var/quepasa/mconsole
1617 Mar 18 07:15:11 quepasa kernel: Partition check:
1618 Mar 18 07:15:11 quepasa kernel: ubda: unknown partition table
1619 Mar 18 07:15:11 quepasa kernel: ubdb: unknown partition table
1620 Mar 18 07:15:11 quepasa kernel: ubdc: unknown partition table
1621 Mar 18 07:15:11 quepasa kernel: UML Audio Relay
1622 Mar 18 07:15:11 quepasa kernel: EXT3-fs: INFO: recovery required on readonly filesystem.
1623 Mar 18 07:15:11 quepasa kernel: EXT3-fs: write access will be enabled during recovery.
1624 Mar 18 07:15:11 quepasa kernel: (recovery.c, 254): journal_recover: JBD: recovery, exit status 0, recovered tran
1625 sactions 809860 to 809919
1626 Mar 18 07:15:11 quepasa kernel: (recovery.c, 256): journal_recover: JBD: Replayed 2109 and revoked 0/17 blocks
1627 Mar 18 07:15:11 quepasa kernel: kjournald starting. Commit interval 5 seconds
1628 Mar 18 07:15:11 quepasa kernel: EXT3-fs: ubd(98,0): orphan cleanup on readonly fs
1629 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 81301
1630 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 96140
1631 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 96124
1632 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 48784
1633 Mar 18 07:15:11 quepasa kernel: EXT3-fs: ubd(98,0): 4 orphan inodes deleted
1634 Mar 18 07:15:11 quepasa kernel: EXT3-fs: recovery complete.
1635 Mar 18 07:15:11 quepasa kernel: EXT3-fs: mounted filesystem with ordered data mode.
1636 Mar 18 07:15:11 quepasa kernel: VFS: Mounted root (ext3 filesystem) readonly.
1637 Mar 18 07:15:11 quepasa kernel: Mounted devfs on /dev
1638 Mar 18 07:15:11 quepasa kernel: Adding Swap: 131064k swap-space (priority -1)
1639 Mar 18 07:15:11 quepasa kernel: EXT3 FS 2.4-0.9.17, 10 Jan 2002 on ubd(98,0), internal journal
1640 Mar 18 07:15:11 quepasa kernel: execvp of 'xterm' failed - errno = 2
1641 Mar 18 07:15:11 quepasa kernel: xterm_open : run_helper failed
1642 Mar 18 07:15:11 quepasa kernel: ip_tables: (C) 2000-2002 Netfilter core team
1643 Mar 18 07:15:11 quepasa kernel: ip_conntrack (1024 buckets, 8192 max)
1644 Mar 18 07:15:11 quepasa kernel: kjournald starting. Commit interval 5 seconds
1645 Mar 18 07:15:11 quepasa kernel: EXT3 FS 2.4-0.9.17, 10 Jan 2002 on ubd(98,32), internal journal
1646 Mar 18 07:15:11 quepasa kernel: EXT3-fs: mounted filesystem with ordered data mode.
1647 Mar 18 07:15:49 quepasa amavis[265]: starting. amavisd new-20020517 Fri Jul 26 16:50:33 EST 2002
1648 Mar 18 07:15:49 quepasa amavis[268]: Process Backgrounded
1649 Mar 18 07:15:49 quepasa amavis[268]: 2003/03/18-07:15:49 Amavis (type Net::Server::PreForkSimple) starting! pid(
1650 268)
1651 Mar 18 07:15:49 quepasa amavis[268]: Binding to UNIX socket file /var/run/amavis/amavisd.sock using SOCK_STREAM
1652 Mar 18 07:15:49 quepasa amavis[268]: Binding to TCP port 10024 on host 127.0.0.1
1653 Mar 18 07:15:49 quepasa amavis[268]: Setting gid to "65534 65534"
1654 Mar 18 07:15:49 quepasa amavis[268]: Setting uid to "104"
1655 Mar 18 07:15:50 quepasa rpc.statd[271]: Version 1.0 Starting
1656 Mar 18 07:16:04 quepasa innd: SERVER descriptors 1024
1657 Mar 18 07:16:04 quepasa innd: SERVER outgoing 1011
1658 Mar 18 07:16:04 quepasa innd: SERVER ccsetup control:11
1659 Mar 18 07:16:04 quepasa innd: SERVER lcsetup localconn:13
1660 Mar 18 07:16:04 quepasa innd: SERVER rcsetup remconn:4
1661 Mar 18 07:16:04 quepasa innd: overview spawned overview:16:proc:303
1662 Mar 18 07:16:05 quepasa innd: SERVER perl filtering enabled
1663 Mar 18 07:16:05 quepasa innd: SERVER renumbering
1664 Mar 18 07:16:05 quepasa innd: SERVER renumber nfo.links.computing hi from 1328 to 1372
1665 Mar 18 07:16:05 quepasa innd: SERVER renumber nfo.links.misc hi from 35 to 36
1666 Mar 18 07:16:05 quepasa innd: SERVER renumber nfo.log.cvs hi from 534 to 552
1667 Mar 18 07:16:05 quepasa innd: SERVER renumber nfo.sysadmin.debian hi from 10 to 15
1668 Mar 18 07:16:05 quepasa innd: SERVER renumber nfo.support hi from 93 to 96
1669 Mar 18 07:16:05 quepasa innd: SERVER starting
1670 Mar 18 07:16:22 quepasa sm-msp-queue[441]: h2I5wMrb016763: to=cvs-log@netfrag.org, ctladdr=root (0/0), delay=00:
1671 18:00, xdelay=00:00:00, mailer=relay, pri=210094, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Conne
1672 ction refused by [127.0.0.1]
1673 Mar 18 07:16:22 quepasa sm-mta[446]: starting daemon (8.12.3): SMTP+queueing@00:10:00
1674 Mar 18 07:16:23 quepasa ucd-snmp[451]: UCD-SNMP version 4.2.3
1675 Mar 18 07:16:23 quepasa snmptrapd[453]: Starting snmptrapd 4.2.3
1676 Mar 18 07:16:24 quepasa /usr/sbin/cron[464]: (CRON) INFO (pidfile fd = 3)
1677 Mar 18 07:16:24 quepasa /usr/sbin/cron[465]: (CRON) STARTUP (fork ok)
1678 Mar 18 07:16:25 quepasa /usr/sbin/cron[465]: (CRON) INFO (Running @reboot jobs)
1679 Mar 18 07:20:04 quepasa /USR/SBIN/CRON[496]: (smmsp) CMD (test -x /usr/share/sendmail/sendmail && /usr/share/sendmail/sendmail cron-msp)
1680 Mar 18 07:20:09 quepasa sm-msp-queue[511]: STARTTLS=client, relay=[127.0.0.1], version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
1681 Mar 18 07:20:09 quepasa sm-mta[513]: STARTTLS=server, relay=localhost [127.0.0.1], version=TLSv1/SSLv3, verify=NO, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
1682 Mar 18 07:20:23 quepasa sm-mta[513]: h2I6K8Fk000513: from=<root@quepasa.netfrag.org>, size=2854, class=0, nrcpts=1, msgid=<200303180558.h2I5wMrb016763@quepasa.netfrag.org>, proto=ESMTP, daemon=MSA, relay=localhost [127.0.0.1]
1683 Mar 18 07:20:23 quepasa amavis[272]: AM.CL /var/lib/amavis/amavis-milter-XXUsQsMZ: <root@quepasa.netfrag.org> -> <cvs-log@netfrag.org>
1684 Mar 18 07:20:23 quepasa amavis[272]: Checking: <root@quepasa.netfrag.org> -> <cvs-log@netfrag.org>
1685
1686 #> tail -n 200 /var/log/messages | less
1687 Mar 18 05:51:34 quepasa kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=fe:fd:d5:85:76:24:00:ff:d8:6e:08:77:08:00 S
1688 RC=210.171.12.166 DST=213.133.118.36 LEN=48 TOS=0x00 PREC=0x00 TTL=105 ID=42074 DF PROTO=TCP SPT=30554 DPT=445 W
1689 INDOW=64240 RES=0x00 SYN URGP=0
1690 Mar 18 06:00:36 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1691 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59072 WINDOW=0 RES=0x00 ACK RST URGP=0
1692 Mar 18 06:00:45 quepasa last message repeated 2 times
1693 Mar 18 06:15:11 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1694 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59140 WINDOW=0 RES=0x00 ACK RST URGP=0
1695 Mar 18 06:15:20 quepasa last message repeated 2 times
1696 Mar 18 06:30:12 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1697 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59196 WINDOW=0 RES=0x00 ACK RST URGP=0
1698 Mar 18 06:30:21 quepasa last message repeated 2 times
1699 Mar 18 06:45:24 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1700 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59278 WINDOW=0 RES=0x00 ACK RST URGP=0
1701 Mar 18 06:45:33 quepasa last message repeated 2 times
1702 Mar 18 07:02:35 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1703 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59357 WINDOW=0 RES=0x00 ACK RST URGP=0
1704 Mar 18 07:02:39 quepasa last message repeated 2 times
1705 Mar 18 07:15:10 quepasa syslogd 1.4.1#10: restart.
1706 Mar 18 07:15:11 quepasa kernel: klogd 1.4.1#10, log source = /proc/kmsg started.
1707 Mar 18 07:15:11 quepasa kernel: Cannot find map file.
1708 Mar 18 07:15:11 quepasa kernel: Loaded 50 symbols from 7 modules.
1709
1710 #> tail -n 200 /var/log/kern.log | less
1711 Mar 18 05:51:28 quepasa kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=fe:fd:d5:85:76:24:00:ff:d8:6e:08:77:08:00 S
1712 RC=210.171.12.166 DST=213.133.118.36 LEN=48 TOS=0x00 PREC=0x00 TTL=105 ID=41730 DF PROTO=TCP SPT=30554 DPT=445 W
1713 INDOW=64240 RES=0x00 SYN URGP=0
1714 Mar 18 05:51:34 quepasa kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=fe:fd:d5:85:76:24:00:ff:d8:6e:08:77:08:00 S
1715 RC=210.171.12.166 DST=213.133.118.36 LEN=48 TOS=0x00 PREC=0x00 TTL=105 ID=42074 DF PROTO=TCP SPT=30554 DPT=445 W
1716 INDOW=64240 RES=0x00 SYN URGP=0
1717 Mar 18 06:00:36 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1718 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59072 WINDOW=0 RES=0x00 ACK RST URGP=0
1719 Mar 18 06:00:45 quepasa last message repeated 2 times
1720 Mar 18 06:15:11 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1721 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59140 WINDOW=0 RES=0x00 ACK RST URGP=0
1722 Mar 18 06:15:20 quepasa last message repeated 2 times
1723 Mar 18 06:30:12 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1724 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59196 WINDOW=0 RES=0x00 ACK RST URGP=0
1725 Mar 18 06:30:21 quepasa last message repeated 2 times
1726 Mar 18 06:45:24 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1727 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59278 WINDOW=0 RES=0x00 ACK RST URGP=0
1728 Mar 18 06:45:33 quepasa last message repeated 2 times
1729 Mar 18 07:02:35 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS
1730 =0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=59357 WINDOW=0 RES=0x00 ACK RST URGP=0
1731 Mar 18 07:02:39 quepasa last message repeated 2 times
1732 Mar 18 07:15:11 quepasa kernel: klogd 1.4.1#10, log source = /proc/kmsg started.
1733 Mar 18 07:15:11 quepasa kernel: Cannot find map file.
1734 Mar 18 07:15:11 quepasa kernel: Loaded 50 symbols from 7 modules.
1735
1736 #> tail -n 200 /var/log/debug
1737 Mar 18 07:15:11 quepasa kernel: (recovery.c, 254): journal_recover: JBD: recovery, exit status 0, recovered transactions 809860 to 809919
1738 Mar 18 07:15:11 quepasa kernel: (recovery.c, 256): journal_recover: JBD: Replayed 2109 and revoked 0/17 blocks
1739 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 81301
1740 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 96140
1741 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 96124
1742 Mar 18 07:15:11 quepasa kernel: ext3_orphan_cleanup: deleting unreferenced inode 48784
1743
1744 #> tail -n 200 /var/log/daemon.log
1745 Mar 18 06:33:35 quepasa imapd[16399]: connect from 217.231.109.7
1746 Mar 18 06:33:39 quepasa imapd[16404]: connect from 217.231.109.7
1747 Mar 18 07:04:24 quepasa imapd[16917]: connect from 217.231.104.18
1748 Mar 18 07:04:51 quepasa imapd[16929]: connect from 217.231.104.18
1749 Mar 18 07:04:52 quepasa imapd[16930]: connect from 217.231.104.18
1750 Mar 18 07:05:04 quepasa imapd[16931]: connect from 217.231.104.18
1751 Mar 18 07:05:30 quepasa imapd[16933]: connect from 217.231.104.18
1752 Mar 18 07:15:50 quepasa rpc.statd[271]: Version 1.0 Starting
1753 Mar 18 07:16:23 quepasa ucd-snmp[451]: UCD-SNMP version 4.2.3
1754
1755 #> tail -n 200 /var/log/auth.log
1756 Mar 18 06:20:03 quepasa PAM_unix[16124]: (cron) session opened for user smmsp by (uid=0)
1757 Mar 18 06:20:12 quepasa PAM_unix[16124]: (cron) session closed for user smmsp
1758 Mar 18 06:25:06 quepasa PAM_unix[16288]: (cron) session opened for user root by (uid=0)
1759 Mar 18 06:25:24 quepasa su[16313]: + ??? root-nobody
1760 Mar 18 06:25:24 quepasa PAM_unix[16313]: (su) session opened for user nobody by (uid=0)
1761 Mar 18 06:25:50 quepasa sshd[16316]: Accepted publickey for joko from 217.231.109.7 port 4729 ssh2
1762 Mar 18 06:25:51 quepasa PAM_unix[16318]: (ssh) session opened for user joko by (uid=1001)
1763 Mar 18 06:26:12 quepasa PAM_unix[16318]: (ssh) session closed for user joko
1764 Mar 18 06:26:12 quepasa sshd[16318]: PAM pam_putenv: delete non-existent entry; MAIL
1765 Mar 18 06:30:06 quepasa PAM_unix[16367]: (cron) session opened for user smmsp by (uid=0)
1766 Mar 18 06:30:07 quepasa PAM_unix[16368]: (cron) session opened for user joko_mail by (uid=0)
1767 Mar 18 06:30:20 quepasa PAM_unix[16367]: (cron) session closed for user smmsp
1768 Mar 18 06:30:33 quepasa PAM_unix[16368]: (cron) session closed for user joko_mail
1769 Mar 18 06:31:03 quepasa PAM_unix[16388]: (cron) session opened for user root by (uid=0)
1770 Mar 18 06:31:08 quepasa PAM_unix[16388]: (cron) session closed for user root
1771 Mar 18 06:40:50 quepasa PAM_unix[16518]: (cron) session opened for user smmsp by (uid=0)
1772 Mar 18 06:41:14 quepasa PAM_unix[16518]: (cron) session closed for user smmsp
1773 Mar 18 06:45:16 quepasa PAM_unix[16590]: (cron) session opened for user joko_mail by (uid=0)
1774 Mar 18 06:45:45 quepasa PAM_unix[16590]: (cron) session closed for user joko_mail
1775 Mar 18 06:50:05 quepasa PAM_unix[16677]: (cron) session opened for user smmsp by (uid=0)
1776 Mar 18 06:50:14 quepasa PAM_unix[16677]: (cron) session closed for user smmsp
1777 Mar 18 06:52:05 quepasa sshd[16696]: Accepted password for root from 217.231.104.18 port 4777 ssh2
1778 Mar 18 06:52:12 quepasa PAM_unix[16696]: (ssh) session opened for user root by (uid=0)
1779 Mar 18 07:00:08 quepasa PAM_unix[16813]: (cron) session opened for user smmsp by (uid=0)
1780 Mar 18 07:00:08 quepasa PAM_unix[16814]: (cron) session opened for user root by (uid=0)
1781 Mar 18 07:00:08 quepasa PAM_unix[16815]: (cron) session opened for user joko_mail by (uid=0)
1782 Mar 18 07:00:48 quepasa PAM_unix[16813]: (cron) session closed for user smmsp
1783 Mar 18 07:02:47 quepasa PAM_unix[16815]: (cron) session closed for user joko_mail
1784 Mar 18 07:04:01 quepasa PAM_unix[16814]: (cron) session closed for user root
1785 Mar 18 07:07:06 quepasa PAM_unix[16955]: (cron) session opened for user joko by (uid=0)
1786 Mar 18 07:07:26 quepasa PAM_unix[16955]: (cron) session closed for user joko
1787 Mar 18 07:16:24 quepasa sshd[459]: Server listening on 0.0.0.0 port 22.
1788 Mar 18 07:17:42 quepasa sshd[481]: Accepted password for root from 217.231.104.18 port 4827 ssh2
1789 Mar 18 07:17:42 quepasa PAM_unix[481]: (ssh) session opened for user root by (uid=0)
1790 Mar 18 07:20:04 quepasa PAM_unix[495]: (cron) session opened for user smmsp by (uid=0)
1791 Mar 18 07:20:09 quepasa PAM_unix[495]: (cron) session closed for user smmsp
1792
1793 #> tail -n 200 /var/log/mysql.log
1794 030318 6:56:00 149 Quit
1795 147 Quit
1796 030318 6:56:09 148 Quit
1797 030318 6:56:14 145 Quit
1798 /usr/sbin/mysqld, Version: 3.23.49-log, started with:
1799 Tcp port: 0 Unix socket: /var/run/mysqld/mysqld.sock
1800 Time Id Command Argument
1801 030318 7:16:09 1 Connect debian-sys-maint@localhost on
1802 1 Quit
1803 2 Connect debian-sys-maint@localhost on
1804 2 Quit
1805
1806 #> tail -n 200 /var/log/mail/mail.info
1807 Mar 18 07:05:03 quepasa imapd[16930]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1808 Mar 18 07:05:05 quepasa imapd[16931]: Login user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1809 Mar 18 07:05:30 quepasa imapd[16931]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1810 Mar 18 07:05:31 quepasa imapd[16933]: Login user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1811 Mar 18 07:05:49 quepasa imapd[16933]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1812 Mar 18 07:15:49 quepasa amavis[265]: starting. amavisd new-20020517 Fri Jul 26 16:50:33 EST 2002
1813 Mar 18 07:15:49 quepasa amavis[268]: Process Backgrounded
1814 Mar 18 07:15:49 quepasa amavis[268]: 2003/03/18-07:15:49 Amavis (type Net::Server::PreForkSimple) starting! pid(268)
1815 Mar 18 07:15:49 quepasa amavis[268]: Binding to UNIX socket file /var/run/amavis/amavisd.sock using SOCK_STREAM
1816 Mar 18 07:15:49 quepasa amavis[268]: Binding to TCP port 10024 on host 127.0.0.1
1817 Mar 18 07:15:49 quepasa amavis[268]: Setting gid to "65534 65534"
1818 Mar 18 07:15:49 quepasa amavis[268]: Setting uid to "104"
1819 Mar 18 07:16:22 quepasa sm-msp-queue[441]: h2I5wMrb016763: to=cvs-log@netfrag.org, ctladdr=root (0/0), delay=00:18:00, xdelay=00:00:00, mailer=relay, pri=210094, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]
1820 Mar 18 07:16:22 quepasa sm-mta[446]: starting daemon (8.12.3): SMTP+queueing@00:10:00
1821 Mar 18 07:20:09 quepasa sm-msp-queue[511]: STARTTLS=client, relay=[127.0.0.1], version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
1822 Mar 18 07:20:09 quepasa sm-mta[513]: STARTTLS=server, relay=localhost [127.0.0.1], version=TLSv1/SSLv3, verify=NO, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
1823 Mar 18 07:20:23 quepasa sm-mta[513]: h2I6K8Fk000513: from=<root@quepasa.netfrag.org>, size=2854, class=0, nrcpts=1, msgid=<200303180558.h2I5wMrb016763@quepasa.netfrag.org>, proto=ESMTP, daemon=MSA, relay=localhost [127.0.0.1]
1824 Mar 18 07:20:23 quepasa amavis[272]: AM.CL /var/lib/amavis/amavis-milter-XXUsQsMZ: <root@quepasa.netfrag.org> -> <cvs-log@netfrag.org>
1825 Mar 18 07:20:23 quepasa amavis[272]: Checking: <root@quepasa.netfrag.org> -> <cvs-log@netfrag.org>
1826 Mar 18 07:20:31 quepasa amavis[272]: spam_scan: No, hits=-1.8 tests=UNIFIED_PATCH,CTYPE_JUST_HTML, <root@quepasa.netfrag.org>
1827 Mar 18 07:20:31 quepasa amavis[272]: mail checking ended: ACCEPT
1828 Mar 18 07:20:31 quepasa sm-mta[513]: h2I6K8Fk000513: Milter add: header: X-Virus-Scanned: by amavisd-milter (http://amavis.org/)
1829 Mar 18 07:20:31 quepasa sm-msp-queue[511]: h2I5wMrb016763: to=cvs-log@netfrag.org, ctladdr=root (0/0), delay=00:22:09, xdelay=00:00:23, mailer=relay, pri=300094, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (h2I6K8Fk000513 Message accepted for delivery)
1830 Mar 18 07:20:34 quepasa sm-mta[518]: h2I6K8Fk000513: to=|/data/opt/dispatchmail/bin/dispatchmail, ctladdr=<cvs-log@netfrag.org> (1014/1014), delay=00:00:12, xdelay=00:00:02, mailer=prog, pri=33201, dsn=2.0.0, stat=Sent
1831 Mar 18 07:25:58 quepasa sendmail[553]: h2I6PwQc000553: from=joko, size=24899, class=0, nrcpts=1, msgid=<20030318
1832 0625.h2I6PwQc000553@quepasa.netfrag.org>, relay=joko@localhost
1833 Mar 18 07:25:58 quepasa sm-mta[554]: STARTTLS=server, relay=localhost [127.0.0.1], version=TLSv1/SSLv3, verify=NO, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
1834 Mar 18 07:25:58 quepasa sendmail[553]: STARTTLS=client, relay=[127.0.0.1], version=TLSv1/SSLv3, verify=FAIL, cipher=EDH-RSA-DES-CBC3-SHA, bits=168/168
1835 Mar 18 07:25:59 quepasa sm-mta[554]: h2I6PwFk000554: from=<joko@quepasa.netfrag.org>, size=25163, class=0, nrcpts=1, msgid=<200303180625.h2I6PwQc000553@quepasa.netfrag.org>, proto=ESMTP, daemon=MSA, relay=localhost [127.0.0.1]
1836 Mar 18 07:25:59 quepasa amavis[273]: AM.CL /var/lib/amavis/amavis-milter-XXXV9Le7: <joko@quepasa.netfrag.org> -> <joko@netfrag.org>
1837 Mar 18 07:25:59 quepasa amavis[273]: Checking: <joko@quepasa.netfrag.org> -> <joko@netfrag.org>
1838 Mar 18 07:26:00 quepasa amavis[273]: spam_scan: No, hits=-0.7 tests=NO_REAL_NAME,URI_IS_POUND,UNIFIED_PATCH,SUPERLONG_LINE,CTYPE_JUST_HTML, <joko@quepasa.netfrag.org>
1839 Mar 18 07:26:00 quepasa amavis[273]: mail checking ended: ACCEPT
1840 Mar 18 07:26:00 quepasa sm-mta[554]: h2I6PwFk000554: Milter add: header: X-Virus-Scanned: by amavisd-milter (http://amavis.org/)
1841 Mar 18 07:26:01 quepasa sendmail[553]: h2I6PwQc000553: to=joko@netfrag.org, ctladdr=joko (1001/100), delay=00:00:03, xdelay=00:00:03, mailer=relay, pri=30124, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (h2I6PwFk000554 Message accepted for delivery)
1842 Mar 18 07:26:07 quepasa sm-mta[558]: h2I6PwFk000554: to=|"/data/opt/dispatchmail/bin/dispatchmail --base=/home/joko/virtual/joko_mail", ctladdr=joko_mail (1000/100), delay=00:00:09, xdelay=00:00:06, mailer=prog, pri=55491, dsn=2.0.0, stat=Sent
1843 Mar 18 07:35:54 quepasa imapd[630]: Login user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1844 Mar 18 07:35:54 quepasa imapd[630]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1845 Mar 18 07:35:55 quepasa imapd[631]: Login user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1846 Mar 18 07:35:55 quepasa imapd[631]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1847 Mar 18 07:35:56 quepasa imapd[632]: Login user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1848 Mar 18 07:35:57 quepasa imapd[632]: Logout user=joko_mail host=pD9E76812.dip.t-dialin.net [217.231.104.18]
1849
1850 #> tail -n 200 /var/log/ksymoops
1851 root@quepasa:/var/log/ksymoops# l
1852 total 172
1853 drwxr-xr-x 2 root root 4096 Mar 18 07:14 ./
1854 drwxr-xr-x 10 root root 4096 Mar 18 07:03 ../
1855 -r--r--r-- 1 root root 26987 Mar 16 07:05 20030316070301.ksyms
1856 -r--r--r-- 1 root root 308 Mar 16 07:05 20030316070301.modules
1857 -r--r--r-- 1 root root 26987 Mar 17 06:49 20030317064955.ksyms
1858 -r--r--r-- 1 root root 308 Mar 17 06:49 20030317064955.modules
1859 -rw-r--r-- 1 root root 484 Mar 18 07:14 20030318.log
1860 -r--r--r-- 1 root root 26987 Mar 18 06:59 20030318065940.ksyms
1861 -r--r--r-- 1 root root 308 Mar 18 06:59 20030318065940.modules
1862 -rw-r--r-- 1 root root 25400 Mar 18 07:14 20030318071432.ksyms
1863 -rw-r--r-- 1 root root 195 Mar 18 07:14 20030318071432.modules
1864 -rw-r--r-- 1 root root 26987 Mar 18 07:14 20030318071433.ksyms
1865 -rw-r--r-- 1 root root 344 Mar 18 07:14 20030318071433.modules
1866
1867 c purge /var/log/news/news.notice!!! (starts getting big! -> 37MB)
1868 -> seems to get autorotated by logrotate already ... ;-)
1869
1870 o found this in /var/log/mail/mail.err:
1871 Mar 17 06:19:34 quepasa sm-mta[6544]: h2H5JPfe006538: SYSERR(root): www.netfrag.org. config error: mail loops back to me (MX problem?)
1872
1873 i run 'mailq' from time to time (shows mails hanging in the MSP|MTA queues....)
1874
1875 o "You Are Here" for caesar (using the "Tracker"???)
1876
1877 o caesar: introduce 'check_agents' (for main-host and for each virtual one!)
1878
1879 i quepasa.netfrag.org:
1880 #> cd /data/www/virtual/netfrag/docs/nfo
1881 #> ./.start &
1882 #> ./.check_agents
1883 check_agents - quepasa.netfrag.org - Tue Mar 18 07:58:51 CET 2003
1884 root 1034 1 0 08:00 pts/0 00:00:00 /bin/sh ./.start
1885 root 1048 1034 0 08:00 pts/0 00:00:00 /bin/sh ./.start
1886 root 1049 1048 0 08:00 pts/0 00:00:00 /bin/sh ./.start
1887 root 1052 1049 0 08:00 pts/0 00:00:00 /usr/bin/perl ./.phpdocrc glib phpedit
1888 root 1053 1052 0 08:00 pts/0 00:00:06 /data/opt/tools/php-4.3.1/php /data/opt/tools/phpdocumentor/phpdoc -s --title org.netfrag.glib - a component library --defaultpackagename org.netfrag.glib --target /data/www/virtual/netfrag/docs/nfo/api/org.netfrag --output HTML:frames:phpedit --directory /data/www/virtual/netfrag/docs/nfo/code/org.netfrag.glib --customtags module,license,license-url,author-url --sourcecode on -q
1889 i please recognize the parent->child relations of the processes here... (can we visualize them in a smart way?)
1890
1891 @alias ThinLine=<hr noshade style="height:1px">
1892 (from: http://www.usemod.com/cgi-bin/wiki.pl?ThinLine)
1893
1894 o try to find all regexes in content @at www.netfrag.org [@via search.netfrag.org],
1895 e.g. the nice 'ThinLine' substitution-patterns
1896 @from @link http://www.usemod.com/cgi-bin/wiki.pl?ThinLine
1897
1898 o refactor YAA-JobsStuff: use DataSource::Generic to talk to a xml-file
1899
1900 i quepasa.netfrag.org
1901 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1902 check_agents - quepasa.netfrag.org - Tue Mar 18 11:09:08 CET 2003
1903 root 4918 4898 0 11:14 pts/1 00:00:00 /bin/sh -c ./.run build-api;
1904 root 4981 4918 0 11:16 pts/1 00:00:00 /usr/bin/perl ./.phpdocrc elib phpedit
1905 root 4982 4981 0 11:16 pts/1 00:00:27 /data/opt/tools/php-4.3.1/php /data/opt/tools/phpdocumentor/phpdoc -s --title elib - some old php code - just vops might be interesting --defaultpackagename org.netfrag.elib --target /data/www/virtual/netfrag/docs/nfo/api/org.netfrag --output HTML:frames:phpedit --directory /data/www/virtual/netfrag/docs/nfo/code/elib --customtags module,license,license-url,author-url --sourcecode on -q
1906 www-data 5031 477 0 11:17 ? 00:00:00 /usr/bin/python /usr/lib/cgi-bin/viewcvs.cgi
1907
1908 i caesar - the better sourceforge?
1909
1910 o integrate staging:
1911 x make publish
1912 o make stage[1|2|3]
1913 o 'make review|approve'???
1914
1915 x cd /data/www/virtual/netfrag/docs/nfo
1916 x refactor using gnu make
1917 o include raw-code to docs!!!
1918 o via make: run jobs in parallel (phpDocumentor!)
1919 o generate & publish Autodia xml!!!
1920
1921 o make custom 404-page for netfrag.org
1922
1923 o StaticExplorer!!! (CD-ROM & Co.)
1924
1925 i quepasa.netfrag.org:/data/www/virtual/netfrag/docs/nfo/
1926 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.start
1927 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1928 check_agents - quepasa.netfrag.org - Wed Mar 19 22:20:17 CET 2003
1929 root 18573 18571 0 23:46 pts/1 00:00:00 /bin/sh -c ./.run sync;
1930 root 18575 18574 0 23:46 pts/1 00:00:00 /usr/bin/perl /data/opt/tools/synccvs.pl nfo/php/libs/org.netfrag.glib code/org.netfrag.glib
1931 ready.
1932 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1933 check_agents - quepasa.netfrag.org - Wed Mar 19 22:21:16 CET 2003
1934 root 18628 18571 0 23:47 pts/1 00:00:00 /bin/sh -c ./.run build-api;
1935 root 18631 18628 0 23:47 pts/1 00:00:00 /usr/bin/perl ./.phpdocrc glib phpedit
1936 root 18632 18631 0 23:47 pts/1 00:00:00 /data/opt/tools/php-4.3.1/php /data/opt/tools/phpdocumentor/phpdoc -s --title org.netfrag.glib - a component library --defaultpackagename org.netfrag.glib --target /data/www/virtual/netfrag/docs/nfo/api/org.netfrag --output HTML:frames:phpedit --directory /data/www/virtual/netfrag/docs/nfo/code/org.netfrag.glib --customtags module,license,license-url,author-url --sourcecode on -q
1937 ready.
1938 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1939 check_agents - quepasa.netfrag.org - Wed Mar 19 22:22:49 CET 2003
1940 No agents running.
1941
1942 o news.netfrag.org/nfo.journal
1943
1944 i #> go debian|suse|redhat|home
1945 switches linux base-system(!!!)
1946 is this possible?
1947 required:
1948 o prepared fs-parts
1949 o alien-like program for converting complete package-system-databases
1950 (not just single packages) between distris/packaging concepts
1951
1952 o make 'rap' available globally on a linux system (/usr/sbin?)
1953 e.g.: #> rap docu
1954 (target 'docu' is defined in /etc/rap.xml)
1955
1956 i quepasa.netfrag.org
1957 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.start
1958 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.publish
1959 linking /data/www/virtual/netfrag/docs/nfo/api/build-log.html
1960 linking /data/www/virtual/netfrag/docs/nfo/api/error-log.html
1961 linking /data/www/virtual/netfrag/docs/nfo/api/org.netfrag
1962 linking /data/www/virtual/netfrag/docs/nfo/build/var
1963 root@quepasa:/data/www/virtual/netfrag/docs/nfo# ./.check_agents
1964 check_agents - quepasa.netfrag.org - Thu Mar 20 03:49:42 CET 2003
1965 root 20544 20542 0 05:28 pts/1 00:00:00 /bin/sh -c ./.run sync;
1966 root 20546 20545 0 05:28 pts/1 00:00:00 /usr/bin/perl /data/opt/tools/synccvs.pl nfo/php/libs/org.netfrag.glib code/org.netfrag.glib
1967 ready.
1968
1969 o phpDocumentIndex
1970 o metadata area at bottom (or at side) of shown item:
1971 o url of file|item
1972 o physical location|url of original document (if embedded)
1973 o metadata from directory scope (merged from one level above): .cvslink [->JumpToCvs], CVS/Entries|Repository|Root
1974
1975 o proof of concept for web-component-framework:
1976 tie org.netfrag.app--WebExplorer and org.netfrag.app--YAA together somehow...
1977
1978 i monitor daily mbox grow-factor by running as a "daily job with captured output" [CapturedDaily]:
1979 #> du -sch /home/joko/virtual/joko_mail
1980
1981 i new ssh-keys for joko@quepasa.netfrag.org
1982
1983 o enhance nfo-download-page
1984 o add docus (link to cvs .tar.gz)
1985 o api (offline???)
1986
1987 i phpDocumentIndex: fs--/data/www/global/apps/phpDocumentIndex/.pdi.php
1988
1989 o which components should get UUIDs?
1990 o org.netfrag.app--YAA
1991 o org.netfrag.app--WebExplorer
1992 o org.netfrag.app--phpDocumentIndex
1993
1994 m http://www.rojname.com/windows/windowstr.htm
1995 http://www.rojname.com/
1996 http://kurdistan.org/newrozdc.html
1997 http://www.niluferakbal.com/
1998 http://www.niluferakbal.com/yenisite/index_tr.html
1999 http://www.sineport.com/
2000 http://www.webservis.gen.tr/
2001 http://195.174.224.99/turkulist/
2002 http://www.turkticaret.net/siberhosting/index.php
2003 http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=%22konews@netscape.net%22
2004
2005 i Desktop/TurkToEng.reg
2006 --- snip ---
2007 REGEDIT4
2008
2009 [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\LangToLang TurkToEng]
2010 @="http://www.langtolang.com/browserMenu/TurkToEng.html"
2011 "contexts"=hex:10
2012 --- snip ---
2013
2014 m http://www.thehungersite.com/cgi-bin/WebObjects/CTDSites
2015 #> whois thehungersite.com?
2016 Registrant:
2017 greatergood.com, Inc (THEHUNGERSITE5-DOM)
2018 <protect>
2019 720 Olive Way, Suite 1800
2020 Seattle
2021 WA,98101
2022 US
2023 </protect>
2024
2025 Domain Name: THEHUNGERSITE.COM
2026
2027 Administrative Contact:
2028 Gehrt, John (JG10952) john@GREATERGOOD.COM
2029 <protect>
2030 YourSchoolShop.com
2031 720 Olive Way, Suite 1800
2032 Seattle, WA 98101
2033 206 674 8700 (FAX) 206 268 5454
2034 </protect>
2035 Technical Contact:
2036 Hood, Tomas (TH6073) tomas@YSS.COM
2037 <protect>
2038 YourSchoolShop.com
2039 1301 Fifth Avenue, Suite 1501
2040 Seattle, WA 98101
2041 206 674 8700 (FAX) 206 344 5221
2042 </protect>
2043 m http://www.greatergood.com/cgi-bin/WebObjects/GreaterGood
2044 © 2000-2002 GreaterGood.com. All rights reserved. Patent Pending.
2045 Owned and operated by CharityUSA.com, LLC.
2046 Funds are paid by CharityUSA.com, LLC. to the benefiting organization(s) in the form of a royalty payment.
2047 m http://charityusa.com/chausa/index.html
2048 #> whois charityusa.com
2049 Registrant:
2050 HOMELINE PUBLICATIONS (CHARITYUSA-DOM)
2051 <protect>
2052 110 BRIDGE ST
2053 DEDHAM, MA 02026-1702
2054 US
2055 </protect>
2056
2057 Domain Name: CHARITYUSA.COM
2058
2059 Administrative Contact, Technical Contact:
2060 HOMELINE PUBLICATIONS (HP413-ORG) timk@thehungersite.com
2061 <protect>
2062 HOMELINE PUBLICATIONS
2063 110 BRIDGE ST
2064 DEDHAM, MA 02026-1702
2065 US
2066 781 461 6161 fax: 781 461 6160
2067 </protect>
2068 m http://www.gearthatgives.com/cgi-bin/WebObjects/CTDStore.woa/wa/item?siteID=220&categoryID=265&itemID=3206&origin=THS_PopUnder1_ecomMCIraqKit
2069 m http://imageserv03.yss4.com/images/p/ths/THS_PopUnder1_ecomMCIraqKit.jpg
2070
2071 m http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=%22HOMELINE+PUBLICATIONS%22
2072 http://216.239.33.100/search?q=cache:C9xHdBbsEvQC:www.rhyolite.com/anti-spam/spammers.html+%22HOMELINE+PUBLICATIONS%22&hl=en&ie=UTF-8
2073 http://216.239.33.100/search?hl=en&ie=UTF-8&oe=UTF-8&q=cache%3Ahttp%3A%2F%2Fwww.rhyolite.com%2Fanti-spam%2Fobjections%2F
2074 http://216.239.33.100/search?hl=en&ie=UTF-8&oe=UTF-8&q=cache%3Ahttp%3A%2F%2Fwww.rhyolite.com%2Fanti-spam%2Fobjections%2Fkehres.html
2075
2076 #> whois ima.com
2077 Registrant:
2078 International Messaging Associates Ltd. (IMA-DOM)
2079 China Resources Building, 27/F, 26
2080 NO CITY, NO STATE 99999
2081 CN
2082
2083 Domain Name: IMA.COM
2084
2085 Administrative Contact, Technical Contact:
2086 Kehres, Tim (TK46) kehres@IMA.COM
2087 <protect>
2088 International Messaging Associates Ltd.
2089 Hong Kong Computer Center, 20/F
2090 HK
2091 +852-2520-0300 +852 2648-5913
2092 </protect>
2093
2094 m http://www.ima.com/
2095 http://www.ima.com/about/index.html
2096 http://www.ima.com/contacts/index.html
2097 http://www.ima.com/pricing.html
2098
2099 m some links pointing to different google language-interfaces:
2100 http://www.google.com/intl/xx-bork/
2101 http://www.google.com/intl/ia/
2102 http://www.google.com/intl/xx-hacker/
2103 http://www.google.com/intl/xx-piglatin/
2104 http://www.google.com/intl/la/
2105 http://www.google.com/intl/eo/
2106
2107 o prevent 'uml_boot --vhost={hostname} --kill' trying to kill it's own 'ps ax | grep {hostname}'
2108
2109 i startup of quepasa.netfrag.org on 2003-03-23
2110 Cleaning: /tmp /var/lock /var/run.
2111 Initializing random number generator... done.
2112 Recovering nvi editor sessions... done.
2113 Setting up X server socket directory /tmp/.X11-unix...done.
2114 INIT: Entering runlevel: 2
2115 Starting system log daemon: syslogd.
2116 Starting kernel log daemon: klogd.
2117 Starting AMaViS Daemons: amavis-milter amavisd.
2118 Starting NFS common utilities: statd.
2119 Starting internet superserver: inetd.
2120 INND: PID file exists -- unclean shutdown!
2121 Starting news server: innd.
2122 Starting jabberd: jabberd.
2123 Starting MySQL database server: mysqld.
2124 Starting Mail Transport Agent: sendmail.
2125 Starting network management services: snmpd snmptrapd.
2126 Starting OpenBSD Secure Shell server: sshd.
2127 Starting deferred execution scheduler: atd.
2128 Starting periodic command scheduler: cron.
2129 Starting web server: apache[Sun Mar 23 17:59:51 2003] [error] Cannot resolve host name service.netfrag.org --- ignoring!
2130 [Sun Mar 23 18:00:38 2003] [error] Cannot resolve host name cvs.netfrag.org --- ignoring!
2131 [Sun Mar 23 18:01:20 2003] [error] Cannot resolve host name news.netfrag.org --- ignoring!
2132
2133
2134
2135 [Sun Mar 23 18:02:02 2003] [error] Cannot resolve host name search.netfrag.org --- ignoring!
2136 [Sun Mar 23 18:02:44 2003] [error] Cannot resolve host name lashlarue.de --- ignoring!
2137 configuring dynamic domain "golf5.de"
2138 configuring dynamic domain "smartmen.de"
2139 configuring dynamic domain "ballonflug.de"
2140 [Sun Mar 23 18:02:45 2003] [error] Cannot resolve host name golf5.de --- ignoring!
2141
2142
2143 .
2144 Starting the Bacula File daemon
2145 quepasa login:
2146
2147 i quepasa.netfrag.org on 2003-03-23
2148 Mar 23 18:28:51 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS=0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=37568 WINDOW=0 RES=0x00 ACK RST URGP=0
2149 Mar 23 18:28:54 quepasa kernel: BLOCKED TCP PACKET: IN= OUT=eth0 SRC=213.133.118.36 DST=212.72.64.178 LEN=40 TOS=0x00 PREC=0x00 TTL=255 ID=0 DF PROTO=TCP SPT=113 DPT=37568 WINDOW=0 RES=0x00 ACK RST URGP=0
2150
2151 i quepasa: no space left on device!!!
2152 #> df
2153 Filesystem 1K-blocks Used Available Use% Mounted on
2154 /dev/ubd/0 1007896 854608 102088 90% /
2155 /dev/ubd/2 2015824 620952 1292472 100% /data
2156 #> rm -r /home/service/virtual/pdumpfs/var/data/2003/03
2157 #> df
2158 Filesystem 1K-blocks Used Available Use% Mounted on
2159 /dev/ubd/0 1007896 854608 102088 90% /
2160 /dev/ubd/2 2015824 620952 1292472 33% /data
2161 #> tail -f /var/log/news/news.err
2162 Mar 15 18:54:18 quepasa nnrpd[27242]: pd9e7778d.dip.t-dialin.net cant read Connection reset by peer
2163 Mar 17 03:17:00 quepasa innd: SERVER cant write nfo/support/93 No space left on device
2164 Mar 17 03:17:00 quepasa innd: SERVER throttle No space left on device writing article file -- throttling
2165 Mar 17 03:17:00 quepasa innd: SERVER cant write nfo/support/93 No space left on device
2166 Mar 17 03:17:00 quepasa innd: SERVER cant write nfo/support/93 No space left on device
2167 Mar 17 18:16:26 quepasa innd: SERVER shutdown system is going down
2168 Mar 23 18:18:46 quepasa innd: SERVER cant write nfo/support/99 No space left on device
2169 Mar 23 18:18:46 quepasa innd: SERVER throttle No space left on device writing article file -- throttling
2170 Mar 23 18:18:46 quepasa innd: SERVER cant write nfo/support/99 No space left on device
2171 Mar 23 18:18:46 quepasa innd: SERVER cant write nfo/support/99 No space left on device
2172 #> /etc/init.d/inn reload
2173 Reloading INN configuration files: Ok
2174 #> tail -f /var/log/news/news.err
2175 {no messages...}
2176 #> tail -f /var/log/news/news.notice
2177 Mar 23 18:51:57 quepasa nnrpd[4112]: quepasa.netfrag.org times user 0.000 system 0.000 elapsed 9.970
2178 Mar 23 18:54:42 quepasa innd: o::/etc/init.d/inn
2179 Mar 23 18:54:42 quepasa innd: overview closed
2180 Mar 23 18:54:42 quepasa innd: SERVER history cache final: 2 lookups, 1 hits
2181 Mar 23 18:55:07 quepasa innd: overview spawned overview:16:proc:4198
2182 Mar 23 18:55:22 quepasa innd: SERVER reload all /etc/init.d/inn
2183 Mar 23 18:55:23 quepasa innd: overview exit 0 elapsed 3461 pid 239
2184 Mar 23 19:02:34 quepasa innd: ME time 651588 idle 606301(3) artwrite 0(0) artlink 0(0) hiswrite 0(0) hissync 0(2) sitesend 0(0) artctrl 0(0) artcncl 0(0) hishave 0(0)
2185 Mar 23 19:02:35 quepasa nnrpd[4360]: quepasa.netfrag.org connect
2186 Mar 23 19:02:35 quepasa nnrpd[4360]: quepasa.netfrag.org perl filtering enabled
2187 Mar 23 19:02:35 quepasa nnrpd[4360]: quepasa.netfrag.org user webnews
2188 Mar 23 19:02:41 quepasa nnrpd[4360]: quepasa.netfrag.org group nfo.links.misc 1
2189 Mar 23 19:02:41 quepasa nnrpd[4360]: quepasa.netfrag.org exit articles 1 groups 1
2190 Mar 23 19:02:41 quepasa nnrpd[4360]: quepasa.netfrag.org times user 0.000 system 0.038 elapsed 6.087
2191 #> ps ax
2192 [...]
2193 2483 ? S 0:00 /usr/sbin/apache -DSSL
2194 4018 ? R 0:00 sendmail: MTA: accepting connections
2195 4020 ? S 0:01 sendmail: MTA: ./h2MNWs7u005266 from queue
2196 4198 ? S 0:00 /usr/lib/news/bin/overchan
2197 4380 ? R 0:01 /usr/bin/perl -T /usr/sbin/amavisd --pid_file=/var/run/amavisd.pid --user=
2198 4464 ? S 0:00 /usr/bin/perl -T /usr/sbin/amavisd --pid_file=/var/run/amavisd.pid --user=
2199 4475 ? S 0:00 /bin/login
2200 4525 ? S 0:00 sendmail: MTA: h2NI7smk004525 h1.service.netfrag.org [213.133.118.34]: DAT
2201 4526 ? S 0:00 /usr/sbin/amavis-milter -D -p /var/run/amavis/amavis-milter.sock
2202 4527 ? S 0:00 sendmail: MTA: startup with 213.133.118.34
2203 4531 ? R 0:00 /usr/local/f-prot/f-prot -DUMB -ARCHIVE /var/lib/amavis/amavis-milter-XXyw
2204 4532 pts/0 R 0:00 ps ax
2205 4533 ? R 0:00 /usr/bin/perl /etc/mail/smrsh/dispatchmail --base=/home/joko/virtual/joko_
2206 4534 ? S 0:00 /usr/sbin/amavis-milter -D -p /var/run/amavis/amavis-milter.sock
2207 4538 ? R 0:00 /usr/local/f-prot/f-prot -DUMB -ARCHIVE /var/lib/amavis/amavis-milter-XXtC
2208 #> mailq
2209 MSP Queue status...
2210 /var/spool/mqueue-client is empty
2211 Total requests: 0
2212 MTA Queue status...
2213 [...]
2214 h2MAnE7v002182 2140 Sat Mar 22 12:30 MAILER-DAEMON
2215 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2216 <root@h1.service.netfrag.org>
2217 h2MBCq7u002264 188 Sat Mar 22 12:18 <rfms@h1.service.netfrag.org>
2218 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2219 <joko@netfrag.org>
2220 h2MAck7v002146 2140 Sat Mar 22 12:19 MAILER-DAEMON
2221 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2222 <root@h1.service.netfrag.org>
2223 h2MB2v7u002217 188 Sat Mar 22 12:08 <root@h1.service.netfrag.org>
2224 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2225 <joko@netfrag.org>
2226 h2MASG7v002104 2140 Sat Mar 22 12:07 MAILER-DAEMON
2227 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2228 <root@h1.service.netfrag.org>
2229 [...]
2230 h2M4xl7u000571 156 Sat Mar 22 06:05 <monit@h1.service.netfrag.org>
2231 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2232 <alert@service.netfrag.org>
2233 h2M4kQ7u000517 188 Sat Mar 22 05:52 <root@h1.service.netfrag.org>
2234 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2235 <joko@netfrag.org>
2236 h2M4qq7u000534 188 Sat Mar 22 05:58 <root@h1.service.netfrag.org>
2237 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2238 <joko@netfrag.org>
2239 h2M4tV7u000563 188 Sat Mar 22 06:01 <root@h1.service.netfrag.org>
2240 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2241 <joko@netfrag.org>
2242 h2M4jg7w000515 169 Sat Mar 22 05:52 <monit@h1.service.netfrag.org>
2243 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2244 <alert@service.netfrag.org>
2245 h2M4jg7u000515 156 Sat Mar 22 05:51 <monit@h1.service.netfrag.org>
2246 (bestmx map: lookup (h1.service.netfrag.org.): deferred)
2247 <alert@service.netfrag.org>
2248 Total requests: 179
2249 [...]
2250 #> tail -f /var/log/syslog
2251 Mar 23 19:37:14 quepasa sm-mta[5174]: h2MBqP7v002446: to=<root@h1.service.netfrag.org>, delay=1+06:00:01, xdelay=00:00:17, mailer=esmtp, pri=12092012, relay=h1.service.netfrag.org. [213.133.118.34], dsn=2.0.0, stat=Sent (h2NIavM03315 Message accepted for delivery)
2252 Mar 23 19:37:16 quepasa sm-mta[4020]: h2MBfm7w002405: to=<root@h1.service.netfrag.org>, delay=1+06:09:51, xdelay=00:00:08, mailer=esmtp, pri=12182012, relay=h1.service.netfrag.org. [213.133.118.34], dsn=2.0.0, stat=Sent (h2NIb8i03354 Message accepted for delivery)
2253 Mar 23 19:37:17 quepasa sm-mta[5174]: h2MBfm7v002405: to=<monit@h1.service.netfrag.org>, delay=1+06:11:15, xdelay=00:00:00, mailer=esmtp, pri=12182016, relay=h1.service.netfrag.org. [213.133.118.34], dsn=5.1.1, stat=User unknown
2254 Mar 23 19:37:17 quepasa sm-mta[5174]: h2MBfm7v002405: h2NIVdml005174: return to sender: User unknown
2255 #> mailq
2256 [...]
2257 MTA Queue status...
2258 [...]
2259 Total requests: 83
2260 #> tail -f /var/log/syslog
2261
2262 o connections to the cvs-daemon seem not to be recorded in syslog!?
2263
2264 o write monitor for output of 'mailq'!!! (grep the numbers!)
2265
2266 i found while reviewing Mails returned from the 'Mail Delivery Subsystem':
2267 i example error-message response if (e.g.) 'recieveMail|dispatchmail' fails....
2268 The original message was received at Tue, 18 Mar 2003 20:45:04 +0100
2269 from [213.133.118.34]
2270
2271 ----- The following addresses had permanent fatal errors -----
2272 |~/bin/mail/recieveMail
2273 (reason: 255)
2274 (expanded from: jonen_mail)
2275
2276 ----- Transcript of session follows -----
2277 syntax error at /etc/mail/smrsh/recieveMail line 125, near ") {"
2278 Execution of /etc/mail/smrsh/recieveMail aborted due to compilation errors.
2279 554 5.3.0 unknown mailer error 255
2280 o scan for this! (global/default milter.filter? -> "syntax error in line xyz")
2281 i another one:
2282 The original message was received at Mon, 3 Mar 2003 16:51:28 +0100
2283 from [213.133.118.34]
2284
2285 ----- The following addresses had permanent fatal errors -----
2286 |~/bin/mail/recieveMail
2287 (reason: 2)
2288 (expanded from: jonen_mail)
2289
2290 ----- Transcript of session follows -----
2291 Can't locate Sys/Hostname.pm in @INC (@INC contains: /usr/local/lib/perl/5.6.1 /usr/local/share/perl/5.6.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.6.1 /usr/share/perl/5.6.1 /usr/local/lib/site_perl .) at /usr/share/perl5/Mail/Audit.pm line 6.
2292 BEGIN failed--compilation aborted at /usr/share/perl5/Mail/Audit.pm line 6.
2293 Compilation failed in require at /etc/mail/smrsh/recieveMail line 57.
2294 BEGIN failed--compilation aborted at /etc/mail/smrsh/recieveMail line 57.
2295 554 5.3.0 unknown mailer error 2
2296 o scan for this! (global/default milter.filter? -> "module not found: "{modulename}" - try to install it? [Y/n] ")
2297
2298 o dispatchmail-errors!!!
2299 #> su joko_mail
2300 #> cd ~
2301 #> perl .dispatchmailrc
2302 Scalar found where operator expected at .dispatchmailrc line 231, near "m/ilo\.de/i $self"
2303 syntax error at .dispatchmailrc line 231, near "if $to "
2304 Execution of .dispatchmailrc aborted due to compilation errors.
2305 #> perl .dispatchmailrc
2306 #>
2307 means: {ok}
2308
2309 o dispatchmail-errors!!!
2310 #> su {anybody}
2311 #> dispatchmail
2312 Global symbol "$self" requires explicit package name at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch.pm line 193.
2313 Global symbol "$self" requires explicit package name at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch.pm line 194.
2314 Compilation failed in require at /usr/local/bin/dispatchmail line 37.
2315 BEGIN failed--compilation aborted at /usr/local/bin/dispatchmail line 37.
2316
2317 x added more verboseness to dispatchmail if rules-file has syntax-errors (hard to debug - sorry...)
2318 #> su joko_mail
2319 #> cd ~
2320 #> echo test | mail -s test joko
2321 #> tail -f Mail/.dispatchmail.log
2322 ---------------------------------------- TRACE ----------
2323 From: Mail Delivery Subsystem <MAILER-DAEMON>
2324 To: postmaster
2325 Subject: Postmaster notify: see transcript for details
2326 ---------------------------------------- TRACE ----------
2327 RULES: Loading from "/home/joko/virtual/joko_mail/.dispatchmailrc".
2328 ERROR: ERROR: Delivery failed, '/home/joko/virtual/joko_mail/.dispatchmailrc' had syntax errors:
2329 syntax error at (eval 6) line 1, near "/home/joko"
2330
2331 Forwarding delivery to next handler in queue (probably /var/spool/mail).
2332 #> tail -f Mail/.dispatchmail.log
2333 ---------------------------------------- TRACE ----------
2334 From: joko_mail@netfrag.org
2335 To: joko@quepasa.netfrag.org
2336 Subject: test
2337 ---------------------------------------- TRACE ----------
2338 RULES: Loading from "/home/joko/virtual/joko_mail/.dispatchmailrc".
2339 RULES: Running Perl sub "rules::dispatch".
2340 ACCEPT: /home/joko/virtual/joko_mail/Mail/SORTED/me2myself
2341
2342 i old code from /home/service/virtual/gateway/.dispatchmailrc
2343 if ($to =~ /links-computing/) {
2344 print "COPY", "\n";
2345 #$self->copy('Newsgate', 'alt.test');
2346 $self->copy('Newsgate', 'nfo.links.computing');
2347 #my $prg = $0;
2348 #my $prg = '/data/opt/dispatchmail/bin/dispatchmail';
2349 #my $prg = '/etc/mail/smrsh/dispatchmail';
2350 #my $pipeTo = $prg . ' --mode=mail2news --thread=alt.test --base=/home/collector';
2351 #$self->report("PIPE: " . $pipeTo);
2352 #$incoming->pipe($pipeTo);
2353 }
2354
2355 o monitor:
2356 o /home/service/virtual/gateway/.mail-delivery_errors.log
2357 o /home/service/joko_mail/.mail-delivery_errors.log
2358 o /home/service/joko_mail/Mail/.mail-delivery.log
2359
2360 i quepasa.netfrag.org
2361 #> userdel newscollector
2362 #> echo test | mail -s test test@netfrag.org
2363 i further dispatchmail testing....
2364 #> cd /data/opt/tools/dispatchmail/bin-tests
2365 #> ./build_dispatch test
2366 Can't locate object method "id" via package "Mail::Audit" at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch.pm line 220, <STDIN> line 16.
2367 #> ./build_dispatch test
2368 Use of uninitialized value in scalar chomp at /data/libs/nfo/perl/libs/org/netfrag/shortcuts.pm line 73, <STDIN> line 16.
2369 #> ./build_dispatch test
2370 #>
2371 means: {ok}
2372
2373 i quepasa.netfrag.org - mail2news gateway test routine
2374 #> echo test | mail -s test test
2375 #> tail -f /var/log/syslog
2376 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org connect
2377 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org perl filtering enabled
2378 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org user collector
2379 Mar 23 23:02:18 quepasa innd: localhost connected 15
2380 Mar 23 23:02:18 quepasa innd: localhost:15 closed seconds 0 accepted 1 refused 0 rejected 0
2381 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org post ok <200303232202.h2NM2EZl007775@quepasa.netfrag.org>
2382 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org exit articles 0 groups 0
2383 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org posts received 1 rejected 0
2384 Mar 23 23:02:18 quepasa nnrpd[7784]: quepasa.netfrag.org times user 0.000 system 0.019 elapsed 0.182
2385 Mar 23 23:02:18 quepasa sm-mta[7780]: h2NM2EQZ007776: to=|/data/opt/dispatchmail/bin/dispatchmail, ctladdr=<test@quepasa.netfrag.org> (1014/1014), delay=00:00:04, xdelay=00:00:03, mailer=prog, pri=30682, dsn=2.0.0, stat=Sent
2386
2387 o metadata for "News-Portal"??? ->MetaBox!
2388
2389 i mail2news - without context
2390 #> tail -f /var/log/syslog
2391 Mar 23 23:07:40 quepasa nnrpd[7785]: pd9e77b87.dip.t-dialin.net group alt.test 4
2392 Mar 23 23:08:15 quepasa innd: ME time 402022 idle 401938(12) artwrite 1(1) artlink 0(0) hiswrite 2(1) hissync 0(2) sitesend 2(1) artctrl 0(0) artcncl 0(0) hishave 1(1)
2393
2394 x enhanced dispatchmail:
2395 - renamed log- and errorlog-files
2396 - header-field 'Message-ID' now included when tracing ( important, of course... ;-) )
2397 - example: (e.g. #> echo test | mail -s test test@netfrag.org )
2398 2003-03-23 23:11:22 - /etc/mail/smrsh/dispatchmail running for user ''.
2399 ---------------------------------------- TRACE ----------
2400 From: "Andreas Motl" <andreas.motl@ilo.de>
2401 To: <test@netfrag.org>
2402 Subject: test@netfrag.org
2403 Message-ID: <026701c2f189$6bf13a60$630aa8c0@grasshopper>
2404 ---------------------------------------- TRACE ----------
2405 RULES: Loading from "/data/home/service/virtual/gateway/.dispatchmailrc".
2406 RULES: Running Perl sub "rules::dispatch".
2407 IGNORE
2408
2409 o make this possible
2410 x not: RULES: Running Perl sub "rules::dispatch". .... [done]
2411 o but: RULES: Loading from LDAP(address|query)
2412 o but: RULES: Loading from XML|RDBMS(address|query)
2413
2414 i search::Abadan
2415
2416 i some html-meta-tags: (copied from http://www.fas.org/index.html)
2417 <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
2418 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
2419 <meta name="resource-type" content="document">
2420 <meta name="description" content="
2421 <meta name="keywords" content="
2422 <meta name="GENERATOR" content="Mozilla/4.73 [en] (WinNT; U) [Netscape]">
2423
2424 m http://www.un.org/Pubs/chronicle/2000/issue2/0200p29p.htm
2425 http://www.unites.org/
2426 http://www.un.org/esa/coordination/ecosoc/itforum/
2427 http://www.unv.org/
2428
2429 o search::Success Stories in the Developing World
2430
2431 m http://www.ibsys.com
2432 #> whois ibsys.com
2433 #> whois kfoxtv.com
2434 #> whois cox.com
2435
2436 m http://web.archive.org/web/20020213120001/http://www.fbi.gov/fbinbrief/hallhonor/foxhaber.htm
2437
2438 i search::Halliburton
2439
2440 i from: http://www.spaceimaging.com/newsroom/select_2002.htm
2441 [...]
2442 Dec. 15, 2002
2443 New York Times, Week in Review (Sunday), page 6, column 1C, “The World Three Targets; Three Strategies,”
2444 IKONOS image of Yongbyon, North Korea and Bushehr Reactor, Iran (photo/caption)
2445 [...]
2446
2447 i from: http://www.spaceimaging.com/newsroom/select_2001.htm
2448 [...]
2449 December 19, 2001
2450 Asia Africa Intelligence Wire (Turkish Daily News), “Press Scanner: We are Monitoring Iran from Where We Stand,”
2451 quote from Hurriyet regarding SI Eurasia’s grand opening ceremony (brief)
2452 [...]
2453
2454 l american military and associated/related links
2455 http://dodimagery.afis.osd.mil/
2456 http://afishp6.afis.osd.mil/dodimagery/davis/
2457 http://dodimagery.afis.osd.mil/dodimagery/davis/
2458 http://jccc.afis.osd.mil/images/images.pl
2459 http://jccc.afis.osd.mil/images/images.pl?Lbox=defenselink._Highlights_&cc=3&ban=2
2460 http://jccc.afis.osd.mil/images/images.pl?Lbox=defenselink._Highlights_&view_cap=1&ban=2&cc=3&lbc=3&tc=12&dir=&vn=&ref=http://dodimagery.afis.osd.mil/dodimagery/
2461 http://jccc.afis.osd.mil/images/sres.pl?Lbox_cap=761755&dir=Photo&vn=&ttl=030318-A-6132L-001&ref=http://dodimagery.afis.osd.mil/dodimagery/
2462 http://jccc.afis.osd.mil/
2463 http://jccc.afis.osd.mil/LBOX/micro/
2464 http://www.redstone.army.mil/
2465 https://ams9.redstone.army.mil:7443/pls/adpw/adpw_home
2466 https://ams9.redstone.army.mil:7443/pls/adpw/adpw_show_docs?p_cat_id=9
2467
2468 ? WebTWAIN? is there something like that???
2469
2470 o look (again) at mysqldiff.pl [C:\Programme\Perl\bin\mysqldiff.pl]
2471 are there updates (newer releases) available?
2472
2473 o look at nlcvt: [C:\Programme\Perl\bin\nlcvt.pl]
2474 #!/usr/bin/perl -w
2475 # nlcvt - convert newline notations
2476 # Tom Christiansen, 9 March 1999
2477
2478 o look at paste: [C:\Programme\Perl\bin\paste]
2479 =head1 NAME
2480
2481 paste - merge corresponding or subsequent lines of files
2482
2483 =head1 SYNOPSIS
2484
2485 paste [-s] [-d list] file...
2486
2487 =head1 DESCRIPTION
2488
2489 Paste combines the corresponding lines of multiple files. Each line of each
2490 file is printed seperated by tab (or by the characters listed in the -d
2491 option).
2492
2493 o look at morse: [C:\Programme\Perl\bin\morse]
2494
2495 i investigate: "why some articles don't get posted?"
2496 Subject: Returned mail: see transcript for details
2497 Attachments: ATT01025.dat, Parallel Atlas 38°N.url
2498 The original message was received at Tue, 25 Mar 2003 17:05:24 +0100
2499 from pD9E7799B.dip.t-dialin.net [217.231.121.155]
2500
2501 ----- The following addresses had permanent fatal errors -----
2502 |/data/opt/dispatchmail/bin/dispatchmail
2503 (reason: 255)
2504 (expanded from: <links-misc@netfrag.org>)
2505
2506 ----- Transcript of session follows -----
2507 could not build news-article! at /data/libs/nfo/perl/libs/Mail/Audit/Dispatch/Newsgate.pm line 62.
2508 to: "links-misc" <links-misc@netfrag.org>
2509 554 5.3.0 unknown mailer error 255
2510
2511 i h1.service.netfrag.org
2512 Mar 25 21:17:05 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.44 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=63455 DF PROTO=TCP SPT=4754 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2513 Mar 25 21:17:07 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.34 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=63601 DF PROTO=TCP SPT=4730 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2514 Mar 25 21:17:07 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.38 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=63615 DF PROTO=TCP SPT=4738 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2515 Mar 25 21:17:07 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.43 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=63639 DF PROTO=TCP SPT=4751 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2516 Mar 25 21:17:13 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.34 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=64072 DF PROTO=TCP SPT=4730 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2517 Mar 25 21:17:13 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.38 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=64089 DF PROTO=TCP SPT=4738 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2518 Mar 25 21:17:13 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.43 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=64127 DF PROTO=TCP SPT=4751 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2519 Mar 25 21:17:13 h1 kernel: BLOCKED TCP PACKET: IN=eth0 OUT= MAC=00:10:dc:14:7d:0a:00:02:85:04:e0:00:08:00 SRC=218.42.127.241 DST=213.133.118.44 LEN=48 TOS=0x00 PREC=0x00 TTL=109 ID=64132 DF PROTO=TCP SPT=4754 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0
2520
2521 i h1.service.netfrag.org
2522 netsaint not running!
2523 #> /etc/init.d/netsaintd start
2524 #> tail -f /var/log/messages
2525 Mar 25 21:26:58 h1 netsaint: NetSaint 0.0.6 starting... (PID=3814)
2526 Mar 25 21:26:58 h1 netsaint: Error: Contactgroup 'vortex' member list is NULL - Line 94
2527 Mar 25 21:26:58 h1 netsaint: Error in host configuration file '/usr/local/netsaint/etc/hosts.cfg' - Line 94 (Could not add contactgroup definition)
2528 Mar 25 21:26:58 h1 netsaint: Bailing out due to one or more errors encountered in the configuration files... (PID=3814)
2529 #> pico /usr/local/netsaint/etc/hosts.cfg
2530 #> CTRL + W [search] ->vortex
2531 --- snip ---
2532 contactgroup[vortex]=vortex;
2533 --- snip ---
2534 prepend line with '#'!
2535 #> /etc/init.d/netsaintd start
2536 #> tail -f /var/log/messages
2537 Mar 25 21:29:27 h1 netsaint: NetSaint 0.0.6 starting... (PID=3852)
2538 Mar 25 21:29:27 h1 netsaint: Warning: Host 'vortex' has no services associated with it!
2539 Mar 25 21:29:27 h1 netsaint: Finished daemonizing... (New PID=3853)
2540 Mar 25 21:29:27 h1 netsaint: Entering active mode...
2541 o let 'monit' monitor 'netsaintd'!!!
2542
2543 o replace mysql-max through normal mysql-daemon on h1! (hopefully does result in a smaller memory-footprint)
2544
2545 o migrate sorceress.deranger.org to one more uml-host? will it work....?
2546 o more processor power required!
2547
2548 o migrate domains from moon1-4 to elessar.f7x.net: ask n0ck, flo and jjj...
2549
2550 i grasshopper.netfrag.org: set PATH=c:\Programme\Perl\bin;%PATH%
2551
2552 i h1.service.netfrag.org
2553 #> rpm -i ftp://rpmfind.net/linux/contrib/libc6/i386/nano-1.2.0-1.i386.rpm
2554 #> mysql -p{protected}
2555 #> use netsaint;
2556 #> update service set notification_group='super_admins' where notification_group='linux-admins';
2557 #> update service set check_interval=15 where check_interval=5;
2558 #> update service set check_interval=5 where check_interval=3;
2559 #> update service set check_interval=3 where check_interval=2;
2560 #> update service set check_interval=2 where check_command='check_ping';
2561 #> update service set notification_interval=240 where notification_interval=120;
2562
2563 m some links...
2564 http://docs.indymedia.org/view/Main/WebHome
2565 http://lists.insecure.org/lists/politech/2002/Apr/0115.html
2566 http://lists.indymedia.org/mailman/public/confluence/2002-December.txt {???}
2567 http://www.getunderground.com/underground/links/index.cfm
2568 http://www.xs4all.nl/~wesphoto/
2569
2570 m search::[bermuda triangle|dreieck]
2571 neutral(german):
2572 http://home.t-online.de/home/hans-peter.olschewski/bermuda.htm
2573 neutral(american military):
2574 http://www.history.navy.mil/faqs/faq8-1.htm
2575 History of USS Cyclops:
2576 http://www.history.navy.mil/danfs/c/cyclops.htm
2577 http://www.history.navy.mil/danfs/c/cyclops-1.htm
2578 various myths, mysteries and theories:
2579 google::[The Spreading Mystery of the Bermuda Triangle]:
2580 http://scientium.com/diagon_alley/commentary/editorial_concourse/mcnamara/bermyth.htm
2581 http://web.archive.org/web/20020602081908/http://www.parascope.com/en/bermuda1.htm
2582 http://unmuseum.mus.pa.us/triangle.htm
2583 George X. Sands, in a report in Fate magazine
2584 http://www.ocean.fsu.edu/~www/Courses/sp00H1001/mdickler/crazypaper.html
2585 http://web.archive.org/web/20001005055051/http://www.fortunecity.com/roswell/warminster/167/theori.html
2586 Some more links....
2587 http://www.the-bermuda-triangle.com/
2588 http://www.bermuda-triangle.org/.
2589 http://www.bermuda-triangle.org/Theories/Electromagnetism/Those_Who_Lived_to_Tell/Rare_Form/rare_form.html
2590 conspiracy(paranormality):
2591 http://www.paranormality.com/bermuda_triangle.shtml
2592 conspiracy(Schwarze Sonne, Neuschwabenland, unterirdische und überirdische Basen):
2593 http://www.vho.org/D/Geheim2/26.html
2594 theory([time, gravity, magnetism]):
2595 http://www.bermuda-triangle.org/Theories/Time___Being/time___being.html
2596 conspiracy(time travel):
2597 mystery(time travel):
2598 http://www.bermuda-triangle.org/Theories/Electromagnetism/Those_Who_Lived_to_Tell/Bruce_Gernon/bruce_gernon.html
2599 physics(The Hutchison Effect - [tesla, electromagnetism, wavelengths, cold melting, Zero Point Energy]):
2600 http://www.bermuda-triangle.org/Theories/Hutchison_Effect/The__Triangle__Machine_/the__triangle__machine_.html
2601 http://hutchison.innoplaza.net/
2602 http://www.geocities.com/ResearchTriangle/Thinktank/8863/main.html
2603 http://homepages.kcbbs.gen.nz/af/scienceb.htm
2604 http://www.altenergy.org/index.html
2605 http://www.padrak.com/ine/CCIAWARD2.html
2606 http://www.padrak.com/ine/
2607 http://www.geocities.com/your_neighbor_2000/
2608 http://www.geocities.com/your_neighbor_2000/StarDrive.html
2609 http://www.geocities.com/your_neighbor_2000/RAMBOdrv.bmp
2610 Some more links... (some already missing)
2611 http://www.osti.gov/gl99paper.html
2612 http://www.doe.gov/bridge
2613 http://www.etde.org./
2614 http://bermuda-triangle.fateback.com/tri.html
2615 http://bermuda-triangle.fateback.com/recentevent.html
2616 http://www.bermuda-triangle.org/Theories/Electromagnetism/Worlds_Below__/Legend_of_the_Lost/Buache_Map/buache_map.html
2617 http://www.bermuda-triangle.org/Theories/Electromagnetism/Worlds_Below__/Legend_of_the_Lost/Piri_Reis_Map/piri_reis_map.html
2618 http://web.archive.org/web/19990427180527/icarus.cc.uic.edu/~jdrege1/toby/triangle/tri.html
2619 http://unmuseum.mus.pa.us/triangle.htm
2620 http://www.magna.com.au/~naghsh/bermuda.html
2621 http://web.archive.org/web/20000713052432/http://www.parascope.com/en/bermuda1.htm
2622 http://web.archive.org/web/19981202112339/www.parascope.com/matrix.htm
2623 http://web.archive.org/web/19981203041749/www.parascope.com/mx/matrix02.htm
2624 http://web.archive.org/web/19990424143642/parascope.com/mx/fedm.htm
2625 http://www.unusualresearch.com/
2626 Swindle(Erich von Däniken):
2627 - Chariots of the Gods
2628 - Gold of the Gods
2629 - Der Spiegel, November 1973, "The Däniken Swindle."
2630 Philadelphia Experiment and Roswell stuff:
2631 http://web.archive.org/web/20010827080339/http://www.bermuda-triangle.org/Theories/Electromagnetism/Interest_From_Other_Worlds_/The_Philadelphia_Experiment/the_philadelphia_experiment.html
2632 http://web.archive.org/web/20010625052238/www.bermuda-triangle.org/Theories/Electromagnetism/Interest_From_Other_Worlds_/The_Philadelphia_Experiment/The__Eye_Witness_/the__eye_witness_.html
2633 http://www.bielek.com/corum.htm
2634 http://www.unusualresearch.com/drreno/filadelf.htm
2635 http://www.csonline.net/bpaddock/philadelf/
2636 http://www.unusualresearch.com/read7times/read7times.htm
2637 http://web.archive.org/web/20010624000645/www.fortunecity.com/roswell/
2638 suddenly, the topic "Free Energy" reappears with "The Barkhausen Effect":
2639 http://www.csonline.net/bpaddock/scalar/bark.htm
2640 Heinrich Barkhausen, a German physicist, discovered in 1919 that a slow,
2641 smooth increase of a magnetic field applied to a piece of ferromagnetic material,
2642 such as iron, causes it to become magnetized, not continuously but in minute steps.
2643 The sudden, discontinuous jumps in magnetization may be detected by a coil of wire
2644 wound on the ferromagnetic material; the sudden transitions in the magnetic field of
2645 the material produce pulses of current in the coil that, when amplified, produce a
2646 series of clicks in a loudspeaker. These jumps are interpreted as discrete changes in
2647 the size or rotation of ferromagnetic domains. Some microscopic clusters of similarly
2648 oriented magnetic atoms aligned with the external magnetizing field increase in size
2649 by a sudden aggregation of neighboring atomic magnets; and, especially as the
2650 magnetizing field becomes relatively strong, other whole domains suddenly turn into
2651 the direction of the external field." - ENCYCLOPEDIA BRITANNICA
2652 Barkhausen Effect Battery:
2653
2654 Tesla Symposium at Colorado Springs:
2655
2656 i #> whois clearchannel.com
2657 Registrant:
2658 Clear Channel Communications (DOM-102362)
2659 <protect>
2660 20880 Stone Oak Parkway San Antonio TX 78258 US
2661 </protect>
2662
2663 Domain Name: clearchannel.com
2664
2665 Registrar Name: Alldomains.com
2666 Registrar Whois: whois.alldomains.com
2667 Registrar Homepage: http://www.alldomains.com
2668
2669 Administrative Contact:
2670 DNS Hostmaster (NIC-1359459) Clear Channel Communications
2671 <protect>
2672 20880 Stone Oak Parkway San Antonio TX 78258 US
2673 dns@clearchannel.com +1.2102535000 Fax- +1.2102535013
2674 </protect>
2675 Technical Contact, Zone Contact:
2676 DNS Administrative Role Account (NIC-1359460) Clear Channel Communications
2677 <protect>
2678 20880 Stone Oak Parkway San Antonio TX 78258 US
2679 dns@clearchannel.com +1.2102535000 Fax- +1.2102535013
2680 </protect>
2681
2682 m http://www.gnu.org/directory/network/misc/cish.html
2683 Cish - Configuration shell for Linux routers
2684
2685 m http://www.kr.org/nm/
2686 o search::Nonmonotonic Reasoning
2687
2688 o search::OilEd
2689
2690 m some links....
2691 http://www.isi.edu/geoworlds/
2692 http://www.isi.edu/ariadne/domain/edc/
2693 http://www.fetch.com/
2694
2695 mr http://www.isi.edu/geoworlds/geotopics/
2696 http://www.dfki.uni-sb.de/
2697
2698 m human rights watch
2699 http://www.hrw.org/press/2003/03/letter032003.htm
2700 http://www.hrw.org/campaigns/iraq/
2701
2702 m Web Watch and more....
2703 http://www.sfbg.com/37/26/war_watch.html
2704 http://electroniciraq.net/news/394.shtml
2705 http://iraqpeaceteam.org/
2706 http://electronicintifada.net/wire/
2707 http://iraqpeaceteam.org/pages/diaries_oct_nov02.html
2708 http://www.transnational.org/
2709 http://www.foxbghsuit.com/jasw081800.htm
2710 http://alberta.indymedia.org/features/media/
2711 http://www.projectcensored.org/frontpagenews/oldnews.html
2712 http://denver.craigslist.org/about/best/1742260.html
2713 http://www.jewishvoiceforpeace.org/
2714 http://oznik.com/web_masters.html
2715 http://www.idf.il/newsite/english/main.stm
2716 http://www.unitedforpeace.org
2717
2718 m lookup::doctrine:
2719 http://www.dict.org/bin/Dict?Form=Dict2&Database=*&Query=doctrine
2720 interesting that this also links to 'ism's in general ( a topic i though about yesterday ) and - philosophy....
2721 like otherwhere - everything is closer tied than assumed first....
2722
2723 o activate monitoring of pop3 on elessar and imap-ssl on all hosts (quepasa, helo and elessar)!!!
2724
2725 o twiki on elessar sits on default homepage and points to helonet.org stuff....
2726 use "nothing public yet" - page!
2727
2728 i new bombs of the u.s.:
2729 moab:
2730 http://www.opendemocracy.net/other_content/article-1075-worlddiary.jsp
2731 http://layline.blogspot.com/
2732 http://www.washtimes.com/upi-breaking/20030311-040832-2415r.htm
2733 http://nugod.net/main/modules.php?name=Top
2734 http://www.afsoc.af.mil/panews/conventional_bomb.htm
2735 http://www.usatoday.com/news/world/iraq/2003-03-11-us-bomb-test_x.htm
2736 jdam:
2737 http://www.fas.org/man/dod-101/sys/smart/jdam.htm
2738
2739 l http://www.afsoc.af.mil/nightflyer/
2740 http://www.internationalsocialist.org/
2741 http://www.apc.org/english/index.shtml
2742 http://layline.blogspot.com/
2743
2744 i http://www.levity.com/alchemy/latin/latintrans.html
2745
2746 x modified WCron-Job for joko@grasshopper.netfrag.org
2747 - was: joko/Scripts/shortcuts/cvs_commit_joko-doc.bat
2748 - now done via rap!
2749 #> c:\programme\perl\bin\perl C:\home\amo\develop\netfrag.org\nfo\perl\scripts\shortcuts\rap.pl cvs commit joko/doc
2750 (running each 3600...)
2751 - introduced 'nfo/hosts/grasshopper.netfrag.org/c/etc/rap.xml' at cvs.netfrag.org
2752 #> rap.pl
2753 info: Data::Rap: Using rapfile /etc/rap.xml.
2754 info: Data::Rap: starting
2755 info: Data::Rap: determining hostname: grasshopper
2756 notice: Data::Rap: Reading target database from XML.
2757 error: Data::Storage::Handler::XML: File not found: '/etc/rap.xml'.
2758 critical: Data::Rap: XML metadata was empty.
2759 #> c:
2760 #> cvs -d :ext:joko@cvs.netfrag.org:/var/lib/cvs checkout -d c:\ nfo/hosts/grasshopper.netfrag.org/c
2761 #> cvs -d :ext:joko@cvs.netfrag.org:/var/lib/cvs update -d c:\ nfo/hosts/grasshopper.netfrag.org/c
2762 #> rap.pl
2763 info: Data::Rap: Using rapfile C:\/etc/rap.xml.
2764 info: Data::Rap: starting
2765 info: Data::Rap: determining hostname: grasshopper
2766 notice: Data::Rap: Reading target database from XML.
2767 - rap.pl cvs commit joko/doc
2768 Commits joko/doc to cvs.netfrag.org. [each 30 minutes, (created at 24.01.2003, 06:26:53 by WCron - now wrapped via rap)]
2769
2770 o where is pcron???
2771
2772 o php:
2773 - use: $_REQUEST, $_SESSION
2774 - implement: $_APPLICATION
2775
2776 i Twingle: Wie janosch sagt: "Wieso ist denn da kein Link? Wir sind doch im Internet...!?"
2777 [als er beim browsen auf bacula.org über tomsrtbt stolperte - wer weiss denn schon was tomsrtbt is?]
2778 also:
2779 o http://netfrag.org/twingle/http://bacula.org
2780
2781 i wargames
2782 It really *is* absurd:
2783 The usa leads their tactical war against iraq and
2784 my friends down here are playing strategical war
2785 games on their computers.
2786 Let's gear towards planning a better future without the tactical root of evil.
2787 Let's try to apply the philosophy of the FSF to the Engineering- and Media- Industry.
2788 Is there already an Open Engineering License? Is it required in fact?
2789 The industry seems to be too slow to adapt new innovations....
2790 This depends on the definition of "industry",
2791 which i have to admit i'm not aware of - let's look it up:
2792
2793 m lookup::industry:
2794 http://www.dict.org/bin/Dict?Form=Dict2&Database=*&Query=industry
2795
2796 From Webster's Revised Unabridged Dictionary (1913) :
2797
2798 Industry \In"dus*try\, n.; pl. Industries. [L. industria, cf.
2799 industrius diligent; of uncertain origin: cf. F. industrie.]
2800 1. Habitual diligence in any employment or pursuit, either
2801 bodily or mental; steady attention to business; assiduity;
2802 -- opposed to sloth and idleness; as, industry pays
2803 debts, while idleness or despair will increase them.
2804
2805 We are more industrious than our forefathers,
2806 because in the present times the funds destined for
2807 the maintenance of industry are much greater in
2808 proportion to those which are likely to be employed
2809 in the maintenance of idleness, than they were two
2810 or three centuries ago. --A. Smith.
2811
2812 2. Any department or branch of art, occupation, or business;
2813 especially, one which employs much labor and capital and
2814 is a distinct branch of trade; as, the sugar industry; the
2815 iron industry; the cotton industry.
2816
2817 3. (Polit. Econ.) Human exertion of any kind employed for the
2818 creation of value, and regarded by some as a species of
2819 capital or wealth; labor.
2820
2821 Syn: Diligence; assiduity; perseverance; activity;
2822 laboriousness; attention. See Diligence.
2823
2824
2825 From WordNet (r) 1.7 :
2826
2827 industry
2828 n 1: the people engaged in a particular kind of commercial
2829 enterprise; "each industry has its own trade
2830 publications"
2831 2: the organized action of making of goods and services for
2832 sale; "American industry is making increased use of
2833 computers to control production" [syn: manufacture]
2834 3: persevering determination to perform a task; "his diligence
2835 won him quick promotions"; "frugality and industry are
2836 still regarded as virtues" [syn: diligence, industriousness]
2837
2838 m lookup::diligent
2839
2840 http://www.bartleby.com/61/roots/IE503.html
2841
2842 The American Heritage® Dictionary of the English Language: Fourth Edition. 2000.
2843
2844
2845 Appendix I
2846
2847 Indo-European Roots
2848
2849 ENTRY: ster-2
2850 DEFINITION: Also ster-. To spread.
2851 Derivatives include destroy, industry, straw, street, and stratagem.
2852 I. Extended form *streu-. 1. strain2, from Old English stron, something gained, offspring, from Germanic suffixed form *streu-nam. 2. structure; construct, destroy, instruct, instrument, obstruct, substruction, from Latin struere, to pile up, construct. 3. Zero-grade form *stru-. industry, from Latin industrius, diligent, from Archaic Latin indostruus (endo-, within; see en). 4. bremsstrahlung, from Old High German strla, arrow, lightning bolt, from Germanic *strl.
2853 II. O-grade extended form *strou-. 1. Suffixed form *strou-eyo-. a. strew, from Old English str(o)wian, to strew; b. streusel, from Old High German strouwen, strowwen, to sprinkle, strew. Both a and b from Germanic *strawjan. 2. Suffixed form *strow-o-. straw, from Old English straw, straw, from Germanic *strawam, “that which is scattered.”
2854 III. O-grade extended form *stroi-. perestroika, from Old Russian stroj, order.
2855 IV. Basic forms *ster-, *ster-. 1. Nasalized form *ster-n--. estray, stratus, stray, street; consternate, prostrate, substratum, from Latin sternere (past participle strtus from zero-grade *st-to-), to stretch, extend. 2. Suffixed form *ster-no-. sternum; sternocleidomastoid, from Greek sternon, breast, breastbone.
2856 V. Zero-grade form *st-, *st-. 1. Suffixed form *st-to-. stratagem; stratocracy, from Greek stratos, multitude, army, expedition. 2. Suffixed form *st-to-. strath, from Old Irish srath, a wide river valley, from Celtic *s(t)rato-. 3. Suffixed extended form *st-m. stroma; stromatolite, from Greek strma, mattress, bed. (Pokorny 5. ster- 1029.)
2857
2858
2859 http://www.bartleby.com/61/34/B0473400.html
2860
2861 The American Heritage® Dictionary of the English Language: Fourth Edition. 2000.
2862
2863 bremsstrahlung
2864
2865 SYLLABICATION: brems·strah·lung
2866 PRONUNCIATION: brmshträlng
2867 NOUN: The electromagnetic radiation produced by a change in the velocity of an electrically charged subatomic particle, such as an electron, as when it collides with another object.
2868 ETYMOLOGY: German : Bremse, brake (from Middle Low German premse, from pramen, to press) + Strahlung, radiation (from strahlen, to radiate, from Strahl, ray, from Middle High German strle, from Old High German strla, arrow, stripe; see ster-2 in Appendix I).
2869
2870 google::bremsstrahlung
2871 http://rd11.web.cern.ch/RD11/rkb/PH14pp/node16.html
2872 http://www.desy.de/pr-info/Roentgen-light/roentgenstrahlung/roentgenstrahlung8.html
2873
2874 Okay, this gave no further facts, but some nice history about word-stems...
2875 Also, alles klar: "Industrie" kommt von "Streu" - hamma ja scho immer geahnt.... ;-)
2876
2877 A quarter of an hour later, janosch talked about the same idea he had:
2878 To build a strategic game which includes the same fun-factor as (e.g.) starcraft or c&c
2879 but aims to address economic and ecologic problems we have *now*.
2880
2881 o look at FLTK, microwindows and nano-X!!!
2882 CPAN: Perl's FLTK-interface: http://search.cpan.org/author/MKENNEDY/FLTK-0.52/FLTK.pm
2883
2884 i h1.service.netfrag.org downed
2885 Apr 1 02:08:50 h1 netsaint: SERVICE ALERT: martha;PING;WARNING;HARD;3;PING WARNING - Packet loss = 0%, RTA = 263.85 ms
2886 Apr 1 02:09:28 h1 sshd[19153]: fatal: Read from socket failed: Connection reset by peer
2887 Apr 1 02:10:00 h1 /USR/SBIN/CRON[19338]: (root) CMD (/home/service/bin/bw_acct/iptables-stats.pl > /dev/null)
2888 Apr 1 02:12:28 h1 sshd[19789]: Connection closed by 213.133.118.34
2889 Apr 1 02:12:37 h1 proftpd[19828]: h1.service.netfrag.org (h1.service.netfrag.org[213.133.118.34]) - FTP session opened.
2890 Apr 1 02:12:37 h1 proftpd[19828]: h1.service.netfrag.org (h1.service.netfrag.org[213.133.118.34]) - FTP session closed.
2891 Apr 1 02:15:00 h1 /USR/SBIN/CRON[20246]: (root) CMD (/home/service/bin/logcheck/logcheck.sh)
2892 Apr 1 02:15:28 h1 sshd[20503]: Connection closed by 213.133.118.34
2893 Apr 1 02:18:28 h1 sshd[20693]: Connection closed by 213.133.118.34
2894 Apr 1 02:19:00 h1 /USR/SBIN/CRON[20732]: (root) CMD (/usr/sbin/sendmail -q)
2895 Apr 1 02:20:00 h1 /USR/SBIN/CRON[20930]: (root) CMD (/home/service/bin/bw_acct/iptables-stats.pl > /dev/null)
2896 Apr 1 02:21:28 h1 sshd[21336]: Connection closed by 213.133.118.34
2897 Apr 1 02:24:28 h1 sshd[21514]: Connection closed by 213.133.118.34
2898 Apr 1 02:27:28 h1 sshd[22087]: Connection closed by 213.133.118.34
2899 Apr 1 02:27:37 h1 proftpd[22117]: h1.service.netfrag.org (h1.service.netfrag.org[213.133.118.34]) - FTP session opened.
2900 Apr 1 02:27:37 h1 proftpd[22117]: h1.service.netfrag.org (h1.service.netfrag.org[213.133.118.34]) - FTP session closed.
2901 Apr 1 09:37:15 h1 syslogd 1.4.1: restart.
2902 Apr 1 09:37:20 h1 kernel: klogd 1.4.1, log source = /proc/kmsg started.
2903 Apr 1 09:37:20 h1 kernel: Inspecting /boot/System.map-2.4.10-4GB
2904 Apr 1 09:37:21 h1 kernel: Loaded 11713 symbols from /boot/System.map-2.4.10-4GB.
2905 Apr 1 09:37:21 h1 kernel: Symbols match kernel version 2.4.10.
2906 Apr 1 09:37:21 h1 kernel: Loaded 164 symbols from 15 modules.
2907 Apr 1 09:37:21 h1 kernel: ip_tables: (c)2000 Netfilter core team
2908 Apr 1 09:37:21 h1 kernel: ip_conntrack (4031 buckets, 32248 max)
2909 Apr 1 09:37:21 h1 kernel: Universal TUN/TAP device driver 1.4 (C)1999-2001 Maxim Krasnyansky
2910 Apr 1 09:37:21 h1 kernel: 8139too Fast Ethernet driver 0.9.18a
2911 Apr 1 09:37:21 h1 kernel: PCI: Found IRQ 11 for device 00:0f.0
2912
2913 i send-mail -i webmaster@3js.de
2914
2915 j joko_2003-04.twingle

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed