Displaying 20 results from an estimated 6000 matches similar to: "Forward from Laurent Julliard"
2004 Nov 18
0
FW: problem with win32 waitpid
Forward from Laurent Julliiard. Any suggestions anyone?
Dan
>From: Laurent Julliard <Laurent.Julliard@xrce.xerox.com>
>Reply-To: laurent@moldus.org
>To: djberg96@hotmail.com
>Subject: problem with win32 waitpid
>Date: Thu, 18 Nov 2004 08:49:51 +0100
>
>Dan,
>
>I am one of the developer of the FreeRIDE project (the Ruby
2005 Nov 23
8
a question about popen() performance on domU
Dear all,
When I compared the performance of some application on both a Xen domU and a standard linux machine
(where domU runs on a similar physical mahine), I notice the application runs faster on the domU
than on the physical machine. Instrumenting the application code shows the application spends more
time on popen() calls on domU than on the physical machine. I wonder if xenlinux does some
2018 Nov 13
4
Re: collectd leaks SIGCHLD == SIG_IGN into plugins
On Tue, Nov 13, 2018 at 10:04:33AM +0000, Daniel P. Berrangé wrote:
> On Fri, Nov 09, 2018 at 12:19:30PM +0000, Richard W.M. Jones wrote:
> > Peter Dimitrov and myself were debugging a very peculiar bug when
> > libguestfs is run as a plugin from collectd:
> >
> > https://www.redhat.com/archives/libguestfs/2018-November/thread.html#00023
> >
> > The long
2018 Nov 13
2
Re: [collectd] collectd leaks SIGCHLD == SIG_IGN into plugins
I was extending the virt plugin.
It already collects similar data (about VMs) using Libvirt's API, but lacks
disk usage information.
I went through some hoops to link libguestfs correctly to collectd.
Is it okay to just include fork(), waitpid() example? It does reproduce the
issue.
Best Regards,
Peter
On Tue, Nov 13, 2018 at 1:34 PM Richard W.M. Jones <rjones@redhat.com>
wrote:
2005 Oct 27
1
InstRails FAQ: FreeRIDE
Does it help to observe that in the ..\ruby\freeride directory created
by 1CI there are batch files run.bat and runw.bat that can invoke
FreeRIDE for you?
Waiting patiently but with ''bated breath for InstRails-pre3
Thanks for your continuing efforts -
DeeJay, Leicester, UK
2006 Jan 15
1
Getting started with Ruby and FreeRIDE
I have downloaded the Ruby Windows installer, installed everything, and
started FreeRIDE. The FreeRIDE documentation says:
> The first thing you''ll want to do is to create a new file. Click on File
> -> New: a new empty editor window named ''Untitled 1'' is created. Type the
> following code in the empty editor window:
>
> Click on File -> Save and
2001 Nov 25
1
How to get Civ 3 running...
Apparently it is possible to run Civilization 3 under wine, but i'm having
no luck. It installed fine, but won't run. With recent CVS winex i get:
[~/.wine/c_drive/civ3]$ wine Civilization3.exe
fixme:module:CreateProcessA (E:\~ef7194.tmp,...): CREATE_NEW_CONSOLE ignored
fixme:module:CreateProcessA (E:\~ef7194.tmp,...): NORMAL_PRIORITY_CLASS ignored
err:int:INSTR_IDT_Emulate Evil attempt
2006 Mar 17
3
Best debugger for Rails on Linux
A quick survey... what''s the best gui debugging tool for Rails 1.0 on
Linux that you''ve used? SW versions?
Personally I''ve tried FreeRIDE 0.95 and RDT 0.7.0 in Eclipse 3.1.2. Both
are very slow and the latter got quite a few bugs itself.
TIA!
--
Posted via http://www.ruby-forum.com/.
2006 Mar 13
9
what the » ???
Im just learning trough the "geting started with ruby"
i''m only on page Ruby.new and im stuck
here''s the thing, I''m using FreeRIDE to duplicate the examples
a = %w{ ant bee cat dog elk }
a[0] ? "ant"
a[3] ? "dog"
for the live of me i cant seem to use Alt+0187 (?)
what happen??
--
Posted via http://www.ruby-forum.com/.
2014 Jan 27
1
Re: [PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
On Monday 27 January 2014 13:29:54 Richard W.M. Jones wrote:
> +/* Execute a command, sending output to a file. */
> +static int
> +exec_command (char **argv, const char *file, int stderr_to_file)
> +{
> + pid_t pid;
> + int status, fd;
> + FILE *fp;
> + char line[256];
> +
> + pid = fork ();
> + if (pid == -1) {
> + perror ("fork");
> +
2018 Nov 07
2
Re: guestfs_launch() fails when C application is started as a systemd service
> That makes no sense because we are supposed to have just forked
successfully
I just realized libguestfs uses fork. Now we know why qemu-img worked - I
launched it with popen.
> So it must be something to do with collectd and how it runs programs.
> Is it using LD_PRELOAD trickery, or replacing libc, or using seccomp?
If I understand the question correctly - it's about how
2010 Sep 20
1
[PATCH] Fix error launching libguestfs when euid != uid
When writing to a RHEV target, virt-v2v launches the libguestfs appliance with
euid:egid = 36:36, which is required to write to an NFS target using
root_squash. Since the update to use an febootstrap cached appliance, this
causes an error on startup as the cached files are owned by root, but the cache
directory is owned by 36:36. The reason for this is that execve() resets euid
and egid to uid and
2002 Mar 29
1
Two patches for OpenSSH 3.1p1 (fwd)
Can I get people from other platforms to test the waitpid.patch to see
if it solves hang-on-exit on their platform?
I can confirm Solaris at this moment (but I've not done heavy testing at
this moment) that is works like a charm (Solaris 7). It handles 'sleep
90&' vs 'nohup sleep 90&' correctly (killed, vs left).
thanks.
- Ben
---------- Forwarded message
2015 Apr 15
2
unknown driver format value 'qcow3'
Hi All
I am trying to deploy VMs using libvirt and a domainXML file where i
mention the parameters for the VM to be deployed.
I am using libvirt version: libvirt 0.10.2
**********
virsh # version
Compiled against library: libvirt 0.10.2
Using library: libvirt 0.10.2
Using API: QEMU 0.10.2
Running hypervisor: QEMU 0.12.1
***********
I get this libvirt exception while deploying a VM.
Exception
2018 Nov 13
2
Re: [collectd] collectd leaks SIGCHLD == SIG_IGN into plugins
Hi,
thank you very much for reporting this! Sounds like a bug in the exec plugin –
it never ceases to amaze me how many issues a single plugin can have ;)
> > > This means that any plugin that does the usual pattern of:
> > >
> > > pid = fork ();
Note that the exec plugin is the *only* plugin that does this. All other
plugins are forbidden to fork(), popen() or
2016 Apr 14
2
[PATCH] Add safe wrapper around waitpid which deals with EINTR correctly.
As Eric Blake noted in:
https://www.redhat.com/archives/libguestfs/2016-April/msg00154.html
libguestfs doesn't correctly handle the case where waitpid receives a
SIGCHLD signal and the main program has registered a non-restartable
signal handler.
In this case waitpid would return -EINTR and we would print an error,
but actually we should retry this case.
This adds two new internal functions,
2002 Sep 03
2
[patch] for rsync
To Whom It May Concern:
Below is a patch, that I have used to eliminate the unexplained
errors in the rsync program. I was able to trace the problem to
the order in which the sigchld_handler and wait_process routines
were executed. If sigchld_handler executes first it retrieves
the status that wait_process needs to indicate proper rsync
termination. The code below allows the sigchld_handler to
2006 Jul 11
1
Securing MySQL with InstantRails
Hi,
I sucessfully got InstantRails installed on my WinXP Home pc and the
demo applications ran fine. I noticed that the MySQL root was the user
accessing the MYSQL Server and that there was no password used. Due to
security concerns I have added a password to the root user but this
has now broken my Rails applications. I believe I have found the
config file but am unsure how to edit it. Do I
2006 Mar 24
2
How to use Readymade plugins?????
Hi,
I have downloaded "Ruby on Rails validator plugin for password fields".
& they have specified that for using it we have to unzip it in plugins
directory of your rails application. But I cant find the plugin
directory in my Rails Application. Also there is plugin directory in
Rails server installation directory:-"C:\local\ruby\freeride\plugins\".
& so I have
2018 Nov 07
2
Re: guestfs_launch() fails when C application is started as a systemd service
Thank you, Rich,
This was the issue indeed. export LIBGUESTFS_BACKEND=direct fixed it.
The next step I tried was to integrate libguestfs in collectd virt plugin
to collect this data automatically.
In this case I'm having an unknown error in add_libvirt_dom() (same with
add_domain) when it's invoking qemu-img to create overlay image.
There is no difference between manual and service