Re: End-of-line or just carriage-return

"Wes Wagner" <[email protected]> Thu, 19 Jul 2007 06:58:51 -0700
Newsgroups gmane.linux.cluster.openmosix.devel
Message-ID <[email protected]>
--===============0764913141==
Content-Type: multipart/alternative; 
	boundary="----=_Part_63871_8682337.1184853531287"

------=_Part_63871_8682337.1184853531287
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Any objections to a Tuesday 5:30pm meeting? We can call ourselves a Birds of
a Feather group and hash out some of these details about openmosix.

-Wes


On 7/19/07, Matt Rechenburg <[email protected]> wrote:
>
> Hi Wes,
>
> Wes Wagner wrote:
> > I live in Portland, Oregon and if you are willing to discuss a
> > continuation of the open mosix project in another form I would be very
> > happy to meet with you and anyone else here who is interested.
>
> :) good, i am interested.
>
>
> many thanks + all the best,
>
> Matt
>
> >
> > -Wes Wagner
> >
> >
> > On 7/18/07, *Jonathan Day* <imipak-/[email protected]
> > <mailto:imipak-/[email protected]>> wrote:
> >
> >     First off, I'd like to thank Moshe Bar and all the
> >     other programmers involved in openMosix - I firmly
> >     believe that it is the best of the SSI solutions out
> >     there at present.
> >
> >     I also believe that SSI is going to be more important,
> >     not less, on the next generation of machines. The next
> >     version of PCI Express supports multiple masters on a
> >     single network of PCI switches. However, QoS seems to
> >     be limited to bandwidth reservation for a master to be
> >     established at setup. There is no way of dynamically
> >     configuring the next generation PCI-e switches
> >     according to varying demands.
> >
> >     How does this impact SSI? Well, if you can't move the
> >     allocation, move the process. If you can migrate
> >     between masters, you can load-balance a PCI-e system
> >     in a way that the hardware does not support (by
> >     design).
> >
> >     There is also the case that programs are usually
> >     smaller than the data sets being manipulated. In a
> >     general-purpose cluster, it is sometimes the case that
> >     shifting the program image is vastly less expensive
> >     than shifting the data. SIMD would seem to be the
> >     perfect market for this, because you're guaranteed to
> >     be running the same code on all nodes, but each node
> >     will have its own data - which it would therefore need
> >     to collect, rather than having a central collection
> >     point.
> >
> >     DSM is a problem - and a problem I have worked hard on
> >     for the last few years. Part of the problem is that
> >     when you copy to N nodes using a unicast delivery
> >     system, you must transmit the data N times. That is
> >     slow. NACK-Oriented Reliable Multicast would reduce
> >     the copies needed, cutting bandwidth requirements and
> >     the total elapsed time between start of first packet
> >     to end of last packet.
> >
> >     RDMA (Remote Direct Memory Access) is also an
> >     interesting technology, allowing one node to copy from
> >     local memory to remote memory, or remote memory to
> >     local memory, in a single operation without
> >     intervention by the kernel on either side. However,
> >     most machines are not provided with RNICs or
> >     Infiniband cards. Pity.
> >
> >     A project of mine has been to extend RDMA to support
> >     multicasting - something the specs don't currently
> >     allow for - so that you can transfer to multiple
> >     memories in one go. Devising a protocol that the RDMA
> >     groups can sign on to is proving difficult. There are
> >     a large number of corner cases and the more I fix, the
> >     more I find. If RDMA proves impossible, then any
> >     zero-copy kernel-bypass protocol would work in
> >     principle. This would avoid having specialized
> >     hardware but you'd need an emulation layer to provide
> >     compatibility to the bulk of interesting software.
> >
> >     Multicast with zero-copy does not totally solve the
> >     problem of DSM, but it reduces some of the issues. You
> >     shed a whole bunch of context switches, stack
> >     latencies, buffer copies, backoffs caused by switch
> >     flooding, etc. It's hard to quantify, but my
> >     calculations repeatedly show that the latency is
> >     roughly 5.6 microseconds plus the per hop latency on
> >     the longest path for every 4K, regardless of the
> >     number of nodes actually delivered to.
> >
> >     Another networking technology I have been taking a
> >     close look at is Active Messaging. There's a project -
> >     GAMMA - that implements AM on Linux. Again, the idea
> >     is to reduce the wasted cycles involved. AM looks very
> >     interesting, but the implementation seems to be very
> >     card-specific and doesn't play nice with other
> >     protocols. To use AM in a general-purpose cluster
> >     would need a fair amount of work put into it.
> >
> >     TIPC is also worthy of examination, as anything that
> >     reduces what a clustering solution needs to do to
> >     cluster transparently is a Good Thing.
> >
> >     Ok, I've now completely flogged, beaten and trampled
> >     this poor dead horse into the ground, I'll mutilate a
> >     few other things, the first of which is the SSI
> >     concept.
> >
> >     Strictly speaking, openMosix does not need to be SSI.
> >     Indeed, it would make some sense to use the IBCS
> >     patches to load and start applications for a range of
> >     Intel-based *nixes and then migrate the process space
> >     to an instance of the actual OS it is intended for. We
> >     now have a multi system image clustering technology.
> >
> >     The second issue is with real-time support. Real-time,
> >     in this context, means that if process X is guaranteed
> >     a timeslice of Y out of a total timeslice of Z, with a
> >     margin of error M, then no matter how time is divided
> >     up, how busy/free the system is, whether the system
> >     voluntarily hands back control, etc, it WILL occupy
> >     that amount of the available time, give or take only
> >     the margin of error, nothing more.
> >
> >     This can be fun when clustering. You don't hear of
> >     hard real-time clusters for a reason, and the reason
> >     has nothing to do with a lack of need. What does
> >     real-time mean for openMosix? It means that where such
> >     state information exists, openMosix needs to copy it.
> >     It means that processes need to migrate according to a
> >     packing algorithm that maximizes the chances of always
> >     meeting the timeslice goals. If real-time networking
> >     is also being used, then you also need the packing
> >     algorithm to consider network latencies.
> >
> >     Real-time does not mean the fastest solution, which is
> >     what most SSI strategies look for. Nearest neighbors
> >     and all that. You will occupy a certain length of time
> >     even if the transfer takes less, so you must place at
> >     the greatest distance that the transfers will still
> >     meet deadlines even under the greatest-expected
> >     network loads.
> >
> >     Last, but by no means least, if the project is to go
> >     unmaintained, does anyone object to it being listed on
> >     the Unmaintained Free Projects pages?
> >
> >     Jonathan
> >
> >     P.S. Ok, I lied, that wasn't last, this is. If there
> >     are people from this list going to the Open Source
> >     conference in Portland, Oregon, next week, I suggest
> >     we arrange some sort of mini meetup. Accepting that
> >     Moshe has found nobody with the time and ability to
> >     run the project at this time, I propose that those of
> >     us who know gifted coders work on finding some, and
> >     that those who have contacts in the moneyed world see
> >     if the project can be sponsored somehow to the point
> >     where a team of developers can hack it to perfection
> >     on a viable salaried basis.
> >
> >
> >
> >
> >
> ____________________________________________________________________________________
> >     Need a vacation? Get great deals
> >     to amazing places on Yahoo! Travel.
> >     http://travel.yahoo.com/
> >
> >
> -------------------------------------------------------------------------
> >     This SF.net email is sponsored by DB2 Express
> >     Download DB2 Express C - the FREE version of DB2 express and take
> >     control of your XML. No limits. Just data. Click to get it now.
> >     http://sourceforge.net/powerbar/db2/
> >     _______________________________________________
> >     openMosix-devel mailing list
> >     openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> >     <mailto:openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
> >     https://lists.sourceforge.net/lists/listinfo/openmosix-devel
> >     <https://lists.sourceforge.net/lists/listinfo/openmosix-devel>
> >
> >
> >
> >
> > --
> > Wes Wagner
> >
> > Join a libertarian network of person-to-person lending on Prosper:
> >
> >
> http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&referrer=AiriusTorpora&utm_source=referrer-AiriusTorpora&utm_medium=referral-link&utm_content=join_my_group-160x33&utm_campaign=referrals-group
> > <
> http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&referrer=AiriusTorpora&utm_source=referrer-AiriusTorpora&utm_medium=referral-link&utm_content=join_my_group-160x33&utm_campaign=referrals-group
> >
> >
> > ------------------------------------------------------------------------
> >
> >
> -------------------------------------------------------------------------
> > This SF.net email is sponsored by DB2 Express
> > Download DB2 Express C - the FREE version of DB2 express and take
> > control of your XML. No limits. Just data. Click to get it now.
> > http://sourceforge.net/powerbar/db2/
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > openMosix-devel mailing list
> > openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> > https://lists.sourceforge.net/lists/listinfo/openmosix-devel
> >
>
>
> --
> www.openQRM.org
> - Keeps your Data-Center Up and Running
>
> Matt's blog - http://mattinaction.blogspot.com/
>
>
>
>


