Displaying 20 results from an estimated 42 matches for "detatched".
Did you mean:
detached
2008 Jul 22
2
screen detatch
The man page for screen says that I can create a detatched screen
running with a set command in it by doing this:
$ screen -dm $command
However, it doesn't work. Screen exits without creating the detached
screen.
If I say
$ screen $command
...I get dropped into a screen session running $command as I would
expect.
What's the magic invoca...
2019 Apr 19
2
Forking AGI or GoSub
In PHP something like:
$pid = pcntl_fork();
if ($pid != 0) {
// we are the parent
// do parent stuff
exit;
}
// we are the child, detatch from terminal
$sid = posix_setsid();
if ($sid < 0) {
die;
}
// do child stuff
On 04/19/2019 02:00 PM, Mark Wiater wrote:
> On 4/19/2019 1:49 PM, Dovid Bender wrote:
>> Mark,
>>
>> I am using PHP agi and when forking
2009 Aug 16
9
increase size for dom guest using lvm online
could we increase the size for dom guest online without rebooting or unmounting?
pls kindly advise any methods.
Yahoo!香港提供網上安全攻略,教你如何防範黑客! 請前往 http://hk.promo.yahoo.com/security/ 了解更多!
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2019 Aug 10
1
[PATCH v3 2/2] virtio: decrement avail idx with buffer detach for packed ring
...atch decrements 'next_avail_idx' count when detaching a buffer
> from vq for packed ring code. Split ring code already does this in
> virtqueue_detach_unused_buf_split function. This updates the
> 'next_avail_idx' to the previous correct index after an unused buffer
> is detatched from the vq.
>
> Signed-off-by: Pankaj Gupta <pagupta at redhat.com>
I would make this patch 1, not patch 2, otherwise
patch 1 corrupts the ring.
> ---
> drivers/virtio/virtio_ring.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/virtio/virti...
2019 Aug 12
1
[PATCH v3 2/2] virtio: decrement avail idx with buffer detach for packed ring
...atch decrements 'next_avail_idx' count when detaching a buffer
> from vq for packed ring code. Split ring code already does this in
> virtqueue_detach_unused_buf_split function. This updates the
> 'next_avail_idx' to the previous correct index after an unused buffer
> is detatched from the vq.
>
> Signed-off-by: Pankaj Gupta <pagupta at redhat.com>
> ---
> drivers/virtio/virtio_ring.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
> index c8be1c4f5b55..7c69181113e2 10...
2006 May 10
1
Debugging with strace
We have a dovecot install that is working fine for everyone except one
user, who complains that it takes a minute or longer to delete a single
message from the INBOX to Trash. This is happening for him from
multiple IMAP clients so it appears to be server-side.
I wanted to start up a test instance of dovecot alongside the production
one and test there. So I copied dovecot.conf, put imap on
2019 Aug 09
5
[PATCH v3 0/2] virtio_console: fix replug of virtio console port
This patch series fixes the issue with unplug/replug of a port in virtio
console driver which fails with an error "Error allocating inbufs\n".
Patch 1 makes use of 'virtqueue_detach_unused_buf' function to detach
the unused buffers during port hotunplug time.
Patch 2 updates the next avail index for packed ring code.
Tested the packed ring code with the qemu virtio 1.1 device
2018 Jan 18
2
Handling a long-running agi on hangup-handler?
I know that hangup handlers (
https://wiki.asterisk.org/wiki/display/AST/Hangup+Handlers) have to finish
quickly.
So it's no surprise that my speech to text agi which takes 8 seconds gets
killed.
However, can anyone think of a way round this? So, once the caller has hung
up, I need to take one of the channel variables, and pass it to a python
agi script which then does speech to text.
2003 Oct 02
7
Any way to get out of a remote console without stopping *
This probably has an easy solution, but I found it yet. How can I get out
of a remote console after using ssh to get into the box, making changes,
reload etc. without stopping *?
Thanks in advance.
Sincerely,
Andy Hester
Consero
2006 Aug 15
2
newhidups subdriver_matcher incorrectly matches USB hub
...river (libusb.c) then attempts to claim the device and detatches the
kernel driver. When the hub fails to provide a HID descriptor, the
newhidups driver moves on to the next device and correctly locates the
MGE UPS. The problem is that the hub is now non-functional as the hub
kernel driver has been detatched.
Problem:
The belkin_claim function should not assume that because the VendorID is
Belkin's the device is a UPS. Belkin makes several USB devices and
starting newhidups with them connected could leave them inoperable until
they are removed an reconnected. Even if the UPS is not connected
thr...
2019 Aug 09
0
[PATCH v3 2/2] virtio: decrement avail idx with buffer detach for packed ring
This patch decrements 'next_avail_idx' count when detaching a buffer
from vq for packed ring code. Split ring code already does this in
virtqueue_detach_unused_buf_split function. This updates the
'next_avail_idx' to the previous correct index after an unused buffer
is detatched from the vq.
Signed-off-by: Pankaj Gupta <pagupta at redhat.com>
---
drivers/virtio/virtio_ring.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
index c8be1c4f5b55..7c69181113e2 100644
--- a/drivers/virtio/virtio_ring.c...
2009 Jul 07
0
borrow disk from raidz?
Hi all!
I got a short question regarding data migration:
I want to copy my data (~2TB) from an old machine to a new machine with a
new raidz1 (6 disks x 1,5TB each ). Unfortunately this is not working
properly via network due to various (driver) problems on the old machine.
So my idea was:
to borrow one disk from the new raidz1 (leaving the raid in degraded, but
working status)
attach the now
2007 May 08
1
load modules
Hello again,
I have a little problem, every time I switch on the Asterisk server I must load two modules: modprobe zaptel and modprobe wctdm
Is there any way to load there automatically when the server start?
I have a Debian Etch.
One more cuestion, it's posible to start Asterisk (asterisk -vvvc)as well?
What metod do you prefer? "asterisk" or "asterisk -vvvc"?
Thanks
2014 Mar 20
1
php script in h context makes channel hang : solution ?
Hello,
I execute the following php script when a call ends and the h-context is
executed :
/exten => h,n,System(/usr/bin/php
/var/log/asterisk/loggingAST/loggingAST.php
/var/log/asterisk/loggingAST/${CHANNEL:4}.csv)/
The script loggingAST.php writes some information in a MySQL database on
a remote webserver.
I have noticed that when the webserver is unreachable, this channel
2019 Aug 13
2
[PATCH v4 0/2] virtio_console: fix replug of virtio console port
This patch series fixes the issue with unplug/replug of a port in virtio
console driver which fails with an error "Error allocating inbufs\n".
Patch 1 updates the next avail index for packed ring code.
Patch 2 makes use of 'virtqueue_detach_unused_buf' function to detach
the unused buffers during port hotunplug time.
Tested the packed ring code with the qemu virtio 1.1 device
2014 Oct 13
2
Re: passthrough of PCI-device
Hi Pierre,
thanks for your reply.
I am using kernel 3.10.0-123.8.1.el7.x86_64.
The kernel modul used after nodedev-detach is vfio-pci
This is the output of lspci -vv after I did a virsh nodedev-detatch pci_0000_02_00_0
02:00.0 Ethernet controller: PLX Technology, Inc. Device 235e
Subsystem: PLX Technology, Inc. Device 235e
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV-
2006 Jul 13
7
system unresponsive after issuing a zpool attach
Today I attempted to upgrade to S10_U2 and migrate some mirrored UFS SVM
partitions to ZFS.
I used Live Upgrade to migrate from U1 to U2 and that went without a
hitch on my SunBlade 2000. And the initial conversion of one side of the
UFS mirrors to a ZFS pool and subsequent data migration went fine.
However, when I attempted to attach the second side mirrors as a mirror
of the ZFS pool, all
2016 Apr 04
1
[PATCH v3 03/16] mm: add non-lru movable page support document
On 04/04/2016 04:25 AM, Minchan Kim wrote:
>>
>> Ah, I see, so it's designed with page lock to handle the concurrent isolations etc.
>>
>> In http://marc.info/?l=linux-mm&m=143816716511904&w=2 Mel has warned
>> about doing this in general under page_lock and suggested that each
>> user handles concurrent calls to isolate_page() internally. Might be
2016 Apr 04
1
[PATCH v3 03/16] mm: add non-lru movable page support document
On 04/04/2016 04:25 AM, Minchan Kim wrote:
>>
>> Ah, I see, so it's designed with page lock to handle the concurrent isolations etc.
>>
>> In http://marc.info/?l=linux-mm&m=143816716511904&w=2 Mel has warned
>> about doing this in general under page_lock and suggested that each
>> user handles concurrent calls to isolate_page() internally. Might be
2016 Apr 01
2
[PATCH v3 03/16] mm: add non-lru movable page support document
On 03/30/2016 09:12 AM, Minchan Kim wrote:
> This patch describes what a subsystem should do for non-lru movable
> page supporting.
Intentionally reading this first without studying the code to better catch
things that would seem obvious otherwise.
> Cc: Jonathan Corbet <corbet at lwn.net>
> Signed-off-by: Minchan Kim <minchan at kernel.org>
> ---
>