Re: Public key authentication from QEMU

2008-12-28 Thread Valery Reznic
--- On Thu, 12/25/08, Yedidyah Bar-David wrote: > From: Yedidyah Bar-David > Subject: Re: Public key authentication from QEMU > To: "Valery Reznic" > Cc: linux-il@cs.huji.ac.il > Date: Thursday, December 25, 2008, 6:20 PM > On Thu, Dec 25, 2008 at 07:35:34AM -0800, Valery Reznic > wrote: > >

Re: Anything like Terracotta that can be used from Perl?

2008-12-28 Thread Gabor Szabo
Probably you are better off asking it on some Perl oriented mailing list or even on Stack Overflow. Gabor On Tue, Dec 23, 2008 at 11:58 AM, Amos Shapira wrote: > Hello, > > I've just stumbled (again) on Terracotta (http://www.terracotta.org/) > which is a "Network Attached Memory" - i.e. it prov

Re: Public key authentication from QEMU [PARTIALLY SOLVED]

2008-12-28 Thread Valery Reznic
--- On Thu, 12/25/08, Erez D wrote: > From: Erez D > Subject: Re: Public key authentication from QEMU > To: "Yedidyah Bar-David" > Cc: "Valery Reznic" , linux-il@cs.huji.ac.il > Date: Thursday, December 25, 2008, 6:52 PM > the usual route for me is to > > 1. on your vmware/qemu generate key

Last Day Reminder - Re: Welcome to Linux: "Development Tools for Linux" on Sunday, 28-Dec-2008

2008-12-28 Thread Shlomi Fish
This is a last day reminder that the Tel Aviv Linux club/Welcome to Linux presentation about "Development tools for Linux" will take place today at 18:30. More information at the quoted message below. Regards, -- Shlomi Fish On Tue, Dec 23, 2008 at 1:27 PM, Shlomi Fish wrote: > As part of the W

Re: Anything like Terracotta that can be used from Perl?

2008-12-28 Thread Amos Shapira
2008/12/28 Gabor Szabo : > Probably you are better off asking it on some Perl oriented mailing list or > even on Stack Overflow. Thanks for the pointer. Can you be more specific about the Perl lists? I never was lucky with the local perl lists I tried so far. I found stack overflow at http://sta

Re: digital TV cards

2008-12-28 Thread Erez D
On Sat, Dec 27, 2008 at 11:15 PM, Geoffrey S. Mendelson wrote: > On Sat, Dec 27, 2008 at 10:44:44PM +0200, Erez D wrote: > >> The ideal case for you is to use a dvb-s/dvb-s2 card, a card reader and a >> YES smart card. >> you will not need an STB (memir) for this, and you get the digital signal >>

Re: bash q -substitution

2008-12-28 Thread Erez D
On Sun, Dec 28, 2008 at 12:00 AM, Oleg Goldshmidt wrote: > On Sat, Dec 27, 2008 at 10:47 PM, Erez D wrote: > > > > > > On Fri, Dec 26, 2008 at 11:15 PM, Oleg Goldshmidt > > wrote: > >> > >> Well, if you insist, assuming that all the files have > >> "input_" in the beginning, you can use > >> ${p

Fixing the PySolFC Build Process With Python 2.6

2008-12-28 Thread Shlomi Fish
Hi all! When I try to run "python setup.py bdist_rpm" on the PySolFC trunk: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk/ I'm getting the following errors: {{{ running build_scripts creating build/scripts-2.6 copying and adjusting pysol.py -> build/scripts-2.6 chang

Re: Fixing the PySolFC Build Process With Python 2.6

2008-12-28 Thread Shlomi Fish
On Sunday 28 December 2008, Shlomi Fish wrote: > Hi all! > > When I try to run "python setup.py bdist_rpm" on the PySolFC trunk: > > https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk/ > > I'm getting the following errors: > Found it! Had to do "make rpm" instead of "python setup.p

detecting how many memory sticks(RAM) from command line

2008-12-28 Thread Dan Shimshoni
Hello, Is there some command line in linux for detecting how many memory sticks(RAM) the machine has ? For example, suppose cat /proc/meminfo shows MemTotal: 960700 kB. Can I know whether it is one RAM stick , two RAM sticks , or more ? (without opening the box - this is not for lazies...)

Re: detecting how many memory sticks(RAM) from command line

2008-12-28 Thread Vitaly
dmidecode? On Sun, Dec 28, 2008 at 4:52 PM, Dan Shimshoni wrote: > Hello, > Is there some command line in linux for > detecting how many memory sticks(RAM) the machine has ? > For example, suppose cat /proc/meminfo shows MemTotal: 960700 kB. > Can I know whether it is one RAM stick , two

Re: detecting how many memory sticks(RAM) from command line

2008-12-28 Thread Erez D
as root: lshw cheers, erez. On Sun, Dec 28, 2008 at 4:52 PM, Dan Shimshoni wrote: > Hello, > Is there some command line in linux for > detecting how many memory sticks(RAM) the machine has ? > For example, suppose cat /proc/meminfo shows MemTotal: 960700 kB. > Can I know whether it is

Re: detecting how many memory sticks(RAM) from command line

2008-12-28 Thread Matan Ziv-Av
On Sun, 28 Dec 2008, Dan Shimshoni wrote: Hello, Is there some command line in linux for detecting how many memory sticks(RAM) the machine has ? Something like: ls /sys/bus/i2c/devices/*/driver -l | grep eeprom | wc -l This depends on having the correct i2c modules installed -- Matan Ziv-A

Re: bash q -substitution

2008-12-28 Thread Ehud Karni
On Sun, 28 Dec 2008 13:21:59 Erez D wrote: > > On Sun, Dec 28, 2008 at 12:00 AM, Oleg Goldshmidt wrote: > > > >> > > >> $ basename ${foo/*input_/} .txt > > >> > > this is a solution speceific to the .txt being preceided by the 000. > (it will not work on path/input_000_xyz.txt). > > i just wanted t

Re: detecting how many memory sticks(RAM) from command line

2008-12-28 Thread Lior Kaplan
I think you can use lshw to see that information. I think it takes it data from /sys. On Sun, December 28, 2008 4:52 pm, Dan Shimshoni wrote: > Hello, > Is there some command line in linux for > detecting how many memory sticks(RAM) the machine has ? > For example, suppose cat /proc/meminfo shows