-- 
Wes Wagner

Join a libertarian network of person-to-person lending on Prosper:

http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&referrer=AiriusTorpora&utm_source=referrer-AiriusTorpora&utm_medium=referral-link&utm_content=join_my_group-160x33&utm_campaign=referrals-group

------=_Part_63871_8682337.1184853531287
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Any objections to a Tuesday 5:30pm meeting? We can call ourselves a Birds of a Feather group and hash out some of these details about openmosix.<br><br>-Wes<br><br><br><div><span class="gmail_quote">On 7/19/07, <b class="gmail_sendername">
Matt Rechenburg</b> &lt;<a href="mailto:[email protected]">[email protected]</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Wes,<br><br>Wes Wagner wrote:<br>&gt; I live in Portland, Oregon and if you are willing to discuss a<br>&gt; continuation of the open mosix project in another form I would be very<br>&gt; happy to meet with you and anyone else here who is interested.
<br><br>:) good, i am interested.<br><br><br>many thanks + all the best,<br><br>Matt<br><br>&gt;<br>&gt; -Wes Wagner<br>&gt;<br>&gt;<br>&gt; On 7/18/07, *Jonathan Day* &lt;<a href="mailto:imipak-/[email protected]">imipak-/[email protected]
</a><br>&gt; &lt;mailto:<a href="mailto:imipak-/[email protected]">imipak-/[email protected]</a>&gt;&gt; wrote:<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; First off, I&#39;d like to thank Moshe Bar and all the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; other programmers involved in openMosix - I firmly
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; believe that it is the best of the SSI solutions out<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; there at present.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; I also believe that SSI is going to be more important,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; not less, on the next generation of machines. The next
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; version of PCI Express supports multiple masters on a<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; single network of PCI switches. However, QoS seems to<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; be limited to bandwidth reservation for a master to be<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; established at setup. There is no way of dynamically
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; configuring the next generation PCI-e switches<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; according to varying demands.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; How does this impact SSI? Well, if you can&#39;t move the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; allocation, move the process. If you can migrate
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; between masters, you can load-balance a PCI-e system<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; in a way that the hardware does not support (by<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; design).<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; There is also the case that programs are usually<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; smaller than the data sets being manipulated. In a
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; general-purpose cluster, it is sometimes the case that<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; shifting the program image is vastly less expensive<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; than shifting the data. SIMD would seem to be the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; perfect market for this, because you&#39;re guaranteed to
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; be running the same code on all nodes, but each node<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; will have its own data - which it would therefore need<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; to collect, rather than having a central collection<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; point.<br>&gt;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; DSM is a problem - and a problem I have worked hard on<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; for the last few years. Part of the problem is that<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; when you copy to N nodes using a unicast delivery<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; system, you must transmit the data N times. That is
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; slow. NACK-Oriented Reliable Multicast would reduce<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; the copies needed, cutting bandwidth requirements and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; the total elapsed time between start of first packet<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; to end of last packet.
<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; RDMA (Remote Direct Memory Access) is also an<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; interesting technology, allowing one node to copy from<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; local memory to remote memory, or remote memory to<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; local memory, in a single operation without
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; intervention by the kernel on either side. However,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; most machines are not provided with RNICs or<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Infiniband cards. Pity.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; A project of mine has been to extend RDMA to support
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; multicasting - something the specs don&#39;t currently<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; allow for - so that you can transfer to multiple<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; memories in one go. Devising a protocol that the RDMA<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; groups can sign on to is proving difficult. There are
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; a large number of corner cases and the more I fix, the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; more I find. If RDMA proves impossible, then any<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; zero-copy kernel-bypass protocol would work in<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; principle. This would avoid having specialized
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; hardware but you&#39;d need an emulation layer to provide<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; compatibility to the bulk of interesting software.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Multicast with zero-copy does not totally solve the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; problem of DSM, but it reduces some of the issues. You
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; shed a whole bunch of context switches, stack<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; latencies, buffer copies, backoffs caused by switch<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; flooding, etc. It&#39;s hard to quantify, but my<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; calculations repeatedly show that the latency is
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; roughly 5.6 microseconds plus the per hop latency on<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; the longest path for every 4K, regardless of the<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; number of nodes actually delivered to.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Another networking technology I have been taking a
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; close look at is Active Messaging. There&#39;s a project -<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; GAMMA - that implements AM on Linux. Again, the idea<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; is to reduce the wasted cycles involved. AM looks very<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; interesting, but the implementation seems to be very
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; card-specific and doesn&#39;t play nice with other<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; protocols. To use AM in a general-purpose cluster<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; would need a fair amount of work put into it.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; TIPC is also worthy of examination, as anything that
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; reduces what a clustering solution needs to do to<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; cluster transparently is a Good Thing.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Ok, I&#39;ve now completely flogged, beaten and trampled<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; this poor dead horse into the ground, I&#39;ll mutilate a
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; few other things, the first of which is the SSI<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; concept.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Strictly speaking, openMosix does not need to be SSI.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Indeed, it would make some sense to use the IBCS<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; patches to load and start applications for a range of
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Intel-based *nixes and then migrate the process space<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; to an instance of the actual OS it is intended for. We<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; now have a multi system image clustering technology.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; The second issue is with real-time support. Real-time,
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; in this context, means that if process X is guaranteed<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; a timeslice of Y out of a total timeslice of Z, with a<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; margin of error M, then no matter how time is divided<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; up, how busy/free the system is, whether the system
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; voluntarily hands back control, etc, it WILL occupy<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; that amount of the available time, give or take only<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; the margin of error, nothing more.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; This can be fun when clustering. You don&#39;t hear of
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; hard real-time clusters for a reason, and the reason<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; has nothing to do with a lack of need. What does<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; real-time mean for openMosix? It means that where such<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; state information exists, openMosix needs to copy it.
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; It means that processes need to migrate according to a<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; packing algorithm that maximizes the chances of always<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; meeting the timeslice goals. If real-time networking<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; is also being used, then you also need the packing
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; algorithm to consider network latencies.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Real-time does not mean the fastest solution, which is<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; what most SSI strategies look for. Nearest neighbors<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; and all that. You will occupy a certain length of time
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; even if the transfer takes less, so you must place at<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; the greatest distance that the transfers will still<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; meet deadlines even under the greatest-expected<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; network loads.<br>
&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Last, but by no means least, if the project is to go<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; unmaintained, does anyone object to it being listed on<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; the Unmaintained Free Projects pages?<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Jonathan<br>&gt;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; P.S. Ok, I lied, that wasn&#39;t last, this is. If there<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; are people from this list going to the Open Source<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; conference in Portland, Oregon, next week, I suggest<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; we arrange some sort of mini meetup. Accepting that
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Moshe has found nobody with the time and ability to<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; run the project at this time, I propose that those of<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; us who know gifted coders work on finding some, and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; that those who have contacts in the moneyed world see
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; if the project can be sponsored somehow to the point<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; where a team of developers can hack it to perfection<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; on a viable salaried basis.<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; ____________________________________________________________________________________
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Need a vacation? Get great deals<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; to amazing places on Yahoo! Travel.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://travel.yahoo.com/">http://travel.yahoo.com/</a><br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; -------------------------------------------------------------------------
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; This SF.net email is sponsored by DB2 Express<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Download DB2 Express C - the FREE version of DB2 express and take<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; control of your XML. No limits. Just data. Click to get it now.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
<a href="http://sourceforge.net/powerbar/db2/">http://sourceforge.net/powerbar/db2/</a><br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; _______________________________________________<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; openMosix-devel mailing list<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org">
openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org</a><br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;mailto:<a href="mailto:openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org">openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org</a>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; <a href="https://lists.sourceforge.net/lists/listinfo/openmosix-devel">
https://lists.sourceforge.net/lists/listinfo/openmosix-devel</a><br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;<a href="https://lists.sourceforge.net/lists/listinfo/openmosix-devel">https://lists.sourceforge.net/lists/listinfo/openmosix-devel</a>&gt;<br>
&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; Wes Wagner<br>&gt;<br>&gt; Join a libertarian network of person-to-person lending on Prosper:<br>&gt;<br>&gt; <a href="http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&amp;referrer=AiriusTorpora&amp;utm_source=referrer-AiriusTorpora&amp;utm_medium=referral-link&amp;utm_content=join_my_group-160x33&amp;utm_campaign=referrals-group">
http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&amp;referrer=AiriusTorpora&amp;utm_source=referrer-AiriusTorpora&amp;utm_medium=referral-link&amp;utm_content=join_my_group-160x33&amp;utm_campaign=referrals-group
</a><br>&gt; &lt;<a href="http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&amp;referrer=AiriusTorpora&amp;utm_source=referrer-AiriusTorpora&amp;utm_medium=referral-link&amp;utm_content=join_my_group-160x33&amp;utm_campaign=referrals-group">
http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&amp;referrer=AiriusTorpora&amp;utm_source=referrer-AiriusTorpora&amp;utm_medium=referral-link&amp;utm_content=join_my_group-160x33&amp;utm_campaign=referrals-group
</a>&gt;<br>&gt;<br>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; -------------------------------------------------------------------------<br>&gt; This SF.net email is sponsored by DB2 Express
<br>&gt; Download DB2 Express C - the FREE version of DB2 express and take<br>&gt; control of your XML. No limits. Just data. Click to get it now.<br>&gt; <a href="http://sourceforge.net/powerbar/db2/">http://sourceforge.net/powerbar/db2/
</a><br>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________<br>&gt; openMosix-devel mailing list<br>&gt; <a href="mailto:openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org">
openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org</a><br>&gt; <a href="https://lists.sourceforge.net/lists/listinfo/openmosix-devel">https://lists.sourceforge.net/lists/listinfo/openmosix-devel</a><br>&gt;<br><br><br>--<br><a href="http://www.openQRM.org">
www.openQRM.org</a><br>- Keeps your Data-Center Up and Running<br><br>Matt&#39;s blog - <a href="http://mattinaction.blogspot.com/">http://mattinaction.blogspot.com/</a><br><br><br><br></blockquote></div><br><br clear="all">
<br>-- <br>Wes Wagner<br><br>Join a libertarian network of person-to-person lending on Prosper:<br> <br><a href="http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&amp;referrer=AiriusTorpora&amp;utm_source=referrer-AiriusTorpora&amp;utm_medium=referral-link&amp;utm_content=join_my_group-160x33&amp;utm_campaign=referrals-group">
http://www.prosper.com/groups/group_home.aspx?group_short_name=freelibertarians&amp;referrer=AiriusTorpora&amp;utm_source=referrer-AiriusTorpora&amp;utm_medium=referral-link&amp;utm_content=join_my_group-160x33&amp;utm_campaign=referrals-group
</a>

------=_Part_63871_8682337.1184853531287--


--===============0764913141==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--===============0764913141==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
openMosix-devel mailing list
openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/openmosix-devel

--===============0764913141==--