similar to: Driver installation on Wine

Displaying 20 results from an estimated 40000 matches similar to: "Driver installation on Wine"

2006 Feb 19
2
How to setup mirroring
Dear All, Can you pls help me how to setup up mirroring. I have Adaptech 39320 SCSI CARD and 2 nos of IBM HITACHI 143 GB HDD, Iam using REDHAT ENTERPRISE LINUX 4 AS, now the things is i want to setup mirroring, what ever i have on disk1 should automatically done disk2, including all file system and other things. If any problem with disk1 just by changing the disk2 to disk1 or changing the
2005 Oct 08
2
No incoming calls from chan_capi 0.6
Hello, I'm trying to use the version 0.6 of chan_capi-cm for outgoing calls it works perfectly but for incoming calls it doesn't work. I tried to set an extension to dial my from-pstn context and it works. So I think there's a problem with my capi.conf or something... Here's a debug when calling -- CONNECT_IND (PLCI=0x101,DID=9100,CID=46720XXXX,CIP=0x4,CONTROLLER=0x1)
2004 Aug 23
2
Question about dial out via Zap
Group When I dial a phone number that should go out to the telco my local phone rings. Does anyone have any hits ? Thanks Asterisk Ready. *CLI> -- Called g1/6144196143 Urgent handler Urgent handler -- Starting simple switch on 'Zap/2-1' Urgent handler Urgent handler -- Called 6149236651 Urgent handler -- SIP/6149236651-1d93 is ringing Urgent handler -- Zap/1-1
2014 Sep 22
2
[PATCH RFC 2/2] vhost: support urgent descriptors
On 09/20/2014 06:00 PM, Paolo Bonzini wrote: > Il 19/09/2014 09:10, Jason Wang ha scritto: >>>> >>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >> So the urgent descriptor only work when event index was not enabled? >> This seems suboptimal, we may still
2014 Sep 22
2
[PATCH RFC 2/2] vhost: support urgent descriptors
On 09/20/2014 06:00 PM, Paolo Bonzini wrote: > Il 19/09/2014 09:10, Jason Wang ha scritto: >>>> >>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >> So the urgent descriptor only work when event index was not enabled? >> This seems suboptimal, we may still
2014 Sep 22
1
[PATCH RFC 2/2] vhost: support urgent descriptors
On 09/22/2014 02:55 PM, Michael S. Tsirkin wrote: > On Mon, Sep 22, 2014 at 11:30:23AM +0800, Jason Wang wrote: >> On 09/20/2014 06:00 PM, Paolo Bonzini wrote: >>> Il 19/09/2014 09:10, Jason Wang ha scritto: >>>>>> >>>>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>>>> + if (vq->urgent ||
2014 Sep 22
1
[PATCH RFC 2/2] vhost: support urgent descriptors
On 09/22/2014 02:55 PM, Michael S. Tsirkin wrote: > On Mon, Sep 22, 2014 at 11:30:23AM +0800, Jason Wang wrote: >> On 09/20/2014 06:00 PM, Paolo Bonzini wrote: >>> Il 19/09/2014 09:10, Jason Wang ha scritto: >>>>>> >>>>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>>>> + if (vq->urgent ||
2014 Sep 19
2
[PATCH RFC 2/2] vhost: support urgent descriptors
On 07/01/2014 06:49 PM, Michael S. Tsirkin wrote: > Signed-off-by: Michael S. Tsirkin <mst at redhat.com> > --- > drivers/vhost/vhost.h | 19 +++++++++++++------ > drivers/vhost/net.c | 30 +++++++++++++++++++++--------- > drivers/vhost/scsi.c | 23 +++++++++++++++-------- > drivers/vhost/test.c | 5 +++-- > drivers/vhost/vhost.c | 23 ++++++++++++++++------- >
2014 Sep 19
2
[PATCH RFC 2/2] vhost: support urgent descriptors
On 07/01/2014 06:49 PM, Michael S. Tsirkin wrote: > Signed-off-by: Michael S. Tsirkin <mst at redhat.com> > --- > drivers/vhost/vhost.h | 19 +++++++++++++------ > drivers/vhost/net.c | 30 +++++++++++++++++++++--------- > drivers/vhost/scsi.c | 23 +++++++++++++++-------- > drivers/vhost/test.c | 5 +++-- > drivers/vhost/vhost.c | 23 ++++++++++++++++------- >
2009 May 12
3
forms & link css classes - not working
I used a scaffold to create an interface. I''m trying to style it and I''m having trouble. In my css I have: #content a, a:link, a:visited{ color: #ff8400; } #content a:hover{ background: #ff8400; color: #FFFFFF; } #content a.urgent, a.urgent:link, a.urgent:visited { color: #FF0000; } #content a.urgent:hover { color: #FFFFFF; background: #FF0000; } #content input.m_title{
2008 Jun 06
2
new to linux, question about wine..
I'm brand new to linux and want to install wine, I have Ubuntu 7.04 at the moment. I would like to know which Linux version I would need to install wine. I think I can figure it out once wine is installed, however, I can't make sense of the directions on the website. I have downloaded the newest version one wine but don't know how to actually use it or anything. Please help, It is very
2005 Jun 02
1
Newbie :Call Forwarding problem
Dear All, I was trying to enable call forwarding, following the steps of the link on voip.org regarding this issue it doesn't work and the phone I am trying to implement on is still ringing. below is my conf in extensions.conf and the CLI output during the process. My configuration is : exten => _*5X.,1,DBput(CF/${CALLERIDNUM}=${EXTEN:2}) exten => _*5X.,2,Hangup exten =>
2014 Jul 01
5
[PATCH RFC 1/2] virtio: support for urgent descriptors
Below should be useful for some experiments Jason is doing. I thought I'd send it out for early review/feedback. Compiled-only at this point. event idx feature allows us to defer interrupts until a specific # of descriptors were used. Sometimes it might be useful to get an interrupt after a specific descriptor, regardless. This adds a descriptor flag for this, and an API to create an urgent
2014 Jul 01
5
[PATCH RFC 1/2] virtio: support for urgent descriptors
Below should be useful for some experiments Jason is doing. I thought I'd send it out for early review/feedback. Compiled-only at this point. event idx feature allows us to defer interrupts until a specific # of descriptors were used. Sometimes it might be useful to get an interrupt after a specific descriptor, regardless. This adds a descriptor flag for this, and an API to create an urgent
2001 Sep 24
2
URGENT REPOST: Maximum number of fil
Hi Joel, We essentially have the following directory structure: /images/yyyy/mm/dd/nn For each day of the year we get in the region of 120,000 images, which are split down into 100 subdirectories to prevent their being too many files in one directory. The directory /images is shared out as follows: [images] comment = Imaging Files path = /images public = yes writable = yes
2010 Jul 15
3
Speex Echo Cancellation
> Message: 1 > Date: Thu, 15 Jul 2010 00:19:43 -0600 > From: devi at purpletalk.com > Subject: [Speex-dev] Speex Echo Cancellation > To: speex-dev at xiph.org > Message-ID: <20100715001943.pr04hvtxsc8k04so at mail.purpletalk.com> > Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; > format="flowed" > > Hi > > I am using speex
2006 Jun 21
2
FW: syntax error
(Try again from the proper email address) --Rob -----Original Message----- From: Rob Thomas Sent: Thursday, 22 June 2006 12:22 AM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: RE: [Asterisk-Users] syntax error That's freePBX or AMP code that we've since fixed - The replacement line is exten =>
2017 Oct 02
2
[PLUGIN] Virtual keywords (aka Gmail-like labels)
As a matter of fact I use the virtual plugin to achieve what I want. I create dovecot-virtual configuration files. But if I understand you correctly, your approach is a system-wide configuration. Labels are per-user and dynamic by definition. On Mon, Oct 2, 2017 at 8:24 AM, Aki Tuomi <aki.tuomi at dovecot.fi> wrote: > > > On 01.10.2017 19:13, Daniele Ricci wrote: >> Hello
2005 Aug 23
1
Asterisk 1.0.9: TE411P replacement for TE410P 1stgen causes crashes
Hi all, I replaced a TE410P Rev C 1st Generation Firmware with a TE411P without any cfg changes (zaptel/zapata). As a result Asterisk crashes on outbound from PRI4 going to PRI1 calls: Aug 23 18:22:00 WARNING[4693]: chan_zap.c:7545 zt_pri_error: PRI: !! Got a UA, but i'm in state 1 Aug 23 18:22:00 WARNING[4693]: chan_zap.c:7545 zt_pri_error: PRI: !! Got a UA, but i'm in state 1
2007 Apr 14
2
Samba -> WinXP: slow transfers, partial solution
Hello All, I'm running Samba 3.0.24 as PDC and file server on Gentoo Linux, AMD64, 2.6.19 kernel, 100MBit/s network, and experience quite slow file transfers from Samba to WinXP SP2 clients: the speed is varying, but is about 1-2Mb/s at best. I spent quite some time investigating the issue, here are the intermediate results: 1) This happens only when transferring _from_ _Samba_ to