Re: skype and voip questions

2008-06-13 Thread sara fink
HI Amos

It seems that the iptables rules are cut. Can you post the whole lines
here? Probably when you cut and paste from nano/pico this happened.

Supernode is on what port? I had 32323 and changed it now to other non
standard port.

On Fri, Jun 13, 2008 at 4:06 AM, Amos Shapira [EMAIL PROTECTED] wrote:
 2008/6/13 sara fink [EMAIL PROTECTED]:
 What traces you ran? I need to solve it. They are pulling on me all
 the nasty things.
 tcpdump? or other things?

 Almost two years ago I was bugged by the skype uses too much traffic
 claim and setup iptable rules to track this (I used to have Skype on
 Linux in Supernode mode because it improved connectivity and quality a
 lot, I haven't bothered to set it up again after re-install and ADSL
 modem upgrade).

 Here is the summary of how I setup the iptable rules:
 http://praia-vermelha.blogspot.com/2006/09/final-iptables-setup-and-some-initial.html

 I generally remember that got the impression from the results that
 Skype doesn't use too much traffic for my ADSL link (8Mb/1Mb back when
 I ran this test).

 We use Skype between Israel (NetVision)/US/Brazil/Australia, including
 webcams, with no problems at all. Both on Windows and Linux and both
 from home and office. The latest versions for Linux improved
 reliability a lot.

 Hope this helps some.

 --Amos

 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: skype and voip questions

2008-06-13 Thread Amos Shapira
2008/6/13 sara fink [EMAIL PROTECTED]:
 HI Amos

 It seems that the iptables rules are cut. Can you post the whole lines
 here? Probably when you cut and paste from nano/pico this happened.

They look OK on my 19 wide screen, here they are from the blog:

# match all outgoing packets from gid skype, mark their connection
# and add their destination to the recent list so we can count ICMP
packets to/from them
iptables -A OUTPUT -m owner --gid-owner skype --out-interface eth0
--protocol tcp -m recent --rdest --set --name Skype -j CONNMARK
--set-mark 1
iptables -A OUTPUT -m owner --gid-owner skype --out-interface eth0
--protocol udp -m recent --rdest --set --name Skype -j CONNMARK
--set-mark 2

# count ICMP packets going to hosts which appear in our recent list
iptables -A OUTPUT --out-interface eth0 --protocol icmp -m recent
--rdest   --name Skype --update -j ACCEPT -m comment --comment
skype-out-icmp

# all packets which match the connection should go through the skype rule
iptables -A OUTPUT -m connmark --mark 1 -m comment --comment skype-out-tcp
iptables -A OUTPUT -m connmark --mark 2 -m comment --comment skype-out-udp

# match all packets on Skype's public TCP port and mark their connection
iptables -A INPUT -p tcp -m tcp --dport 21212 --in-interface eth0 -j
CONNMARK --set-mark 1
iptables -A INPUT -p udp -m udp --dport 21212 --in-interface eth0 -j
CONNMARK --set-mark 2
# count ICMP packets coming from hosts which appear in our recent list
iptables -A INPUT -p icmp --in-interface eth0 -m recent --name Skype
--update -j ACCEPT -m comment --comment skype-in-icmp

# all packets which match the connection
iptables -A INPUT -m connmark --mark 1 -m comment --comment skype-in-tcp
iptables -A INPUT -m connmark --mark 2 -m comment --comment skype-in-udp

 Supernode is on what port? I had 32323 and changed it now to other non
 standard port.

I used to have some random number assigned to it, can't remember
which. I'm pretty sure the 21212 was a cheap attempt to hide which
port my Skype was on.

I'll try to remember to look up the scripts which process the data
when I get home.

Be aware that I gave Skype its own group ID and executed it as set-gid
so iptables could match by its unique owner gid (uid owner matching
was said to crash SMP kernels).

--Amos

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Under which keywords can such systems be found?

2008-06-13 Thread Omer Zak
I am looking for a computer with small form factor (cellphone sized or
even smaller) with the following features:
1. Runs Linux.
2. RAM+disk - as needed to run a Linux system without X-Window.
3. Audio input.
4. At least one USB port.
5. Ethernet port.
6. Runs on batteries.
7. A way (such as a memory card built on another system) to install
Linux on the computer.
(Keyboard and display are not needed - programming can be done by
sshing.)

