<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>gnulinuxfoss &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/gnulinuxfoss/</link>
	<description>Feed of posts on WordPress.com tagged "gnulinuxfoss"</description>
	<pubDate>Sat, 26 Jul 2008 07:27:03 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[GNU/Linux World Domination for the Wrong Reasons]]></title>
<link>http://stefon.wordpress.com/?p=375</link>
<pubDate>Tue, 11 Mar 2008 18:15:39 +0000</pubDate>
<dc:creator>stefon</dc:creator>
<guid>http://stefon.wordpress.com/?p=375</guid>
<description><![CDATA[As GNU/Linux is becoming more and more mainstream, practical issues are getting more attention than ]]></description>
<content:encoded><![CDATA[<p>As <a href="http://en.wikipedia.org/wiki/Linux" title="wikipedia about gnu/linux">GNU/Linux</a> is becoming more and more mainstream, practical issues are getting more attention than the ideals of the free software movement. A great number of people using GNU/Linux don't know the difference between a gratis proprietary graphic driver and a free (as in free speech) one... or they just don't bother.</p>
<blockquote><p>At its most basic, free software is about helping users gain control of their computers so that they can participate unhindered in the digital conversations of the networks and the Internet.<br />
It's about installing software freely, rather than being dictated to by the manufacturer.<br />
It's about using your computer the way that you want, instead of ceding control to lock-down devices installed by software vendors without permission on your machine.</p></blockquote>
<p>The opinion, and I share this one, of <a href="http://itmanagement.earthweb.com/feedback.php/http://itmanagement.earthweb.com/osrc/article.php/12068_3733286_2">Bruce Byfield</a> in the article <a href="http://itmanagement.earthweb.com/osrc/article.php/3733286"> </a><a href="http://itmanagement.earthweb.com/feedback.php/http://itmanagement.earthweb.com/osrc/article.php/12068_3733286_2"></a><a href="http://itmanagement.earthweb.com/osrc/article.php/3733286" title="GNU/Linux World Domination for the Wrong Reasons">GNU/Linux World Domination for the Wrong Reasons</a> that there is the danger of concentrating on short term goals instead of the long term goals.</p>
<blockquote><p>"The trouble with talking about monopolies," Peter Brown, the executive director of the Free Software Foundation told me a couple of years ago, "Is that it suggests that, if it wasn't a monopoly, if there was competition among proprietary companies, that would be okay with us. But, no, it wouldn't make it okay from our viewpoint." ...</p>
<p>Seeing GNU/Linux shift from the fringe to the mainstream is exciting, no question. Being part of that shift is even more so. Yet in the rebellious glee of watching the paradigms shifting, we need to consider that acceptance can sometimes come at too high a cost. True, insisting that the ethics that built the operating system share in its success may delay or even halt that same success. Yet if those ethics don't survive, then the success will not be worth having.</p></blockquote>
<p><i>Source:</i> <a href="http://lwn.net/Articles/272775/" title="Lwn.net">Lwn.net </a></p>
<blockquote></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[DBus desde C# (I)]]></title>
<link>http://ignacius.wordpress.com/2006/08/26/dbus-desde-c-i/</link>
<pubDate>Sat, 26 Aug 2006 16:24:47 +0000</pubDate>
<dc:creator>ignacius</dc:creator>
<guid>http://ignacius.wordpress.com/2006/08/26/dbus-desde-c-i/</guid>
<description><![CDATA[He empezado a jugar un poquito con DBus. Más que nada para ver que nos puede ofrecer. Ya que mi pro]]></description>
<content:encoded><![CDATA[<p>He empezado a jugar un poquito con DBus. Más que nada para ver que nos puede ofrecer. Ya que mi propósito no es explicar qué es DBus, os sugiero para los que no lo conozcáis que os leais <a href="http://www.linuxjournal.com/article/7744">éste tutorial</a>.</p>
<p>Para empezar, he decidido hacer un simple programita que activa el salvapantallas. Dado que gnome-screensaver exporta funciones para manejar ésto a través de DBus, era una buena opción. La verdad es que me ha llevado una hora programarlo a pesar de tener 3 líneas de código, ya que no he encontrado nada en internet donde explique cómo usarlo desde C# y que la API difiere un tanto de la que se usa desde C.</p>
<p>El primer paso, ha sido lanzar la aplicación dbus-viewer, un simple programa que te permite ver lo que se está exportando a través del bus de sesión. Así, podemos obtener los métodos, el path, y demás parámetros que tenemos que pasar a las funciones de DBus.</p>
<p>En segundo término he empezado a imaginar cómo usar las clases y métodos. Lo primero que he hecho es programar un programa sencillo en el que no hay paso de parámetros entre los programas. El código es el siguiente:</p>
<p>using DBus;<br />
namespace pruebaboo<br />
{</p>
<blockquote><p>class MainClass<br />
{</p>
<blockquote><p>public static void Main(string[] args)<br />
{</p>
<blockquote><p>Service srv = DBus.Service.Get (DBus.Bus.GetSessionBus (), "org.gnome.ScreenSaver");<br />
DBus.MethodCall method = new DBus.MethodCall (srv, "/", "org.gnome.ScreenSaver", "Lock");<br />
method.Send ();<br />
method.Dispose ();<br />
DBus.Bus.GetSessionBus ().Flush ();</p></blockquote>
<p>}</p></blockquote>
<p>}</p></blockquote>
<p>}</p>
<p>En la primera línea, se llama al método estático DBus.Service.Get, que permite obtener del bus de sesión especificado en el primer parámetro, el servicio "org.gnome.ScreenSaver". Un servicio es lo que exporta cada aplicación, es decir, cada aplicación tiene asociado un servicio.</p>
<p>En la segunda y tercera líneas se llama a una función remota. La manera de llamar a la función es realizando una nueva instancia de la clase DBus.MethodCall. En el constructor se pasa como parámetros el servicio que hemos adquirido en la primera línea, la ruta o path hasta la interfaz que contiene la función a la que queremos llamar (en éste caso "/"), la interfaz propiamente dicha ("org.gnome.ScreenSaver") y el nombre de la función remota ("Lock"). Una vez hecho ésto, sólo nos queda enviar la llamada a la función a través del bus con la llamada al método Send ().</p>
<p>El tema de la ruta o path y la interfaz puede parecer un poco confuso al principio, pero suponeros que la ruta es una especie de namespace, y que la interfaz es el nombre de la clase o de una interfaz como se conoce en cualquier lenguaje de programación orientado a objetos. En caso de que la interfaz no tenga ruta como en éste caso, deberemos utilizar la raíz.</p>
<p>Las dos últimas líneas sirven para decirle al VM que elimine el objeto method de la memoria y para forzar a que envíe todo lo que tiene el buffer local correspondiente al bus de sesión respectivamente.</p>
<p>He observado que mediante DBus puedes manejar bastantes programas, desde el salvapantallas o Gaim hasta Banshee y Tomboy pasando por Beagle, Epiphany, etc... En la próxima entrega os mostraré cómo pasar parámetros a las métodos remotos.</p>
<p>Que lo disfrutéis.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[reply-o-matic and bragging rights]]></title>
<link>http://rbarbosa.wordpress.com/2006/08/20/reply-o-matic-and-bragging-rights/</link>
<pubDate>Sun, 20 Aug 2006 08:24:45 +0000</pubDate>
<dc:creator>rbarbosa</dc:creator>
<guid>http://rbarbosa.wordpress.com/2006/08/20/reply-o-matic-and-bragging-rights/</guid>
<description><![CDATA[Well, not only I finally released (after almost 3 years) a new version of reply-o-matic, I also foun]]></description>
<content:encoded><![CDATA[<p>Well, not only I finally released (after almost 3 years) a new version of <a href="http://sourceforge.net/projects/reply-o-matic">reply-o-matic</a>, I also found out it has been on FreeBSD ports for quite some time. Doing some search, I noticed it is recomended on several places too.</p>
<p>I think it goes without saying that I'm as happy as a kitten.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Winged Monkeys from SCO]]></title>
<link>http://rbarbosa.wordpress.com/2006/08/01/winged-monkeys-from-sco/</link>
<pubDate>Tue, 01 Aug 2006 07:08:28 +0000</pubDate>
<dc:creator>rbarbosa</dc:creator>
<guid>http://rbarbosa.wordpress.com/2006/08/01/winged-monkeys-from-sco/</guid>
<description><![CDATA[A few days ago, there was yet another slashdot article regarding SCO vs. IBM.
What is really worth i]]></description>
<content:encoded><![CDATA[<p>A few days ago, there was yet another slashdot article regarding SCO vs. IBM.<br />
What is really worth it the a comment from Vengeance on the subject of SCO accusing IBM of destroying "evidence".</p>
<p><a href="http://slashdot.org/comments.pl?sid=191821&#38;cid=15757578">http://slashdot.org/comments.pl?sid=191821&#38;cid=15757578</a></p>
<p>You never can get too much sarcasm.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[100$ laptop - Implications and Issues.]]></title>
<link>http://mindwarrior.wordpress.com/2006/07/28/100-laptop-implications-and-issues/</link>
<pubDate>Fri, 28 Jul 2006 12:16:08 +0000</pubDate>
<dc:creator>Poorna Shashank</dc:creator>
<guid>http://mindwarrior.wordpress.com/2006/07/28/100-laptop-implications-and-issues/</guid>
<description><![CDATA[About the $100 laptop
The 100$ laptop consists of:
Linux-based
Dual-mode display—both a full-color]]></description>
<content:encoded><![CDATA[<p><b>About the $100 laptop</b></p>
<p>The 100$ laptop consists of:<br />
Linux-based<br />
Dual-mode display—both a full-color, transmissive DVD mode<br />
Second display option that is black and white reflective and sunlight-readable at 3× the resolution.<br />
500MHz processor<br />
128MB of DRAM<br />
500MB of Flash memor [no hard disk]<br />
Four USB ports<br />
Wireless broadband that, among other things, allows them to work as a mesh network; each laptop will be able to talk to its nearest neighbors, creating an ad hoc, local area network<br />
Innovative power (including wind-up)</p>
<p>The MIT professor Nick Negroponte is one of main promoters of the One Laptop Per Child programme (OLPC).</p>
<p><b>In the News: The OLPC programme in India Scrapped!</b></p>
<p><a href="http://timesofindia.indiatimes.com/articleshow/msid-1698603,curpg-1.cms">HRD rubbishes MIT's laptop scheme for kids</a></p>
<p>Some excerpts from the toi site follow:<br />
- India must not allow itself to be used for experimentation with children in this area -HRD ministry<br />
- Negroponte had made a presentation on OLPC at Yojna Bhavan on April 7 seeking to sell one million laptops at the rate of $100 per unit for children, the cost to be borne by the government.<br />
- HRD thought the Rs. 4500 million could be better spent on primary and health education.<br />
- There exists a conceptual vacuum in which the scheme is being propagated.<br />
- Implications of computer-based pedagogy for childhood have remained a grey zone of research<br />
- Both physical and psychological effects of children's intensive exposure to the computer implicit in OLPC are worrisome, to say the least</p>
<p>My initial reaction to seeing this article has been one of suprise at the amount of thought process put in by the HRD Ministy and other of actually accepting their discretion. At the very outset, the whole problem looks like a very obvious cheap and effective solution which will help India leapfrog from an agro based society to a knowledge based society.</p>
<p><b>Why the Scrapping is a Sane Decision</b></p>
<p>The 100$ laptop is based on some premises which actually dont correspond to the ground situation in India. The major assumptions:</p>
<p><i><b>a. Laptop as a commodity increases Adoption and Hence Literacy</b></i><br />
New usable laptops for an on the move IT professional or real user are in the range of upwards of $700. Where the average per capita income in India is still US$165, buying a laptop is out of question. Now the question that we will have to ask is "Is the laptop filling the gap for bridging the literacy divide?". Adoption is inevtiable, if the things that are being promised are really kept; but that doesnt in anyway guarantee any of the other corresponding assumptions being made about literacy.</p>
<p><i><b>b. Laptop as a Pedagogical Tool</b></i><br />
This assumption as yet doesnt have a concrete solid provable document of proof. Let us assume that a student never has to have to buy the laptop as the cost is borne by the government. Being a student of Comp Sci and as well interacting with friends who have _not_ been students of Computer Science, I do understand the uses of Computer Based Pedagogy. Im puzzle not with the assumption that cheaper laptops will increase adoption; but with that assumption that Laptop is a method to tackle illiteracy. Even though a laptop is a great supplement, its role as a relacement for classroom or a very effective notebook for a child is totally questionable.</p>
<p><i><b>c. Prohibitive Cost</b></i><br />
$100 x 1 million children = $100 million = 450 crores. When our requirement is for more infrastructure, the 450 crore investment in an as yet unproved technology is hardly justified.</p>
<p><i><b>d. Filling in the Gap</b></i><br />
The $100 laptop as is evident is not filling any gap in the education system of India. What we need to solve the literacy problem in India is simple:<br />
<i> - More classrooms and more teachers<br />
- Less reasons for children to not come/discontinue education viz bad classrooms, bad teachers, costly education(not only in the terms paid but also in terms of money lost by not working), precious time, better shorter term advantages<br />
- More reasons for coming to school and continuing education viz. better amenities at school, great teachers, better food, better future...</i></p>
<p>The laptop in spite of being a great tool is as yet has to fit in or solve any of the ground realities pointed above.<br />
<i><b><br />
e. Software for the Laptop</b></i><br />
Even though the 100$ laptop looks exhiliarating to be able to solve a great digital divide, the software required to distribute the content digitally over the laptops is still questionable. Just having Linux doesnt solve any/all of our problems. For any tool to penetrate even the deepest reaches in India, either the tool has to be <b>very </b>simple(like a mobile), or it has to have very good localised font support. In this scenario, the problem the laptop sets out to solve are as yet unsolved.</p>
<p><b>Why the Scrapping is a Bad Idea</b></p>
<p>Now to the reasons as why scrapping is a bad Idea; not because the of OLPC programme per se; but because of its probable effect on other technologies trying to penetrate into the rural folds. Now for the reasons why this scrapping is a bad idea.</p>
<p><i><b>a. Money invested till now as a sunk cost</b></i><br />
The HRD ministry for all now has to understand that the money invested hasnt borne the fruits as it had expected to. In that case trying cheap, alternative-technology driven solutions might be of use too. [I myself think that technology can solve this issue even without trying to solve the human issue involved].</p>
<p><i><b>b. No Alternative for Costlier Indigenious Solutions [Simputer, Mobile]</b></i><br />
For all I know, even though scrapping the laptop is bad, its really an awesome tool for one. Ability to form cheap ad-hoc mesh networks is really a wonderful conceptualization of creating a networked mesh architecture. Compare this with the Simputer [<a href="http://www.amidasimputer.com" target="_blank">www.amidasimputer.com</a>] which costs upwards of $300 dollars for a simple gadget. I had been recently <strike>working on making</strike> been trying to see if a simputer can be a very cheap alternative to laptops [Rs. 9000 + Rs. 500 for a USB keyboard], and had been very much disappointed looking at the prohibitive costs, 20K for a full color Simputer. Why go for a micro sized screen plus a big keyboard for 20K when you can as well go for a better powered laptop device for 30K? And why <b>not </b>go for a lappie that costs 4500K???</p>
<p>Why should not the government try out the $100 laptops instead of using a Simputer or a bigger linux workstation? This laptop can definitely be used by a village teacher or a RMP doctor or many other adults as a better record keeping tool. For them it will prove much more handy and useful than to a child.</p>
<p><i><b>c. Deadstop for Innovation</b></i><br />
A Digital alternative for pedagogy makes teaching interesting and not to speak of, the much more productivity increase for book keeping individuals. When this OLPC programme has been scrapped, the incentive for other high technology similar disruptive solutions have been essentially nullified. Not the best way to go for a 'knowledge society'.<br />
<i><b><br />
The Solution: Reorient the Vision</b></i></p>
<p>a. Make the OLPC and OLPT - One Laptop Per Teacher<br />
b. Scrap log books &#38; other arcane record keeping procedures and adopt the laptop as a better book keeping gadget for on the move rural professionals<br />
c. Digital Kiosks can adopt the 100$ laptop instead of depending on the workstations. The dependance on electircity is effectively neutralized by adopting this laptop.</p>
<p><b>References</b>:</p>
<p>www.laptop.org<br />
www.slashdot.org</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Streaming]]></title>
<link>http://ignacius.wordpress.com/2006/07/07/streaming/</link>
<pubDate>Fri, 07 Jul 2006 23:27:02 +0000</pubDate>
<dc:creator>ignacius</dc:creator>
<guid>http://ignacius.wordpress.com/2006/07/07/streaming/</guid>
<description><![CDATA[Flumotion es un programa que te permite hacer streaming de video y/o audio. Está desarrollado por u]]></description>
<content:encoded><![CDATA[<p><a href="http://www.flumotion.net/">Flumotion</a> es un programa que te permite hacer streaming de video y/o audio. Está desarrollado por una empresa situada en Barcelona que se llama <a href="http://www.fluendo.net/">Fluendo</a>. <a href="http://www.flumotion.net/">Flumotion</a> está programado en python y usa <a href="http://gstreamer.freedesktop.org">gstreamer</a> con lo que virtualmente se puede hacer streaming en cualquiera de los formatos que soporta dicho framework. Si alguien está pensando en usarlo, puede que <a href="http://www.flumotion.net/doc/flumotion/manual/manual.pdf">éste</a> manual le sirva.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Quaked!]]></title>
<link>http://mindwarrior.wordpress.com/2006/07/04/quaked/</link>
<pubDate>Tue, 04 Jul 2006 18:08:42 +0000</pubDate>
<dc:creator>Poorna Shashank</dc:creator>
<guid>http://mindwarrior.wordpress.com/2006/07/04/quaked/</guid>
<description><![CDATA[Quake on a 24 Screen Setup in Linux!!!

Nirnimesh, where art thou?
Edit: From the horse&#8217;s mout]]></description>
<content:encoded><![CDATA[<p><a href="http://www.whylinuxisbetter.net/items/free_games/Images/quake_24_screens.jpg">Quake on a 24 Screen Setup in Linux!!!</a></p>
<p><a href="http://www.whylinuxisbetter.net/items/free_games/Images/quake_24_screens.jpg"><img src="http://mindwarrior.wordpress.com/files/2006/07/quake_24_screens.jpg" alt="quake_24_screens.jpg" height="300" width="480" /></a></p>
<p>Nirnimesh, where art thou?</p>
<p>Edit: From the horse's mouth, <a href="http://www.plastk.net/">click here</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Richard Stallman, GPLv3 and Linux]]></title>
<link>http://rbarbosa.wordpress.com/2006/02/08/richard-stallman-gplv3-and-linux/</link>
<pubDate>Wed, 08 Feb 2006 22:40:56 +0000</pubDate>
<dc:creator>rbarbosa</dc:creator>
<guid>http://rbarbosa.wordpress.com/2006/02/08/richard-stallman-gplv3-and-linux/</guid>
<description><![CDATA[Not like it surprises me anymore. Now Richard Stallman is saying that the decision about Linux going]]></description>
<content:encoded><![CDATA[<p>Not like it surprises me anymore. Now Richard Stallman is saying that the decision about Linux going GPLv3 is<br />
<a href="http://www.linux-watch.com/news/NS3301105877.html">up to the developers</a>, not Linus.</p>
<p>I wonder how he think the developers can force Linus to accept a code into HIS kernel. Maybe using handguns.<br />
Yes, that would be in character for Stallman.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Richard Stallman vs. FOSS]]></title>
<link>http://rbarbosa.wordpress.com/2006/02/07/richard-stallman-vs-foss/</link>
<pubDate>Tue, 07 Feb 2006 22:03:29 +0000</pubDate>
<dc:creator>rbarbosa</dc:creator>
<guid>http://rbarbosa.wordpress.com/2006/02/07/richard-stallman-vs-foss/</guid>
<description><![CDATA[So, looks like Richard Stallman is at it again.
This time, he says Creative Commons is no good.
I ha]]></description>
<content:encoded><![CDATA[<p>So, looks like Richard Stallman is at it again.<br />
This time, he says <a href="http://http://www.linuxp2p.com/forums/viewtopic.php?p=10771">Creative Commons is no good</a>.</p>
<p>I have to wonder when someone is going to make his shut up. He has far outlived his usefulness for the FOSS, and today is more like a threat to it. Everytime he opens his mount, people will think <a href="http://http://en.wikipedia.org/wiki/FOSS">FOSS</a> is a joke.</p>
<p>So, here is my plea:</p>
<p>RMS, go back to coding.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[NVidia Drivers for Debian]]></title>
<link>http://mindwarrior.wordpress.com/2006/02/07/nvidia-drivers-for-debian/</link>
<pubDate>Tue, 07 Feb 2006 06:52:29 +0000</pubDate>
<dc:creator>Poorna Shashank</dc:creator>
<guid>http://mindwarrior.wordpress.com/2006/02/07/nvidia-drivers-for-debian/</guid>
<description><![CDATA[Anyone got the NVidia Drivers for the Debian? My earlier set of drivers wont work now with latest x1]]></description>
<content:encoded><![CDATA[<p>Anyone got the NVidia Drivers for the Debian? My earlier set of drivers wont work now with latest x11 update ive done :(</p>
<p>Any help completely unequivocally appreciated!</p>
]]></content:encoded>
</item>

</channel>
</rss>
