Ma rotfl [ May 16th, 2008 ] Posted in » News, Tech stuff

Par condicio informatica sulla televisione pubblica italiana

Parte su iniziativa della ml ubuntu-it una petizione per avere in tv, nella trasmissione “Che tempo che fa“, dopo l’intevista Bill Gates, un rappresentante del Software Libero.

To: Il conduttore Fabio Fazio e altri responsabili della trasmissione televisiva “Che tempo che fa”

PAR CONDICIO INFORMATICA IN TV, TRA SOFTWARE LIBERO E SOFTWARE PROPRIETARIO.

Da molti anni esiste il software libero, come d’altra parte, esiste il software proprietario.

Bill Gates, creatore di Microsoft, e’ il rappresentante del software proprietario.

Richard Stallman, il creatore del software libero, ne e’ il suo legittimo rappresentante.

Milioni di persone utilizzano software libero nel mondo, come pure ormai molte strutture pubbliche (esempi: i comuni di Berlino e di Vienna, il parlamento francese, e tante altre realta’ qui non citate ma reperibili in Internet), ormai hanno fatto la scelta di utilizzare software libero e di recedere dall’uso di software proprietario.

Per capire facilmente, in tutte le lingue, quali sono le differenze tra i due software, il libero e i proprietario, e’ possibile consultare il seguente sito: http://www.whylinuxisbetter.net/index_it.php

Il 20 novembre 2004 la trasmissione Rai “Che tempo che fa”, condotta da Fabio Fazio, ha invitato e intervistato Bill Gates, il rappresentante della Microsoft.

GLI UTENTI ITALIANI DI SOFTWARE LIBERO CHIEDONO A FABIO FAZIO DI OSPITARE IN UNA DELLE SUE PROSSIME TRASMISSIONI DI “CHE TEMPO CHE FA” UN RAPPRESENTANTE DEL SOFTWARE LIBERO.

Al momento sono eleggibili tre personaggi allo scopo:

RICHARD STALLMAN, fondatore del software libero:

http://it.wikipedia.org/wiki/Richard_Stallman
http://www.stallman.org/
http://www.masternewmedia.org/it/2007/01/09/che_cose_il_software_libero.htm

LINUS TORVALD, creatore del kernel Linux

http://it.wikipedia.org/wiki/Linus_Torvalds

MARK SHUTTLEWORTH, il creatore di Ubuntu, una distribuzione GNU/Linux che sta raccogliendo l’apprezzamento crescente del pubblico di utenti di software libero:

http://it.wikipedia.org/wiki/Mark_Shuttleworth
http://www.markshuttleworth.com/

Sincerely,

Potete sottoscriverla qui

March 13th, 2007 | Leave a Comment

Munin 1.2.5-1 for Debian Sarge

Munin the monitoring tool surveys all your computers and remembers what it saw. It presents all the information in graphs through a web interface. Its emphasis is on plug and play capabilities. After completing a installation a high number of monitoring plugins will be playing with no more effort.

Using Munin you can easily monitor the performance of your computers, networks, SANs, applications, weather measurements and whatever comes to mind. It makes it easy to determine “what’s different today” when a performance problem crops up. It makes it easy to see how you’re doing capacity-wise on any resources.

Backport from SID here

March 9th, 2007 | 1 Comment

Honeyd 1.5b for Debian Sarge

Honeyd is a small daemon that creates virtual hosts on a network. The hosts can be configured to run arbitrary services, and their personality can be adapted so that they appear to be running certain operating systems. Honeyd enables a single host to claim multiple addresses - I have tested up to 65536 - on a LAN for network simulation. Honeyd improves cyber security by providing mechanisms for threat detection and assessment. It also deters adversaries by hiding real systems in the middle of virtual systems.

backport from SID here

March 9th, 2007 | Leave a Comment

Monitoring Apache’s VirtualHost with Munin

