Os reenvío esta reflexión.
Lamento estar completamente de acuerdo.
La solución que he encontrado para mí ha sido instalar siempre desde las
fuentes, u séase, Gentoo ;-), aunque seguramente Arch Linux y Crux también
me gustarían. No hay color.
---------- Forwarded message ----------
From: <chief(a)freesoftwaremagazine.com>
Date: 2009/6/23
Subject: FSM newsletter - 2009: software installation in GNU/Linux is still
broken
To: fsm_com_nl(a)freesoftwaremagazine.com
2009: software installation in GNU/Linux is still broken -- and a path to
fixing it
GNU/Linux is slowly invading everybody's everyday life. I won't say "The
year of the GNU/Linux desktop is here". Been there, done that. But,
GNU/Linux is definitely imposing its presence -- think about Android, or the
number of people who are currently using GNU/Linux as their main desktop.
And yet, software installation in GNU/Linux is broken. No, not broken...
it's _terribly_ broken. Why is that, and what can be done to fix it?
<!--break-->
=TEXTBOX_START=Free Software Magazine is now on Twitter!=
Free Software Magazine has joined the Twitter crowd! You can see [Free
Software Magazine's twitter posts](http://twitter.com/fsmag). You can also
see our [Twitter RSS feed](
http://twitter.com/statuses/user_timeline/48408821.rss).
So, once again:
http://twitter.com/fsmag -- FSM's twitter account
http://twitter.com/statuses/user_timeline/48408821.rss -- FSM's twitter RSS
feed
=TEXTBOX_END=
# The current story
Most distributions today (including the great Ubuntu) are based on _package
managers_. If you want to install a piece of software, you grab it from one
of the official repositories, and your package manager will "explode it"
onto your computer's file system. A program will place bits and pieces in
`/usr/bin`, `/usr/lib`, `/etc`, and so on. This is normally done through a
package manager. In Ubuntu, for example, you would probably use Synaptic. A
package manager will normally solve all the "dependency problems" for you.
Ah, dependencies... basically, an image viewing program might need, for
example, `libjpeg` to function (`libjpeg` being a library of functions to
open, save, and generally deal with JPEG files).
This is a very Unix-ish approach. It works perfectly well for servers, but
fails on several levels for clients. Why?
=TEXTBOX_START=Advertisement: ZenOSS Enterprise Monitoring=
ZenOSS is a powerful, enterprise level monitoring system -- and yes, it is
fully free software. Sounds convincing? [Download Zen OSS now](
http://www.zenoss.com/in/mi/fsm)!
http://www.zenoss.com/in/mi/fsm
=TEXTBOX_END= <http://www.zenoss.com/in/mi/fsm%0A=TEXTBOX_END=>
There are several _drastic_ problems with this approach. Here is a
comprehensive but by no means exhaustive list (which will probably grow as
pepople e-mail me):
* Users need to have root access in order to install a piece of software; no
per-user installation is allowed
* It's very tricky to install several versions of the same piece of
software. Just think of the poor graphic designer who needs to install
several versions of Opera and Firefox;
* Users are stuck with the piece of software installed system-wide;
* The software needs to be downloaded from the official repositories. Well,
it doesn't _need_ to, but an average user wants to stay well away from
unofficial repositories for technical reasons;
* In some cases (especially when the user adds repositories or installs
packages directly), the dependency-checking mechanism often _fails_ and
users end up with _circular dependencies_. They are nasty;
* A piece of software is bound to a specific distribution, and -- what's
worse -- to a specific version of that distribution too. It's not trivial to
install Openoffice 3.1 on Ubuntu 8.10. You can argue that you can install
the bunch of .deb packages from OpenOffice's web site. Tell that to your
grandmother or your average inexperienced computer user.
* It's not trivial to "give" a program to a friend. To the end user, giving
a program to a friend should be as simple as dragging an icon onto a memory
stick; instead, files are scattered all over the system.
It's 2009, and GNU/Linux is still plagued by all of these problems. Even
Ubuntu, a distribution I love, is plagued by all of these issues -- and we
are talking about a distribution aimed at end users!
# What the story should be
The story should be very simple:
* Users should be able to install software even without being root
* Users should be able to install different versions of the same software
immensely easily
* Users should be able to run either their own version of the software, or
the one installed on the system (if any)
* It should be possible to download and install software even though it
doesn't come from an official repository
* Software just needs to work -- unchanged -- even if it's a bit old and
it's run on a newer distribution
* It should be possible to "give" a piece of software to a friend by simply
dragging an icon onto a memory stick
All this is true with Apple's OS X. They got software installation just
right -- although a few programs, lately, seem to come with an ugly
installation process.
# Where does the problem come from?
Don't get me wrong: I think Ubuntu is a fantastic system, and gets a lot of
things right. It think the problem stems from an issue that is more
philosophical than anything else.
The issue is at the heart of this article, and deserves to be put in bold.
> **Every GNU/Linux distribution at the moment (including Ubuntu) confuses
system software with end user software, whereas they are two very different
beasts which should be treated very, very differently.**
I think using dpkg/apt-get or rpm/yum for system-wide software, libraries
and so on is _the_ way to go. GNU/Linux's success in the server arena is not
a coincidence: a distribution is made up of several independent "bricks"
which create a majestic building.
However, using the same philosophy -- and therefore architecture -- for
end-user software is just too limiting. My point list above is not "a list
of unfortunate drawbacks". It's one of the major reasons why GNU/Linux
hasn't achieved mass penetration in the desktop arena.
What bothers me is that while all of the other problems are being solved
(vendor support amongst the others), this one is a persistent thorn in every
GNU/Linux user's side. A painful one.
# Existing material about this problem
A lot of debate-- as well as software -- exist about this issue. In terms of
software, you can get a whole distribution -- GoboLinux -- which follows
exactly this priority: one directory per program. There is a problem with
GoboLinux's approach: it applies the "one directory per thing" approach to
_everything_ -- including system libraries and server-side programs.
GoboLinux also goes one step further by changing completely the file system
-- an idea I am strongly against.
In terms of what's been said, there are several discussions about this in
Ubuntu and Debian. A good start is the [Rename Top Directory Names][
http://brainstorm.ubuntu.com/idea/6243/) in Ubuntu. This link has a _long_
list of duplicates.
There are also many, many "blueprint" drafts in Ubuntu's launchpad. There
are so many in fact that you will get lost reading them. A lot of them talk
about a simplified directory structure for the system, which as a
_consequence_ would imply simplified software installation.
=TEXTBOX_START=What's wrong with GoboLinux?=
I don't think GoboLinux's approach is a winner for two reasons:
* The Unix file system has been around for a long time -- for good reason.
It does work _extremely_ well to keep a system sane and working.
* It would meet too much resistance in the GNU/Linux community -- for good
reason.
However, GoboLinux gave us a practical example that this change _can_ be
made. It's actually _possible_.
=TEXTBOX_END=
# Four steps to fix the problem
I can't really fix this problem. It will take a lot of effort, and a lot of
courage from major players to even start heading in the right direction.
The first step, is to face the truth and admit that there is a problem. This
is the aim of this article, which -- I hope -- will resonate within the
GNU/Linux community.
The second step is to set out a path which might eventually lead to a
solution. This is what I will attempt to do in this article. The solution
will be generic and I will try to borrow from as much existing software as
possible.
The third step is to improve on the proposed solution; this is tricky,
because there needs to be the right balance between too little and too much
planning. It also requires somebody to coordinate the discussion, able to
lead everybody towards a _full_ solution. My secret dream is that somebody
from Canonical, or from Red Hat, would do this.
The fourth step is implementation. This is the hard part. I am sure that
implementing it will reveal problems, limitations --and more.
# My own semi-technical take
Here is my idea. I haven't programmed in C in _years_; this means that I
might make some silly mistakes. However, I am confident I can provide a good
starting point.
Here we go.
* There should be a comprehensive list of libraries, and versions, expected
to be available with the operating system. Today, GNU/Linux has quite a
number of desktop installations and we have a pretty strong idea of what a
desktop system seems to expect. This list should include both Gnome and KDE.
This should be a cross-distribution list. To do this, maybe a distribution
(Ubuntu?) might write a list, and then others might follow. Every two years
or so a new "version" of the super-system might come out with an updated
list of libraries and versions. Note that applications should do their best
to work on current systems, _and_ on the previous one. This would mean that
newer applications would have the potential to work on four year-old
systems.
* There should be a well defined directory tree that contains a whole
application. It should include 1) the executable 2) the icon 3) the "lib"
directory with extra libraries not listed in the point above and 4) anything
else. This directory should be expected to be read-only. The directory could
have the extension `.apx` and have a file called `application.xml` in it.
* In case libraries are provided, the system should add them to the library
path _before_ the system ones. So, if a program needs a specific library
that is not listed in the first point, or if for some reason needs a
different version of the "stock" libraries then:
* GNU/Linux file managers should show those directories and their icons
* You should have different directories for the different versions of
executables and libraries according to the processor.
* The operating system should keep track of the applications available (each
folder with extension `.apx` and with a `application.xml` file in it could
be expected to be an application) and their locations. This can be done
*easily* with triggers in the kernel when a file is moved or copied etc. The
system should allow two different copies of the same application in two
different directories.
* The operating system should offer a way to upgrade all the existing
applications (since it knows what's on the disk and what version it is).
* There should be a security system where whoever distributes the
application is able to "sign it" -- users should be able to view the
signature before running it. This can be extended as far as we want to take
it.
* The distribution should have the option to hide completely, in its package
manager, any end user applications. Yum/apt-get/synaptic and such like
should still be used to keep the system up to date -- and not just for
end-user programs.
* There should be a "recipe system" like the one available in GoboLinux,
where a piece of software is compiled making sure that it works in its own
directory. Here, looking at GoboLinux did would be immensely beneficial.
Note that providing a working recipe for each piece of software would be a
big task, but it would be limited to end-user software.
Whoever manages this system should look closely at what OS X does, because
OS X's engineers had the exact same problems to solve -- and solved them
successfully.
# Conclusions
This article might start a revolution -- or it might just be yet another
article complaining about installing software in GNU/Linux.
I have a dream. A dream of a world where people distribute applications as
bundled directories, and these bundles work in Ubuntu, Fedora, etc -- and
they _keep on working_ when a new version of the operating system is
installed. A world where software installation in GNU/Linux is _easy_ and
applications can be swapped by simply copying them onto a memory stick.
I wonder if I will ever see this in GNU/Linux?.
_P.S._
_Some will say, "if you like the way OS X does things, use OS X". My answer
to that is, "I like the way OS X does things, it works, it solves problems,
but let's rather be inspired by it and improve it"_
---------------------------------------------------------
You received this email because you subscribed to the newsletter run by Free
Software Magazime (http://www.freesoftwaremagazine.com). If you don't want
to receive these emails anymore, please login by
clicking here:
http://www.freesoftwaremagazine.com/user
Then, click Click on "My Account" (on the left hand side), "Edit" (a tab at
the top") and "Opt in/out" (a sub-tab). Finally, Tick "Do not receive the
newsletter (fortnightly)"
If you don't remember your login/password, please click here:
http://www.freesoftwaremagazine.com/user/password
If everything fails, please contact our support line:
helpdesk(a)freesoftwaremagazine.com
_______________________________________________
Fsm_com_nl mailing list
Fsm_com_nl(a)freesoftwaremagazine.com
http://centos555208.aspadmin.net/mailman/listinfo/fsm_com_nl
O próximo sabado toca!
Na cafetería da rúa Lopez de Neira as horas de sempre (xunta e multitude,
cada quen a súa) :-)
--
Por favor, non me envíe documentos con extensións .doc, .docx, .xls, .xlsx,
.ppt, .pptx
Calquera documento que non sexa conforme ós estándares internacionais ISO
(ODF -odt, odp, ods etc.-, PDF, ...) hanse enviar directamente ó lixo :/
Podes atoparme en GTalk e máis en jabberes.org e na sala
galpon_minino(a)conf.jabberes.org
A Asociación Galega de Empresas de Software Libre reuniráse coa Consellería de
Educación para estudar a implantación de Software Libre nos centros de
ensinanza de Galicia. Este xoves, o xerente de AGASOL contará co apoio das
empresas galegas, grupos de usuarios a prol do Software Libre ademáis de
profesorado que empregan xa esta tecnoloxía con éxito nos seus centros a
pesares do nulo apoio por parte da Consellería no uso de Software Libre nos
centros.
No 2007 as asociacións galegas e profesorado procuramos unha vía para achegar
a responsables da Consellería de Educación as inquedanzas que a sociedade en
xeral e estes colectivos en particular temos respecto ao Sw Libre no ensino.
Daquela demoramos máis dun ano desde o primeiro contacto interno, logo
mantivemos diversas entrevistas ao longo de 2007, tanto internas como co
SIEGA, ata a definitiva reunión coa conselleria, Laura Piñón, en febreiro de
2008 (1).
Daquela considerouse conveniente dar continuidade a esa iniciativa dado que a
composición da Xunta foi anovada tralas eleccións. Para completar a
representatividade (2) se decidíu incorporar a empresas de AGASOL e ao
primeiro coordinador de Mancomun.org toda vez que agora, xa fóra da órbita do
centro de referencia, tamén é profesor de ensino secundario (dobre motivación
daquela).
Máis información:
(1) http://brenlla.blogaliza.org/2008/02/22/resultados-da-reunion-coa-
consel...
(2) O grupo que defenderá os intereses do Sw Libre neste caso serán:
-Carlos Carrión, profesor IES San Clemente (Santiago)
-Manuel Morán, profesor IES Chan dos Montes (Marín)
-Jesús Arribi, ex-coordinador de Mancomun.org e profesor do IES San Clemente
(Santiago)
-Luis Alberto Fdez Marqués, xerente de AGASOL
-Roberto Brenlla (CKO de TEGNIX)
(3) http://www.agasol.org
Publicado en GALPon.org
--
-----------------------------------------
Carlos Rodriguez <capri99(a)gmail.com>
GALPon.org - "Abrindo as portas do Sofware Libre"
VoIP SIP <capri99(a)ekiga.net>
Que non confunda o seu nome "antilegal" (creo que ven dado para aproveitar o
tirón da sona que ten o caso ThePirateBay.org), é o único partido que non
lle fae falla firmar ningunha declaración de intencións, porque vai
implícito no seus obxectivos fundamentais:
Derechos y Libertades de los Ciudadanos
- Trabajaremos para que las *administraciones públicas hagan uso de
software, documentación y formatos estándares, libres y no privativos*,no
sólo en aras de la neutralidad tecnológica, sino también con el fin de que
las administraciones puedan garantizar la seguridad y privacidad de toda la
información sensible de los ciudadanos que se encuentre a su disposición.
Patentes
- Es nuestro objetivo la* no existencia de patentes de software* en el
ordenamiento jurídico.
- En el resto de áreas del desarrollo tecnológico planteamos un *modelo
de patentes abierto al desarrollo y la innovación*, que compatibilice el
fomento y salvaguarda del esfuerzo innovador con el aprovechamiento del
conocimiento previo para dinamizar la evolución de la tecnología en
beneficio de la sociedad, evitando asi mismo que se deriven monopolios
privados a causa de las patentes.
- Para evitar esto último la *duración de una patente deberá ser relativa
a la inversión necesaria en investigación y desarrollo* y *nunca
renovable*, sino que, una vez expirada, pasaría a formar parte del
dominio público. De igual modo expirará si no es explotada.
Sociedad de la Información
- Nos comprometemos a la extensión del *uso de Software Libre en las
Administraciones Públicas, así como el empleo de estándares abiertos*,
para que las administraciones garanticen la* independencia de las
herramientas empleadas*, la neutralidad tecnológica y la seguridad y
privacidad de toda la información sensible de los ciudadanos que se
encuentre a su disposición.
- Las *herramientas desarrolladas por y para la Administración serán
publicadas bajo licencias libres* para que puedan ser copiadas, adaptadas
y redistribuidas, ampliando el conocimiento común y pudiendo ser utilizadas
por empresas privadas, potenciando su desarrollo y el empleo en el sector
tecnológico.
Máis info: http://www.partidopirata.es/
--
Rafa Couto - http://caligari.treboada.net
GNU/Linux user #99126 - http://counter.li.org
Info sobre o Pacto a prol do SwL
http://www.galpon.org/drupal/node/280
--
"Por favor, non me envíe documentos con extensións .doc, .docx, .xls, .xlsx,
.ppt, .pptx
Podes atoparme en GTalk e máis en jabberes.org e na sala
galpon_minino(a)conf.jabberes.org
Éste xa é un problema que tivera anteriormente e que comentei aquí e onte na
lista de correo de Trisquel. Resulta que non podo imprimir desde o Firefox
nin arquivos pdf. Inserto exactamente o que onte enviei á lista de Trisquel:
Non entendo moi ben o significado do que pego, pero ao ver a palabra Apple
me temo o peor. Será por culpa do meu compañeiro que ten un Macbook? Fun ao
enderezo que se indica pero, inocente de mín, non sei cómo eliminar o uso do
Apple Bonjour. Alguén me pode axudar?
May 26 20:23:11 xosemarcote-portatil HP_LaserJet_3052?ip=192.168.1.36:
prnt/backend/hp.c 496: unable to connect hpssd socket 2207: No route to host
May 26 20:23:21 xosemarcote-portatil HP_LaserJet_3052?ip=192.168.1.36:
prnt/backend/hp.c 496: unable to connect hpssd socket 2207: No route to host
May 26 20:30:39 xosemarcote-portatil cupsd[4988]: *** WARNING *** The
program 'cupsd' uses the Apple Bonjour compatibility layer of Avahi.
May 26 20:30:39 xosemarcote-portatil cupsd[4988]: *** WARNING *** Please fix
your application to use the native API of Avahi!
May 26 20:30:39 xosemarcote-portatil cupsd[4988]: *** WARNING *** For more
information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=cupsd>
May 26 20:50:24 xosemarcote-portatil HP_LaserJet_3052?ip=192.168.1.36:
prnt/backend/hp.c 496: unable to connect hpssd socket 2207: No route to host
May 26 20:50:33 xosemarcote-portatil HP_LaserJet_3052?ip=192.168.1.36:
prnt/backend/hp.c 496: unable to connect hpssd socket 2207: No route to host
May 26 21:47:56 xosemarcote-portatil cupsd[4996]: *** WARNING *** The
program 'cupsd' uses the Apple Bonjour compatibility layer of Avahi.
May 26 21:47:56 xosemarcote-portatil cupsd[4996]: *** WARNING *** Please fix
your application to use the native API of Avahi!
May 26 21:47:56 xosemarcote-portatil cupsd[4996]: *** WARNING *** For more
information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=cupsd>
May 26 21:47:58 xosemarcote-portatil dhcdbd: Started up.
May 26 21:48:01 xosemarcote-portatil dhcdbd: message_handler: message
handler not found under /com/redhat/dhcp/eth0 for sub-path
eth0.dbus.get.reason
May 26 21:48:06 xosemarcote-portatil dhcdbd: message_handler: message
handler not found under /com/redhat/dhcp/eth0 for sub-path
eth0.dbus.get.domain_name
May 26 21:48:06 xosemarcote-portatil dhcdbd: message_handler: message
handler not found under /com/redhat/dhcp/eth0 for sub-path
eth0.dbus.get.nis_domain
May 26 21:48:06 xosemarcote-portatil dhcdbd: message_handler: message
handler not found under /com/redhat/dhcp/eth0 for sub-path
eth0.dbus.get.nis_servers
May 26 21:48:06 xosemarcote-portatil dhcdbd: message_handler: message
handler not found under /com/redhat/dhcp/eth0 for sub-path
eth0.dbus.get.interface_mtu
--
Linux User #468530
"Por favor, non me envíe documentos con extensións .doc, .docx, .xls, .xlsx,
.ppt, .pptx
Instale OpenOffice dende
http://www.mancomun.org/raquo-descargas/software-libre/openoffice/ooo-3-0-0…,
é LIBRE, DE BALDE, totalmente LEGAL, funciona mellor que outros paquetes de
oficina, e está en continuo desenvolvemento."
Hola gente:
La próxima reunión de GALPon (sábado día 30 de Mayo) la realizaremos en un
nuevo sitio:
"Cafetería Medalla de Oro" en la calle López de Neira y que os dejo el mapa de
Google:
http://www.google.com/maps/ms?ie=UTF8&hl=es&msa=0&msid=11444530204568839102…
Los requisitos que puse son que podamos estar más cómodos, sin ruídos, con wifi
en condiciones y posibilidad de poner un proyector, además de cerveza y
pinchos de comida ;-)
Tiene una zona apartada en la planta superior de la cafetería que nos
prepararían para nuestras reuniones y galponadas técnicas. Y si nos gusta el
sitio, siempre podemos quedarnos a cenar allí mismo también ;-) ya que tienen
buena cocina y barata.
Organizaremos el primer "Bar Camp" por GALPon este año ;-). LA HORA ESTIMADA
PARA LA REUNIÓN SON LAS 20:30H (PENDIENTE DE CONFIRMACIÓN)
Un cordial saludo,
--
-----------------------------------------
Carlos Rodriguez <capri99(a)gmail.com>
GALPon.org - "Abrindo as portas do Sofware Libre"
VoIP SIP <capri99(a)ekiga.net>
---------- Mensaje reenviado ----------
Asunto: Ayudémosles a no hacer el ridículo
Fecha: Miércoles, 20 de Mayo de 2009
De: eXgae <exgae(a)moviments.net>
Para: destinatarios-no-revelados:;
*En las europeas, no votemos para los partidos que quieren regalar a
intereses privados nuestro derecho de acceso a internet
*Tras comprobar cuáles han sido los votos, hace ahora 2 semanas, de los
parlamentarios europeos respecto al así llamado "Paquete de las
Telecomunicaciones" [1] es fundamental que recordemos que los partidos
mayoritarios, es decir, Gobierno y oposición a la par, están dispuestos
a regalar nuestro derecho a una comunicación libre e igualitaria a
través de Internet a intereses de multinacionales privadas.
Los ciudadanos pueden recordarlo y comprobarlo en el siguiente gráfico
donde se muestra el voto que han emitido todos los parlamentarios en las
votaciones del Paquete de Telecomunicaciones ( de 100%, el voto más
favorable a la ciudadanía a 0%, más favorable a los lobbies privados):
http://www.laquadrature.net/wiki/Telecoms_package_directives_2nd_reading_ES
A grandes rasgos recordemos que:
- *El PSOE*, tras haber votado a favor de todas las enmiendas más
privatizadoras, está enviando propaganda electoral en el que se proclama
favorable a la neutralidad de la red. No nos dejemos engañar, su
política está a la luz del día: SGAE, canon, 3 avisos, criminalización
del intercambio, "regalos" a gremios de presión, cesión a Microsoft y a
entidades de gestión privadas de los programas de educación para los
niños...
- *El PP*, se muestra contrario al canon (pero en cambio favorable a la
criminalización del intercambio de información en la red, no lo
olvidemos), finge estar del lado de los ciudadanos, cuando ha sido el
partido que más se ha esforzado en la votación europea para recortar los
accesos y libertades de la red. Con su voto apuesta descaradamente por
la privatización de Internet y por su control por parte de entidades
privadas.
- *CIU* : ha sido quien propuso en su día la enmienda que permitía el
control de nuestras comunicaciones en red por parte de entidades
privadas y sin permiso judicial (a través de su eurodiputado Ignasi
Guardans, hoy "hombre de confianza" de la ministra de cultura
González-Sinde).
Entonces ¿Por qué todos fingen estar del lado de los internautas? ¿Dónde
está el truco?
Esta política está tan claramente dirigida a juegos de poder y de
intereses económicos, que para encubrirla fingen que su política sea el
opuesto de lo que en realidad mantiene en la práctica.
/Con la excusa de que "Europa está lejos", piensan quedar impunes.
Pero ni los ciudadanos somos tontos ni Europa está tan lejos:
/
*Se lo recordaremos con nuestro voto en las elecciones europeas el 6 de
junio 2009.*/*
No queremos que la ignorancia, la avaricia y la incompetencia de unos
pocos decidan nuestro futuro .
No votemos por los partidos que están dispuestos a controlar nuestro
acceso a Internet y ceder nuestro derechos al conocimiento y a la
información a intereses privados.*/
*Más manipulación:* esta misma semana, *el 24 de mayo a las 12h*, la
Asociación de Internautas (AI) ha convocado una *concentración*
(http://www.internautas.org/acciones/acto24052009/) delante del
ministerio de cultura para pedir un Internet libre y el respecto de los
derechos civiles digitales.
Muchos partidos que no están haciendo su deberes en el lugar que
deberían (recordemos que es el parlamento), están intentando manipular
esta convocatoria ciudadana adhiriéndose a la misma, como el que no se
da por aludido. Sólo desde la hipocresía y la manipulación se pueden
apoyar unas leyes que vulneran los derechos fundamentales de la
ciudadanía, para más tarde sumarse a la respuesta de indignación popular
que las mismas provocan.
Ayudémosles a que no hagan el ridículo, y recordémosles que los que
saldrán a la calle son ciudadanos sinceramente indignados, que no cobran
por ello, y que si como grupos políticos no saben hacer su trabajo en su
puesto de trabajo, mejor que se queden en su casa.
PP, PSOE, CIU, Partido de la Ciudadanía: si tanto os apremian los
derechos digitales de los ciudadanos ¿Por qué habéis apoyado el voto
contra ellos el 5 y 6 de mayo pasados?
[1] "Paquete de las Telecomunicaciones", aquí toda la información sobre
el mismo:
http://blackouteusp.wordpress.com/*
____________
http://exgae.net
Multiplica y reparte
639025865
Pablo Soto asbolución!!!!!!!!!!!
http://www.facebook.com/group.php?gid=83279979225
*
-------------------------------------------------------
--
-----------------------------------------
Carlos Rodriguez <capri99(a)gmail.com>
GALPon.org - "Abrindo as portas do Sofware Libre"
VoIP SIP <capri99(a)ekiga.net>