Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Muli Ben-Yehuda
On Mon, Aug 28, 2006 at 11:21:36PM +0300, Gil Freund wrote: I was asked about putting a firewall in Virtual Server environment. As far as I can tell, XEN will allow me to assign a NIC as a PCI desvice to a DomU. Yes, but that makes the domU trusted (an attacker with root access ot the domU

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Muli Ben-Yehuda
On Tue, Aug 29, 2006 at 12:17:53AM +0300, Shachar Shemesh wrote: If you do set it up like that (and I did), please be sure to turn off hardware checksum generation for TCP/IP, or you'll have trouble connecting from the Xen machines that are behind the firewall to the internet There were

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Shachar Shemesh
Muli Ben-Yehuda wrote: On Tue, Aug 29, 2006 at 12:17:53AM +0300, Shachar Shemesh wrote: If you do set it up like that (and I did), please be sure to turn off hardware checksum generation for TCP/IP, or you'll have trouble connecting from the Xen machines that are behind the firewall to

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Shachar Shemesh
Muli Ben-Yehuda wrote: On Tue, Aug 29, 2006 at 12:17:53AM +0300, Shachar Shemesh wrote: If you do set it up like that (and I did), please be sure to turn off hardware checksum generation for TCP/IP, or you'll have trouble connecting from the Xen machines that are behind the firewall to

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Muli Ben-Yehuda
On Tue, Aug 29, 2006 at 11:36:27AM +0300, Shachar Shemesh wrote: Solution: RTFM ethtool for the command line option to disable hardware offloading of checksum calculation. ethtool -K ethN tx off Muli, This seems to me like a conceptual bug in the way Xen determines which is the true

Re: making a sed recursive

2006-08-29 Thread Avraham Rosenberg
On Mon, Aug 28, 2006 at 08:53:58PM +0300, Aaron Mehl wrote: Hi all, I have sed finding and replacing for me. Thanks to Alex and Tzafrir for your help :) but I need to do it for a whole directory of files. I found a script that uses sed for another recursive task and tried to

RE: making a sed recursive

2006-08-29 Thread Dan Bar Dov
-Original Message- [snip] = 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] Hi, Does your script

Windows PowerShell

2006-08-29 Thread Nadav Har'El
During random browsing of Wikipedia, I came across the following article: http://en.wikipedia.org/wiki/PowerShell It's about Microsoft's new shell for Windows. I'm afraid to say, their basic idea sounds very interesting: build a shell similar in spirit to the Unix shells, but instead of

Re: Windows PowerShell

2006-08-29 Thread Shachar Shemesh
Nadav Har'El wrote: During random browsing of Wikipedia, I came across the following article: http://en.wikipedia.org/wiki/PowerShell It's about Microsoft's new shell for Windows. I'm afraid to say, their basic idea sounds very interesting: build a shell similar in spirit to the Unix

Re: Windows PowerShell

2006-08-29 Thread Yosef Meller
ציטוט Nadav Har'El: During random browsing of Wikipedia, I came across the following article: http://en.wikipedia.org/wiki/PowerShell It's about Microsoft's new shell for Windows. I'm afraid to say, their basic idea sounds very interesting: build a shell similar in spirit to the Unix

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Oleg Goldshmidt
Gil Freund [EMAIL PROTECTED] writes: I was asked about putting a firewall in Virtual Server environment. You may be interested in this VMware appliance[1,2] http://www.vmware.com/vmtn/appliances/directory/245 - a winning entry (3rd prize) to the VMware Ultimate Virtual Appliance Challenge,

Re: Windows PowerShell

2006-08-29 Thread Ira Abramov
Quoting Shachar Shemesh, from the post of Tue, 29 Aug: Nadav Har'El wrote: idea sounds very interesting: build a shell similar in spirit to the Unix shells, but instead of having pipelines which pass unstructured text between them, pass objects between the commands. When I first

Re: Windows PowerShell

2006-08-29 Thread Nadav Har'El
On Tue, Aug 29, 2006, Shachar Shemesh wrote about Re: Windows PowerShell: During random browsing of Wikipedia, I came across the following article: http://en.wikipedia.org/wiki/PowerShell .. When I first came across the idea, I thought it was quite stupid. The entire power behind the

Re: Windows PowerShell

2006-08-29 Thread Nadav Har'El
On Tue, Aug 29, 2006, Yosef Meller wrote about Re: Windows PowerShell: During random browsing of Wikipedia, I came across the following article: http://en.wikipedia.org/wiki/PowerShell .. There's psh, that is based on Perl, and therefor theoretically allows you to use the whole of

Re: Windows PowerShell

2006-08-29 Thread Nadav Har'El
On Tue, Aug 29, 2006, Ira Abramov wrote about Re: Windows PowerShell: today, if I want to know which one of my processes is the highest memory eater, I run ps | grep my username | sort by the size field With powershell, you get an array of objects of class process, iterate to find the ones

Re: Windows PowerShell