I would appreciate suggestions under which keywords to search for such a
system in Google (or in specialized product search Websites), and where
can it be obtained in Israel.
  --- Omer
-- 
One does not make peace with enemies.  One makes peace with former
enemies.
My own blog is at http://www.zak.co.il/tddpirate/

My opinions, as expressed in this E-mail message, are mine alone.
They do not represent the official policy of any organization with which
I may be affiliated in any way.
WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: skype and voip questions

2008-06-13 Thread sara fink
Thanks. My screen is 15.1.

Ill add skype group.

On Fri, Jun 13, 2008 at 10:10 AM, Amos Shapira [EMAIL PROTECTED] wrote:
 2008/6/13 sara fink [EMAIL PROTECTED]:
 HI Amos

 It seems that the iptables rules are cut. Can you post the whole lines
 here? Probably when you cut and paste from nano/pico this happened.

 They look OK on my 19 wide screen, here they are from the blog:

 # match all outgoing packets from gid skype, mark their connection
 # and add their destination to the recent list so we can count ICMP
 packets to/from them
 iptables -A OUTPUT -m owner --gid-owner skype --out-interface eth0
 --protocol tcp -m recent --rdest --set --name Skype -j CONNMARK
 --set-mark 1
 iptables -A OUTPUT -m owner --gid-owner skype --out-interface eth0
 --protocol udp -m recent --rdest --set --name Skype -j CONNMARK
 --set-mark 2

 # count ICMP packets going to hosts which appear in our recent list
 iptables -A OUTPUT --out-interface eth0 --protocol icmp -m recent
 --rdest   --name Skype --update -j ACCEPT -m comment --comment
 skype-out-icmp

 # all packets which match the connection should go through the skype rule
 iptables -A OUTPUT -m connmark --mark 1 -m comment --comment skype-out-tcp
 iptables -A OUTPUT -m connmark --mark 2 -m comment --comment skype-out-udp

 # match all packets on Skype's public TCP port and mark their connection
 iptables -A INPUT -p tcp -m tcp --dport 21212 --in-interface eth0 -j
 CONNMARK --set-mark 1
 iptables -A INPUT -p udp -m udp --dport 21212 --in-interface eth0 -j
 CONNMARK --set-mark 2
 # count ICMP packets coming from hosts which appear in our recent list
 iptables -A INPUT -p icmp --in-interface eth0 -m recent --name Skype
 --update -j ACCEPT -m comment --comment skype-in-icmp

 # all packets which match the connection
 iptables -A INPUT -m connmark --mark 1 -m comment --comment skype-in-tcp
 iptables -A INPUT -m connmark --mark 2 -m comment --comment skype-in-udp

 Supernode is on what port? I had 32323 and changed it now to other non
 standard port.

 I used to have some random number assigned to it, can't remember
 which. I'm pretty sure the 21212 was a cheap attempt to hide which
 port my Skype was on.

 I'll try to remember to look up the scripts which process the data
 when I get home.

 Be aware that I gave Skype its own group ID and executed it as set-gid
 so iptables could match by its unique owner gid (uid owner matching
 was said to crash SMP kernels).

 --Amos

 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Under which keywords can such systems be found?

2008-06-13 Thread Shachar Shemesh

Omer Zak wrote:

I am looking for a computer with small form factor (cellphone sized or
even smaller) with the following features:
1. Runs Linux.
2. RAM+disk - as needed to run a Linux system without X-Window.
3. Audio input.
4. At least one USB port.
5. Ethernet port.
6. Runs on batteries.
7. A way (such as a memory card built on another system) to install
Linux on the computer.
(Keyboard and display are not needed - programming can be done by
sshing.)

I would appreciate suggestions under which keywords to search for such a
system in Google (or in specialized product search Websites), and where
can it be obtained in Israel.
  --- Omer
  

Two questions (Spanish inquisition non-withstanding).
1. How much do you want to pay for it?
2. Does it have to be Intel based?
3. How many units do you need?
4. USB host or device?

Any computer on a chip system can provide you with everything you 
asked for (well, you will need to adapt the battery yourself, but the 
voltage and, more importantly, amperage are compatible with battery 
operation). They should all have USB device support, I'm not sure 
whether it can be easily turned into USB host support or not. 
Development boards can go as low as 300$ for a board with hardly enough 
RAM to run Linux,  and start climbing from there.


