Displaying 20 results from an estimated 500 matches similar to: "回复: error: internal error lxc state driver is notactive"
2012 Sep 02
1
回复: Which Framework will improve my Ruby Skills?
i think you should write more program . so that you can improve you ruby skills
------------------ 原始邮件 ------------------
发件人: "ANIKET KADAM";
发送时间: 2012年9月2日(星期天) 晚上9:52
收件人: "rubyonrails-talk";
主题: Re: [Rails] Which Framework will improve my Ruby Skills?
can you tell me which rubygems will improve my ruby skills
On Sun, Sep 2, 2012 at 2:00 PM, ANIKET KADAM
2013 Aug 26
2
回复: How to deal with LXC cgroup access control withapparmor ?
thx, Gao feng,
If I do not want to disable the cgroup in container , is there any config file ? or do i have to do something to the libvirt source code
to skip it ?
------------------ 原始邮件 ------------------
发件人: "Gao feng"<gaofeng@cn.fujitsu.com>;
发送时间: 2013年8月26日(星期一) 下午4:06
收件人: "止语"<zhongjj@foxmail.com>;
抄送:
2013 Aug 26
1
Re: 回复: How to deal with LXC cgroup access control withapparmor ?
OOPS:
"If I do not want to disable the cgroup in container" ==> "If I do want to disable the cgroup in container"
I meant if the user namespace not enabled in kernel ...
thx ,I will try user namespace later. I am not working on x86 and not suer wheather the usernamespace is ok in the kernel I am going to use.
I would try to disable the cgroup in lxc first.
2011 Dec 21
0
problem with 'xm save' in xen-3.4
Hi,
the problem is as follows:(And then, others can't login mostly because of the os' busing and you can't do anything else.)
[**@xentest ::三 12月 21::~]$ sudo xm list
Name ID Mem VCPUs State Time(s)
Domain-0 0 1748 2 r----- 29396.3
xp-101 1 256
2012 Jan 02
1
回复: [help] Who's the author of libxc? I don't know howto start with it
Thanks.
I have already previewed the xenctrl.h.
The following is what I understand: libxc is compiled to a file name after 'xc**' endding with '.so', xend communicates with domain0 through xc and domain0 communicates with hypervisor through privcmd.
What's the privcmd?
------------------ 原始邮件 ------------------
发件人: "Wei
2008 Oct 18
1
[LLVMdev] 回复:Re: [LLVMdev] [Need your help]
Hi Eli,
Thanks for your rapid response!
Now I have another question.
How to get LLVM bc files successfully by compiling test.c and static libraries ?
Thanks a lot!
----- 原始邮件 -----
发件人:Eli Friedman <eli.friedman at gmail.com>
收件人:LLVM Developers Mailing List <llvmdev at cs.uiuc.edu>
2017 Jan 10
0
回复: [libvirt] xml config nested
thanks your mail,now below:
If the KVM supports nested VMX and QEMU starts with the arguments -enable-kvm and
-cpu ..., + vmx, then the LOCK bit of the guest MSR_IA32_FEATURE_CONTROL and
Enable VMX out of SMX operation bit will be set.
Well, I should add -enable-kvm parameters of the document which xml position, Exactly speaking, how to amend xml configuration file?
2012 May 10
1
回复: guestfs_mount_local* api undefined symbols
Thank you Rich,
I checked the version and found that it printed an old 1.17.17 version which was deployed before.
But I remembered i did check the version in guestfish shell and it said 1.17.40 before that?then i totally ignored the fact i had another version involved.
I`ve changed the LD_LIBRARY_PATH and the "undefined symbol" error disappeared.But some "inspection API not
2009 Sep 04
1
[LLVMdev] 回复:[LLVMdev] Dose I need to build llvm-gcc front-end from source to resolve this error?
sorry ! I have re-corrected the title.
------------------ 原始邮件 ------------------
发件人: "Sheng Wang"<wansheg at gmail.com>;
发送时间: 2009年9月4日(星期五) 下午3:23
收件人: "LLVMdev"<LLVMdev at cs.uiuc.edu>;
主题: [LLVMdev] Dose I need to build llvm-gcc front-end from sourceresolve this error?
/*
mm.cpp
*/
#include<iostream>
using namespace std;
struct xx{
int x;
2009 Dec 19
0
some thoughts about virt-v2v (including matt's reply)
From matt :
Osier,
Comments inline below.
On 18/12/09 07:39, Osier Yang wrote:
> and another point.
>
> the messages printed to stdout or stderr are not with "message level".
> such as
> [root at dhcp-66-70-131 image]# virt-v2v -i libvirtxml demo1.xml
> virt-v2v: The connected hypervisor does not support a machine type of pc.
> virt-v2v: demo1 configured with
2011 Dec 07
1
回复: 回复: 回复: (no subject)
Hi, i think it will work correct.when one thread use encode,the others wait for.
in java, i think we can do like this:
synchronized (Encode) {
Encode.encode(short[] in, byte[] out);
}
In the doc of speex: it says the speex is not thread-safe.
------------------ ???? ------------------
???: "????? ?????????"<romius99 at mail.ru>;
????: 2011?12?7?(???) ??4:00
???:
2011 Dec 07
0
回复: 回复: (no subject)
I think it will looks like:
void Encode(const char* infile, const char* outFile)
{
void* st;
SpeexBits bits;
.....
st = speex_encoder_init(mode);
.....
speex_encode_int(st, input, &bits);
.....
speex_bits_destroy(&bits);
speex_encoder_destroy(st);
}
2011/12/7 Steve Checkoway <s at pahtak.org>
>
> On Dec 7, 2011, at 0:00 , Denis Romashenko
2011 Dec 07
2
回复: 回复: (no subject)
On Dec 7, 2011, at 0:00 , Denis Romashenko wrote:
> I'll try to explain. I want to create dll with only one function
> "Encode"
> that will encode file to speex format. In my application I will use
> this
> function from 16 threads, if it will work correct?
Surely that depends on the implementation of your Encode function. If
you use different encoder state
2011 Dec 07
0
回复: 回复: (no subject)
I'll try to explain. I want to create dll with only one function "Encode"
that will encode file to speex format. In my application I will use this
function from 16 threads, if it will work correct?
2011/12/6 ???. <xialonghua at vip.qq.com>
>
> **
> two thread send frames to only encoder at same time,two thread will use
> one buffer
> .it will work wrong if not
2012 Mar 07
0
libvirt-users Digest, Vol 27, Issue 11
How do we allow resource over provisioning in KVM ?
I have already posted the same question twice but haven't got any response
yet,
sorry for repeating it again but its important for me, so if some one could
please point
me in the right direction.
--
Jatin
On Wed, Mar 7, 2012 at 4:58 PM, <libvirt-users-request at redhat.com> wrote:
> Send libvirt-users mailing list submissions to
2011 Dec 06
2
回复: 回复: (no subject)
two thread send frames to only encoder at same time,two thread will use one buffer
.it will work wrong if not Handling thread synchronization.
if not use same state, it need more memory, but no need to consider thread safe.
------------------ ???? ------------------
???: "Jean-Marc Valin"<jmvalin at jmvalin.ca>;
????: 2011?12?6?(???) ??3:24
???:
2020 Jul 22
1
回复: 回复: bug report
Hi,Richard:
I use /bin/virt-copy-in failed , virt-copy-in have no diff with other nomarl machine(work well ) ,
/bin/virt-copy-in: symbol lookup error: /lib64/libguestfs.so.0: undefined symbol: json_string_length
here are
2020 Jun 24
0
Fwd: 回复: virt-builder problem
----- Forwarded message from 雁渡寒潭 <chnlcq@qq.com> -----
Date: Wed, 24 Jun 2020 11:38:41 +0800
From: 雁渡寒潭 <chnlcq@qq.com>
To: rjones <rjones@redhat.com>
Subject: 回复: [Libguestfs] 回复: virt-builder problem
thank you vrey much!
problem is Resolved!
http://archive.libguestfs.org/builder/index.asc is blocked! I'M disables it!
But i can
2020 Jun 23
2
Re: 回复: virt-builder problem
Could you run this command and send the complete file /tmp/output
to the list?
virt-builder -v -x fedora-31 |& tee /tmp/output
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-top is 'top' for virtual machines. Tiny program with many
powerful monitoring features, net
2020 Jun 23
0
Re: 回复: virt-builder problem
Please check the attachment.
------------------ Original ------------------
From: "rjones"<rjones@redhat.com>;
Date: Tue, Jun 23, 2020 09:39 PM
To: "雁渡寒潭"<chnlcq@qq.com>;
Cc: "libguestfs"<libguestfs@redhat.com>;
Subject: Re: [Libguestfs] 回复: virt-builder problem
Could