2006-08-29 Thread Oded Arbel
On Tue, 2006-08-29 at 16:18 +0300, Nadav Har'El wrote: On Tue, Aug 29, 2006, Yosef Meller wrote about Re: Windows PowerShell: During random browsing of Wikipedia, I came across the following article: http://en.wikipedia.org/wiki/PowerShell .. There's psh, that is based on Perl,

Re: Windows PowerShell

2006-08-29 Thread Shachar Shemesh
Nadav Har'El wrote: Even in unix, you need several parts of the command line to cooperate. For example, ls | ps It's a silly example. If you cannot answer what do I want this to do, then the fact it doesn't do anything is meaningless. A little less silly example is ps |

Re: Windows PowerShell

2006-08-29 Thread Ira Abramov
Quoting Shachar Shemesh, from the post of Tue, 29 Aug: As I said before, sort is a problematic one, as it doesn't know how to deal with columns that are not the first one, or with stuff such as comparing 8M to 5G. All of those problems can be solved with enough you should read the sort

Re: Windows PowerShell

2006-08-29 Thread Matan Ziv-Av
On Tue, 29 Aug 2006, Shachar Shemesh wrote: No cooperation from ps is necessary. I'll grant you that sort is a problematic one, as it can only sort on the beginning of the row, but That's not correct, at least for sort from GNU core utilities. See -k and -t options. -- Matan.

Re: Windows PowerShell

2006-08-29 Thread Oleg Goldshmidt
Nadav Har'El [EMAIL PROTECTED] writes: I wouldn't like to see these ideas replace the current unix text-based pipelines, and idea which I love (and even preach), but I still think it's an interesting idea to think about. Maybe one could interest you in scsh (http://www.scsh.net/) ? -- Oleg

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Gil Freund
On 8/29/06, Oleg Goldshmidt [EMAIL PROTECTED] wrote: Gil Freund [EMAIL PROTECTED] writes: I was asked about putting a firewall in Virtual Server environment. You may be interested in this VMware appliance[1,2] This means it's doable. My concern is Is it wise to do it?.

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Gil Freund
On 8/29/06, Muli Ben-Yehuda [EMAIL PROTECTED] wrote: On Mon, Aug 28, 2006 at 11:21:36PM +0300, Gil Freund wrote: I was asked about putting a firewall in Virtual Server environment. As far as I can tell, XEN will allow me to assign a NIC as a PCI desvice to a DomU. Yes, but that makes the

Re: Gentoo is about to drop hspell support

2006-08-29 Thread Dan Armak
On Sunday 27 August 2006 22:37, Mycroft wrote: It is not that I am reluctant to be the maintainer for hspell. There is much more about being a full-blown Gentoo dev, other than version-bumping the packages I use. As far as I know, you can choose the category to work on, but you can't become a

Re: Virtual firewalls (Xen/VMware)

2006-08-29 Thread Muli Ben-Yehuda
On Tue, Aug 29, 2006 at 08:37:13PM +0300, Gil Freund wrote: Yes, but that makes the domU trusted (an attacker with root access ot the domU can easily take down the entire machine - unless you have an isolation capable IOMMU) Can you elaborate a little more? Does this mean that if the

Re: Windows PowerShell

2006-08-29 Thread Amos Shapira
On 30/08/06, Matan Ziv-Av [EMAIL PROTECTED] wrote: That's not correct, at least for sort from GNU core utilities. See -k and-t options.Field-based sort is supported by UNIX sort. Here is an example evidence from 1997: http://raven.utc.edu/cgi-bin/WA.EXE?A2=ind9706cL=hp3000-lH=1P=16971--Amos--

OFFTOPIC: credit card processing service questions

2006-08-29 Thread Hetz Ben Hamo
Hi, A friend of mine is working from home as a consultant (not computer related issues). She's in her early stage and the amount of money she's making these days is pretty small (few thousand shekels at month). Since all the consulting she does is from home, her customers need to deposit into a

hebrew under latex with debian

2006-08-29 Thread Micha Feigin
I seem to recall seeing on this list that latex now uses true type fonts by default, at least for hebrew. I don't see, to see this on my latex + ivritex under debian. Is this true, is debian ivritex out of date or should I switch to texlive (although the hebrew package seems to state type1 fonts)

Re: Windows PowerShell

2006-08-29 Thread Amit Aronovitch
Nadav Har'El wrote: From these, I think that psh is far from what I'm looking for. I am not looking for a shell with a different syntax (in this case, Perl's syntax), but rather a shell whose pipelines passes not unstructured text (in a unix pipe) but rather structured objects. Such a shell

Re: making a sed recursive

2006-08-29 Thread Alex Alexander
Your code actually works for me! I tried it with some sample files I created and it worked as it should, replacing the string with % in each file. Perhaps your shell has trouble understading *.ly. Try for fl in `ls *.ly`; do .. also, the sed --in-place 's/barNumberCheck/%/g' $fl suggestion

Re: hebrew under latex with debian

2006-08-29 Thread Dan Kenigsberg
I am unfamiliar with debian, but if you have an up-to-date tetex, you don't actually need ivritex to typeset hebrew - most of Tzafrir changes are already included into CTAN's babel. Check the version of hebrew.ldf: if it is 2004/02/20 v2.3h you're fine. Then, you should only convince latex to