And best of all, if your answer to 3 is a lot, the prices drop to 
peanuts.


Shachar

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Under which keywords can such systems be found?

2008-06-13 Thread Omer Zak
On Fri, 2008-06-13 at 11:57 +0300, Shachar Shemesh wrote:
 Omer Zak wrote:
  I am looking for a computer with small form factor (cellphone sized or
  even smaller) with the following features:
  1. Runs Linux.
  2. RAM+disk - as needed to run a Linux system without X-Window.
  3. Audio input.
  4. At least one USB port.
  5. Ethernet port.
  6. Runs on batteries.
  7. A way (such as a memory card built on another system) to install
  Linux on the computer.
  (Keyboard and display are not needed - programming can be done by
  sshing.)
 
  I would appreciate suggestions under which keywords to search for such a
  system in Google (or in specialized product search Websites), and where
  can it be obtained in Israel.
--- Omer

 Two questions (Spanish inquisition non-withstanding).
 1. How much do you want to pay for it?

Less than Asus EeePC.

 2. Does it have to be Intel based?

No, but it needs to be supported by Debian.

I see that two just became two squared. :-)

 3. How many units do you need?

One - for experiments and prototyping.

 4. USB host or device?

USB host, as I want to connect USB devices to it.

 Any computer on a chip system can provide you with everything you 
 asked for (well, you will need to adapt the battery yourself, but the 
 voltage and, more importantly, amperage are compatible with battery 
 operation).

Thanks for the keyword suggestion.
   --- Omer
-- 
One does not make peace with enemies.  One makes peace with former
enemies.
My own blog is at http://www.zak.co.il/tddpirate/

My opinions, as expressed in this E-mail message, are mine alone.
They do not represent the official policy of any organization with which
I may be affiliated in any way.
WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Under which keywords can such systems be found?

2008-06-13 Thread Matan Ziv-Av

On Fri, 13 Jun 2008, Omer Zak wrote:


I am looking for a computer with small form factor (cellphone sized or
even smaller) with the following features:
1. Runs Linux.
2. RAM+disk - as needed to run a Linux system without X-Window.
3. Audio input.
4. At least one USB port.
5. Ethernet port.
6. Runs on batteries.
7. A way (such as a memory card built on another system) to install
Linux on the computer.
(Keyboard and display are not needed - programming can be done by
sshing.)

I would appreciate suggestions under which keywords to search for such a
system in Google (or in specialized product search Websites), and where
can it be obtained in Israel.


Something like tiny linux computer should give you a lot of options. 
Though I don't know of any example that includes all your requested 
features.



--
Matan Ziv-Av. [EMAIL PROTECTED]


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Where can I rent computers?

2008-06-13 Thread David D

Hello,
I need to lease several linux computers, preferably connected
into a cluster for a CPU intensive project. The computers have to be
located here, in Israel. Can anyone give me any suggestions, company names etc. 
(either to this list, or privately)?

Thanks a lot


  

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



RE: Under which keywords can such systems be found?

2008-06-13 Thread ronys
Hi,

A friend of mine (in Israel) worked with these a couple of years ago - no
idea how he bought them, though:

http://www.gumstix.com/

HTH,

Rony

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Omer Zak
Sent: Friday, June 13, 2008 10:44 AM
To: linux-il
Subject: Under which keywords can such systems be found?

I am looking for a computer with small form factor (cellphone sized or
even smaller) with the following features:
1. Runs Linux.
2. RAM+disk - as needed to run a Linux system without X-Window.
3. Audio input.
4. At least one USB port.
5. Ethernet port.
6. Runs on batteries.
7. A way (such as a memory card built on another system) to install
Linux on the computer.
(Keyboard and display are not needed - programming can be done by
sshing.)

I would appreciate suggestions under which keywords to search for such a
system in Google (or in specialized product search Websites), and where
can it be obtained in Israel.
  --- Omer
-- 
One does not make peace with enemies.  One makes peace with former
enemies.
My own blog is at http://www.zak.co.il/tddpirate/

My opinions, as expressed in this E-mail message, are mine alone.
They do not represent the official policy of any organization with which
I may be affiliated in any way.
WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



RE: Under which keywords can such systems be found?

2008-06-13 Thread Omer Zak
On Fri, 2008-06-13 at 15:07 +0300, ronys wrote:
 Hi,
 
 A friend of mine (in Israel) worked with these a couple of years ago - no
 idea how he bought them, though:
 
 http://www.gumstix.com/

