search for: yonatan

Displaying 20 results from an estimated 21 matches for "yonatan".

Did you mean: yonathan
2003 Aug 24
2
[solution] chkrootkit reports infected files
...be "Teach security/chkrootkit about FreeBSD 5", but it's not my first typo today. Maintainer, please approve. Authors, please see if you can include the changes. I also fixed a minor bug in chk_vdir. Everyone else, please test it, as it was only tested on my 5.0 box. Best Regards, Yonatan
2013 Jun 16
3
Transparent IMAP proxy
Hi, I'm considering patching Dovecot to work as a transparent (and virus scanning) IMAP proxy. What is the appropriate feature to extend? (I've considered the following: IMAPC and reverse proxying, with IMAPC looking more promising since it actually parses IMAP communication). Can anyone who is familiar with the IMAPC code recommend what are the most appropriate locations in the
2011 Jul 24
4
lots of small files in a folder on Linux centos
...owner on "his side". long story short, how should i explain in the most simple way in plain english that having that much files in a folder will cause a server to work slower? pros vs cons of having a large amount of small files in the same folder on Linux Centos? -- Best Regards, Yonatan Pingle RHCT | RHCSA | CCNA1
2023 Feb 14
2
[PATCH 1/2] python: Avoid crash if callback parameters cannot be built
...to the Python event callback fails, args was returned as NULL. We immediately tried to call Py_INCREF on this which crashed. Returning NULL means the Python function threw an exception, so print the exception and return (there is no way to return an error here - the event is lost). Reported-by: Yonatan Shtarkman See: https://listman.redhat.com/archives/libguestfs/2023-February/030653.html --- python/handle.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/python/handle.c b/python/handle.c index c8752baf47..f37e939e03 100644 --- a/python/handle.c +++ b/python/handle.c...
2023 Feb 14
1
Issue with downloading files whose path contains multi-byte utf-8 characters
On Tue, Feb 14, 2023 at 08:02:59PM +0200, Yonatan Shtarkman wrote: > The attached code snippet?reproduces the issue when running: > python3 libugestfs_segfault_repro.py > > With: > guestfs version: 1.48.6 > guestfs-python version: 1.48.6 Can confirm with {python3-,}libguestfs-1.51.1-1.fc39.x86_64 The stack trace is roughly the...
2006 Feb 21
1
IE6 encodings on wine
Hi I have this problem with wine (0.9.7): I installed IE6 ok with winetools (and also again with sidenet), but the view>encodings menu only contains one entry, 'None'. Any clue on the matter will be appreciated Yonatan Oren
2023 Feb 14
2
[PATCH 2/2] python: Use bytes instead of str for event callback buffer
...rmed (eg) UTF-8 but could contain any old byte sequence. In the test case provided by the reported, we failed to encode the buffer as str with this error: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc3 in position 137: unexpected end of data Use bytes instead. Reported-by: Yonatan Shtarkman See: https://listman.redhat.com/archives/libguestfs/2023-February/030653.html --- python/handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/handle.c b/python/handle.c index f37e939e03..bf639b5789 100644 --- a/python/handle.c +++ b/python/handle.c @@ -131,...
2023 Feb 13
3
Issue with downloading files whose path contains multi-byte utf-8 characters
On Sun, Feb 12, 2023 at 03:31:08PM +0200, Yonatan Shtarkman wrote: > Hey, > When downloading a file whose path contains multi-byte utf-8, libguestfs > sometimes crashes. > This reproduces when using python, and not when using guestfish. > > Code to reproduce: > for i in range(2000): > ? ? g.download ('/xxx?', '...
2009 Sep 01
1
permutation and reshuffling
Hi, I'm looking for an efficient code that will enable me to reshuffle data (phenotype) for certain number of individuals and creating a loop that will randomly simulate it for 10000 times *(permutation)*. I also need to find how I keep the information (p value for each SNP) gathered for all the 10000 iterations. My data set looks like this (n=500): Individual # Phenotype SNP1 SNP2
2009 Aug 31
1
permutation test - query
Hi, My query is regarding permutation test and reshuffling of genotype/phenotype data I have been using the haplo.stats package of R. for haplotype analysis and I would like to perform an analysis which I'm requesting your advice. I have a data set of individuals genotyped for 12 SNP and a dichotomous phenotype. At first, I have tested each of those SNP independently in order to bypass
2011 Feb 25
1
Detecting harddrive problem
Hi all, Recently I realize the filesystem became Read-only and there is "media error" message in the system log. It has passed several days without notice. I'm thinking of setting up a script to grep that "media error" and send email. Is there more elegant way of doing this? Thank you.
2011 Jun 13
1
Bash rotating tab completion with list
I just got off a Windows 7 terminal which has rotating tab completion, this means that in the case of completion ambiguity the shell completes one of the possibilities, and subsequent tabs complete to different possibilities. This in contrast to bash's behaviour of simply printing a list of possibilities. Googling I have found that bash can in fact have rotating completion by setting
2013 Jun 13
1
IMAPC feature description
Hi, I couldn't find any decent documentation about the IMAPC feature. Could someone please explain the purpose of this feature? In particular, what are the differences between IMAPC and reverse proxying? Thanks.
2011 Feb 20
3
Problem with timezone configuration
Hello, I have a problem configuring the timezone on a CentOS 5.5 server. I would like the timezone to be Europe/Paris. I have followed the steps described here: http://www.wikihow.com/Change-the-Timezone-in-Linux I think I have changed the appropriate configuration files ( /etc/localtime, /etc/sysconfig/clock ), but the output of the ?date? command still indicates the timezone is EST. [root
2023 Feb 17
1
[PATCH 1/2] python: Avoid crash if callback parameters cannot be built
...rned as NULL. We immediately tried to call > > Py_INCREF on this which crashed. Returning NULL means the Python > > function threw an exception, so print the exception and return (there > > is no way to return an error here - the event is lost). > > > > Reported-by: Yonatan Shtarkman > > See: https://listman.redhat.com/archives/libguestfs/2023-February/030653.html > > --- > > python/handle.c | 9 ++++++--- > > 1 file changed, 6 insertions(+), 3 deletions(-) > > > > diff --git a/python/handle.c b/python/handle.c > > index c87...
2023 Feb 12
1
Issue with downloading files whose path contains multi-byte utf-8 characters
Hey, When downloading a file whose path contains multi-byte utf-8, libguestfs sometimes crashes. This reproduces when using python, and not when using guestfish. Code to reproduce: for i in range(2000): g.download ('/xxx?', '/tmp/1') #0 raise (sig=<optimized out>) at ../sysdeps/unix/sysv/linux/raise.c:50 #1 0x00007ffff7fac140 in <signal handler called> () at
2011 Feb 22
6
how to optimize CentOS XEN dom0?
Hi, I have a problematic CentOS XEN server and hope someone could point me in the right direction to optimize it a bit. The server runs on a Core2Quad 9300, with 8GB RAM (max motherboard can take, 1U chassis) on an Intel motherboard with a 1TB SATA HDD. dom0 is set to 512MB limit with a few small XEM VM's running: root at zaxen01:[~]$ xm list Name ID
2012 Apr 11
5
URGENT -- pseudo network interface creating problem with dhcp-- centos 5.5
Group, My linux box, running with Centos-5.5, is showing up (??) a pseudo network interface for Eth0. On Switch where my Eth0 is connected, observed 2 MAC-Addresses. If a DHCP server present in LAN, the second pseudo interface is picking up a DHCP IP Address too. Furthermore you can ping both Eth0 ip and Psedo Eth0 IP from the switch. The intensity of the problem is more when port-security is
2011 Feb 23
12
Alternative to cPanel
Hello all, I'm looking to setup a new CentOS box for a buddy of mine who wants to do hosting on a server via CoLo, Years ago I whipped up a CP of my own on a Debian box he colo'd running a basterdized qmail/tinydns and custom built httpd/mysql/etc (I was young). It worked ok but time to move on and I don't have time to maintain all those packages. I also don't have time to write
2009 Sep 01
1
Logistic Politomic Regression in R
...slot that isn't a       slot() (Paul Hiemstra)   74. Re: SVM coefficients (Achim Zeileis)   75. Re: Computer Modern Fonts in R graphic (Liviu Andronic)   76. Re: Best R text editors? (Martin Maechler)   77. Re: test for bimodality&In-Reply-To= (Mark Difford)   78. permutation test - query (Yonatan Nissenbaum)   79. Re: Google's R Style Guide (David Scott) ---------------------------------------------------------------------- Message: 1 Date: Sun, 30 Aug 2009 12:28:05 +0200 From: Uli Kleinwechter <ulikleinwechter@yahoo.com.mx> Subject: Re: [R] Best R text editors? To: r-help@r-pr...