Munin is a monitoring tool that “surveys all your computers and remembers what it saw. It presents all the information in graphs through a web interface” using the excellent RDDTool
Munin configuration is beyond the scope of this paper, please refer to documentation on Munin site.
The default munin plugins use the apache mod_status module, that stores data from all the virtual hosts, like in picture below

Obviously it can be more interesting to have separate data for each virtual host.
Bjørn Ruberg wrote a munin plugin for this, using a quite old apache module, mod_watch.

There is no debian package for this module.
Lurking around I have found the source and it’s easy to install on Debian

apt-get install apache-dev
tar -zxvf mod_watch318.tgz
cd mod_watch-3.18
make install-dynamic

NB With apache2 you need mod_watch4

***************************************************************
How to build mod_watch for Apache 2.0

To build a DSO version of mod_watch for Apache 2.0, first
verify the configuration at the top of the Makefile.dso then
type:

make -f Makefile.dso build
make -f Makefile.dso install

To build a static version of mod_watch for Apache 2.0:

cd (path to)/apache_2.0.44
mkdir -p modules/com/snert
mv (path to)/mod_watch-4.2 modules/com/snert/watch
./buildconf
./configure \
–enable-watch \
… (your other configuration options) …
make install

***************************************************************

Edit /etc/apache/modules.conf
and add the line in it:

LoadModule watch_module /usr/lib/apache/1.3/mod_watch.so

Now edit /etc/apache/httpd.conf
Add:

<IfModule mod_watch.c>
# Allows the URL used to query virtual host data:
#
# http://www.snert.com/watch-info
#
<Location /watch-info>
SetHandler watch-info
Order allow,deny
Allow from hostname
</Location>


# Intended for debugging and analysis of shared memory
# hash table and weenie files:
#
# http://www.snert.com/watch-table
#

<Location /watch-table>
SetHandler watch-table
Order allow,deny
Allow from hostname
</Location>

<Location /watch-list>
SetHandler watch-list
Order allow,deny
Allow from hostname
</Location>


</IfModule>

Change hostname with the munin-node host ip (tipical localhost)

Stop & start apache

/etc/init.d/apache stop && /etc/init.d/apache start

Test from command line that all works correctly

./mod_watch.pl -f ifRequests,ifDocuments http://www.freshnet.org/watch-list/
65236
11851
14:59.59
SERVER

And now install the plugin

cp mod_watch /usr/share/munin/plugins/
cd /etc/munin/plugins
ln -sf /usr/share/munin/plugins/apache_watch apache_watch_bytes
ln -sf /usr/share/munin/plugins/apache_watch apache_watch_documents
ln -sf /usr/share/munin/plugins/apache_watch apache_watch_requestes

Finally restart munin-node

/etc/init.d/munin-node restart

Et voilà the result :) A graph for each virtual host

March 8th, 2007 | 5 Comments

Monitorare Virtual Host di Apache con Munin

Munin è uno splendido framework che permette di monitorare le prestazione dei vostri server e metterle in forma grafica tramite l’ottimo RDDTool
Per la configurazione di Munin vi rimando al sito o a questo tutorial in italiano
Nel particolare, apache viene monitorato tramite il modulo mod_status, che però restituisce i risultato per l’intero Apache
come nell’immagine seguente

Può essere più utile invece avere i dati divisi per ogni singolo Virtual Host

Bjørn Ruberg ha scritto un plugin per munin che fa questo, sfruttando un modulo di apache un po vecchiotto, mod_watch, che purtroppo non viene più distribuito.

Cercando un po’ in giro si trova però il sorgente ed è abbastanza semplice installarlo in debian

apt-get install apache-dev
tar -zxvf mod_watch318.tgz
cd mod_watch-3.18
make install-dynamic

NB Se usate apache due allora dovete usare mod_watch4

***************************************************************
How to build mod_watch for Apache 2.0

To build a DSO version of mod_watch for Apache 2.0, first
verify the configuration at the top of the Makefile.dso then
type:

make -f Makefile.dso build
make -f Makefile.dso install

To build a static version of mod_watch for Apache 2.0:

cd (path to)/apache_2.0.44
mkdir -p modules/com/snert
mv (path to)/mod_watch-4.2 modules/com/snert/watch
./buildconf
./configure \
–enable-watch \
… (your other configuration options) …
make install

***************************************************************

Modifichiamo /etc/apache/modules.conf
e aggiungiamo la riga:

LoadModule watch_module /usr/lib/apache/1.3/mod_watch.so

Poi editiamo /etc/apache/httpd.conf

<IfModule mod_watch.c>
# Allows the URL used to query virtual host data:
#
# http://www.snert.com/watch-info
#
<Location /watch-info>
SetHandler watch-info
Order allow,deny
Allow from hostname
</Location>


# Intended for debugging and analysis of shared memory
# hash table and weenie files:
#
# http://www.snert.com/watch-table
#

<Location /watch-table>
SetHandler watch-table
Order allow,deny
Allow from hostname
</Location>

<Location /watch-list>
SetHandler watch-list
Order allow,deny
Allow from hostname
</Location>


</IfModule>

Dove chiaramente hostname va sostituito con un host a vostra scelta (tipicamente localhost)

Stop & start apache (restart a volte non basta :o )

/etc/init.d/apache stop && /etc/init.d/apache start

Possiamo verificare da riga di comando che tutto funzioni

./mod_watch.pl -f ifRequests,ifDocuments http://www.freshnet.org/watch-list/
65236
11851
14:59.59
SERVER

Ora installiamo il plugin

cp mod_watch /usr/share/munin/plugins/
cd /etc/munin/plugins
ln -sf /usr/share/munin/plugins/apache_watch apache_watch_bytes
ln -sf /usr/share/munin/plugins/apache_watch apache_watch_documents
ln -sf /usr/share/munin/plugins/apache_watch apache_watch_requestes

Come ultima cosa riavviamo munin-node

/etc/init.d/munin-node restart

Il risultato finale ci mostrerà, ad esempio, le richieste divise per singolo virtualhost

March 8th, 2007 | 1 Comment

La strategia dell’ariete - Kai Zen

E’ uscito ieri La strategia dell’ariete dell’ ensamble narrativo Kei Zen, loro romanzo d’esordio.

Perché uno dei migliori sicari della società segreta della Triade, che controlla gli affari sporchi di una città sporca come Shanghai negli anni ’20, partecipa al primo congresso del partito comunista cinese?
C’entra forse il recupero effettuato nel mar della Cina di due antichissimi vasi su incarico del tormentato ed enigmatico prof. Einrich Hofstadter?
E quale ossessione, più di vent’anni dopo, attira nella foresta del Mato Grosso il figlio di Hofstadter, che ha scalato le gerarchie militari naziste con l’appoggio di alcune logge massoniche?
Si tratta dello stesso segreto che sconvolge la vita di Shelley Copeland, l’affascinante agente CIA che, durante una notte del 1957, viaggia attraverso il deserto texano, con un misterioso contenitore refrigerante nel bagagliaio, un milione di dollari ad attenderla in una cassetta di sicurezza e un morto sulla coscienza. Un segreto chiamato Al-Hàrith e custodito attraverso i secoli da una moltitudine silenziosa.
Mille volti, un’unica strategia: la strategia dell’Ariete.

Disponibile sia il libreria, edito da Mondadori,  sia liberamente scaricabile dal sito del romanzo sotto licenza Creative Commons
Vi ricordo anche l’appuntamento del 20 marzo a Bologna:

ore 21:00 Iniziazione ai riti dell’Antica Società Segreta dell’Ariete @ Modo Infoshop - via Mascarella 24/b - tel. 051.5871012

March 7th, 2007 | Leave a Comment

Powered by WordPress | Blue Weed by Blog Oh! Blog | Entries (RSS) and Comments (RSS).