The comment about buying Gumstix stuff is pertinent - in their Web site,
Israel is not listed among the countries, to which they ship directly.
If any Linux-IL subscriber represents Gumstix in Israel, please stand
up.

 --- Omer
-- 
You haven't made an impact on the world before you caused a Debian
release to be named after Snufkin.
My own blog is at http://www.zak.co.il/tddpirate/

My opinions, as expressed in this E-mail message, are mine alone.
They do not represent the official policy of any organization with which
I may be affiliated in any way.
WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



RE: Where can I rent computers?

2008-06-13 Thread ronys
Hi David,

If you’re willing to waive the location restriction, you might wish to check
out Amazon's Elastic Compute Cloud: http://aws.amazon.com/ec2

Rony 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of David D
Sent: Friday, June 13, 2008 2:58 PM
To: linux-il@cs.huji.ac.il
Subject: Where can I rent computers?


Hello,
I need to lease several linux computers, preferably connected
into a cluster for a CPU intensive project. The computers have to be
located here, in Israel. Can anyone give me any suggestions, company names
etc. (either to this list, or privately)?

Thanks a lot


To unsubscribe, 
send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Where can I rent computers?

2008-06-13 Thread David D

Unfortunately I cannot waive the location restriction, as it is posed by the 
man with the bucks (actually, the man with the NIS's)


- Original Message 
From: ronys [EMAIL PROTECTED]
To: David D [EMAIL PROTECTED]
Cc: linux-il@cs.huji.ac.il
Sent: Friday, June 13, 2008 3:48:18 PM
Subject: RE: Where can I rent computers?

Hi David,

If you¢re willing to waive the location restriction, you might wish to check
out Amazon's Elastic Compute Cloud: http://aws.amazon.com/ec2

Rony 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of David D
Sent: Friday, June 13, 2008 2:58 PM
To: linux-il@cs.huji.ac.il
Subject: Where can I rent computers?


Hello,
I need to lease several linux computers, preferably connected
into a cluster for a CPU intensive project. The computers have to be
located here, in Israel. Can anyone give me any suggestions, company names
etc. (either to this list, or privately)?

Thanks a lot


  
=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Where can I rent computers?

2008-06-13 Thread David D

Several clarifications due to the various questions that I have received:

 - there is a hard limitation, posed by the financing authority, that all 
service providers (kablane mishne) reside in Israel
 - the requested cluster has to run several CPU-intensive number crunching 
programs written especially for the project
 - the SW is not necessarily parallelized, so  a bunch of individual computers 
(SMP?), not combined into a cluster will do the  job.
 - the cluster has to be *nix operated
 - obtaining root access to the cluster is a plus


- Original Message 
From: David D [EMAIL PROTECTED]
To: linux-il@cs.huji.ac.il
Sent: Friday, June 13, 2008 2:58:14 PM
Subject: Where can I rent computers?


Hello,
I need to lease several linux computers, preferably connected
into a cluster for a CPU intensive project. The computers have to be
located here, in Israel. Can anyone give me any suggestions, company names etc. 
(either to this list, or privately)?

Thanks a lot


  

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


  

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



[JOB] Trinity needs Kernel/Drivers people

2008-06-13 Thread Ira Abramov
Hi people,
Trinity Software took over MontaVista Linux representation in Israel a
few months ago and their project portfolio is bursting. they are looking
for more kernel hackers, and especially driver experts for the embedded
system projects they deliver.

So send your resumes to gil (at) trinity.co.il :)

Shabat Shalom,
Ira.


-- 
SpamBot collectors' item
Ira Abramov
http://ira.abramov.org/email/

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Where can I rent computers?

2008-06-13 Thread Hetz Ben Hamo
Hello David,

I don't know anyone who rent PC's, but if it's even for few months,
it would (IMHO) be easier to buy a bunch of no-name PC's with
dual-core processors, and after the job is done to either contribute
or selling them (if it's quite, I'll buy one).

Thanks,
Hetz

On Fri, Jun 13, 2008 at 4:01 PM, David D [EMAIL PROTECTED] wrote:

 Several clarifications due to the various questions that I have received:

  - there is a hard limitation, posed by the financing authority, that all 
 service providers (kablane mishne) reside in Israel
  - the requested cluster has to run several CPU-intensive number crunching 
 programs written especially for the project
  - the SW is not necessarily parallelized, so  a bunch of individual 
 computers (SMP?), not combined into a cluster will do the  job.
  - the cluster has to be *nix operated
  - obtaining root access to the cluster is a plus


 - Original Message 
 From: David D [EMAIL PROTECTED]
 To: linux-il@cs.huji.ac.il
 Sent: Friday, June 13, 2008 2:58:14 PM
 Subject: Where can I rent computers?


 Hello,
 I need to lease several linux computers, preferably connected
 into a cluster for a CPU intensive project. The computers have to be
 located here, in Israel. Can anyone give me any suggestions, company names 
 etc. (either to this list, or privately)?

 Thanks a lot




 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]




 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]





-- 
Skepticism is the lazy person's default position.
my blog (hebrew): http://benhamo.org

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Where can I rent computers?

2008-06-13 Thread Marc Volovic

alltrade is willing to rent a full cluster lab including setup

m

ps i am not affiliated w/alltrade in any way


On Jun 13, 2008, at 4:37 PM, David D wrote:



Unfortunately I cannot waive the location restriction, as it is  
posed by the man with the bucks (actually, the man with the NIS's)



- Original Message 
From: ronys [EMAIL PROTECTED]
To: David D [EMAIL PROTECTED]
Cc: linux-il@cs.huji.ac.il
Sent: Friday, June 13, 2008 3:48:18 PM
Subject: RE: Where can I rent computers?

Hi David,

If you¢re willing to waive the location restriction, you might wish  
to check

out Amazon's Elastic Compute Cloud: http://aws.amazon.com/ec2

Rony

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
]

On Behalf Of David D
Sent: Friday, June 13, 2008 2:58 PM
To: linux-il@cs.huji.ac.il
Subject: Where can I rent computers?


Hello,
I need to lease several linux computers, preferably connected
into a cluster for a CPU intensive project. The computers have to be
located here, in Israel. Can anyone give me any suggestions, company  
names

etc. (either to this list, or privately)?

Thanks a lot



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



---MAV
Marc  
Volovic 
  marc 
@swiftouch.com
CTO 
+ 
972-54-467-6764






To unsubscribe, 
send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Under which keywords can such systems be found?

2008-06-13 Thread Marc Volovic
Except for the very obvious choice of the Gumstix (which is the  
smallest you can normally get), look at http://www.embeddedarm.com.


You imply an ability to execute a full devel suite on it... I suggest  
cross-compiling...


M

On Jun 13, 2008, at 12:53 PM, Omer Zak wrote:


On Fri, 2008-06-13 at 11:57 +0300, Shachar Shemesh wrote:

Omer Zak wrote:
I am looking for a computer with small form factor (cellphone  
sized or

even smaller) with the following features:
1. Runs Linux.
2. RAM+disk - as needed to run a Linux system without X-Window.
3. Audio input.
4. At least one USB port.
5. Ethernet port.
6. Runs on batteries.
7. A way (such as a memory card built on another system) to install
Linux on the computer.
(Keyboard and display are not needed - programming can be done by
sshing.)

I would appreciate suggestions under which keywords to search for  
such a
system in Google (or in specialized product search Websites), and  
where

can it be obtained in Israel.
--- Omer


Two questions (Spanish inquisition non-withstanding).
1. How much do you want to pay for it?


Less than Asus EeePC.


2. Does it have to be Intel based?


No, but it needs to be supported by Debian.

I see that two just became two squared. :-)


3. How many units do you need?


One - for experiments and prototyping.


4. USB host or device?


USB host, as I want to connect USB devices to it.


Any computer on a chip system can provide you with everything you
asked for (well, you will need to adapt the battery yourself, but the
voltage and, more importantly, amperage are compatible with battery
operation).


Thanks for the keyword suggestion.
 --- Omer
--
One does not make peace with enemies.  One makes peace with former
enemies.
My own blog is at http://www.zak.co.il/tddpirate/

My opinions, as expressed in this E-mail message, are mine alone.
They do not represent the official policy of any organization with  
which

I may be affiliated in any way.
WARNING TO SPAMMERS:  at http://www.zak.co.il/spamwarning.html


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



---MAV
Marc  
Volovic 
  marc 
@swiftouch.com
CTO 
+ 
972-54-467-6764






=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]