search for: hmp

Displaying 20 results from an estimated 85 matches for "hmp".

Did you mean: cmp
2006 Oct 23
1
asterisk and HMP
Hi all, Does Asterisk now support Intel's HMP platforms ? Does it support in 1.4 version ? Thanks. Greg -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061023/0cc2cfe9/attachment.htm
2014 Oct 30
0
Asterisk registration with Dialogic HMP.
Hi, I am very new to Asterisk world. This is what we are trying to achieve. We have Asterisk Server in our lab with Ver. 11.2.1 - FreePBX. We have Dialogic HMP application, which we want to get registered with Asterisk. After registration we would like to use HMP as incoming or outgoing IVR. I need to know what has to be done at Asterisk side to make this happen. We created normal extension, and tried to register extension through HMP and its failing....
2017 Jul 19
0
Re: [Qemu-devel] [PATCH v2] hmp: allow cpu index for "info lapic"
...> > > >> Hi Eduardo, > > >> > > >> Thank you for your reply! > > >> > > >> >On Mon, Jul 17, 2017 at 09:49:37PM -0400, Yi Wang wrote: > > >> > > >> >> Add [vcpu] index support for hmp command "info lapic", which is > > >> > > >> >> useful when debugging ipi and so on. Current behavior is not > > >> > > >> >> changed when the parameter isn't specified. > > >> > > >&...
2012 Feb 08
28
[PATCH v3 0/6] initial suspend support
...wakeup support. Gerd Hoffmann (6): suspend: add infrastructure suspend: switch acpi s3 to new infrastructure. suspend: add system_wakeup monitor command suspend: make ps/2 devices wakeup the guest suspend: make serial ports wakeup the guest. suspend: make rtc alarm wakeup the guest. hmp-commands.hx | 14 ++++++++++++++ hmp.c | 5 +++++ hmp.h | 1 + hw/acpi.c | 11 +---------- hw/acpi.h | 2 -- hw/acpi_piix4.c | 3 +-- hw/mc146818rtc.c | 17 +++++++++++++++++ hw/mips_malta.c | 2 +- hw/pc.c | 11 ----------- hw/...
2012 Mar 20
2
qemu-monitor-command
Hello Everyone, I am working on a grad school project for virtual introspection. I have a vm running (with 512mb of memory) and want to access the pmemsave function through virsh with the qemu-monitor-command. I am typing the following: virsh qemu-monitor-command --hmp Shawn 'pmemsave 0 536870912 image.dump' Shawn is the name of my vm and image.dump is the name of my output file. No matter what I do, I keep getting: Could not open 'image.dump' I have tried the above with sudo and with the absolute path of where the newly created dump fi...
2014 Jan 15
2
Re: how to detect if qemu supports live disk snapshot
...9;m not mistaken, looks like the only way to test for the support > in QEMU is to actually > > request a snapshot and see what happens. > > Is this right? > > Unfortunately true for the moment. > Hi, does this command can help with you? virsh qemu-monitor-command vmname --hmp 'help' | grep snapshot_blkdev
2006 Mar 14
9
Can you better this String acronym method?
Can you better this String acronym method? def acronym name letters=[] name.each_char {|char| letters<<char if char[0]>=65 and char[0]<=90} acronym = letters.join " " end chris -- Posted via http://www.ruby-forum.com/.
2005 Jul 27
3
Klicking sounds in background
Hello, I have an IVR with Intel HMP SIP stack, which is a peer behind my Asterisk box (Asterisk 1.0.7, Digium PRI). When dialing in via PSTN, there are klicking sounds in the background, which do not appear, when dialing in via SIP (using Asterisk as pbx). The issue does not seem to be an alaw/?law problem. I tried trunking two Ast...
2016 Sep 01
2
Monitor guest vm memory usage
...usage ( free in guest vm)?Nowadays, I have already researched some methods:1. qemu-kvm process memory usage.? ? ?Since qemu-kvm process memory usage always increases as time goes on, it will not reflect the memory usage in vm.2.?virsh dommemstat? ? ?Just as method 1.3.?virsh qemu-monitor-command --hmp [domain name] "info mem"? ? ?(1) when guest vm memory size less than 4Gbytes, it will output something like this:? ? ? ? ? ? 7f882000-7f883000 00001000 urw????????????7fbf8000-7fbf9000 00001000 urw????????????88000000-88001000 00001000 -rw????????????88002000-88003000 00001000 urw????????...
2013 Jan 21
2
snapshot troubles
Dear all, I created some snapshots, a long time ago, using the xml description option, so the snapshots have a name with a space in it... Really a bad choice apparently, since it seems impossible to delete them now: I cannot find how to enter the snapshot name properly due to the space. Quotes don't seem to help; escaping the space doesn't help either. Anybody knows how to solve this?
2018 May 01
3
Re: Create qcow2 v3 volumes via libvirt
...not changed, Red Hat support policy > was to *not* support internal snapshots. So, are they reliable enough for > production VMs? The QEMU community still tends to discourage use of internal snapshots. There are not even any QMP monitor commands to use them - you are forced to use the legacy HMP interface to QEMU for mgmt. All of the workaround providing interesting block storage mgmt is focused on external snapshots (aka the backing_file option). There are some technical downsides to internal snapshots IIUC, such as inability to free the space used by the internal snapshot when it is dele...
2019 Oct 23
2
Re: Reg: Adding "edu" device using XML file
Hello Han, Thanks for the response. The XML option with qemu:commandline works if the device is added during the VM creation. But I would like to hot-plug the device to the running VM. I can add the device using the command line <virsh qemu-monitor-command --hmp VM-Name device_add edu,id=edu0> But I would like to add the device using the XML file, like <virsh attach-device VM-Name xmlfile.xml>. If the XML support is not provided in libvirt, Is there a document or pointers available to show how to add new device in libvirt xml code? Thanks, Bhar...
2003 Oct 25
2
Voicemail help
hi, i am trying to do autoattendant but failing. as in the manual i inserted the background(welcome-mainmenu) file so that after the sound the caller can dial the extension he wants to call. i figured that the background sound wasn't coming in the asterisk. how do we do this without first loading the welcome message? for example after certain rings the caller can dial the extension no to
2014 Jan 15
0
Re: how to detect if qemu supports live disk snapshot
...only way to test for the support >> in QEMU is to actually >>> request a snapshot and see what happens. >>> Is this right? >> >> Unfortunately true for the moment. >> > Hi, does this command can help with you? > virsh qemu-monitor-command vmname --hmp 'help' | grep snapshot_blkdev This would work for current versions of qemu, but may not work in the future (as HMP does not guarantee stable output) - parsing QMP output would be more reliable. Furthermore, the 'qemu-monitor-command' is intentionally unsupported, although this par...
2015 Feb 16
1
Re: spice session locking
Any idea how to do this with virsh or hooks? Qemu seems to have a spice.set_ticket command, but calling this from virsh's 'qemu-monitor-command guest --hmp --cmd spice.set_ticket password' doesn't work. The password would somehow have to be reset once the client logs out. On Mon, Feb 16, 2015 at 11:50 AM, Michal Privoznik <mprivozn@redhat.com> wrote: > On 13.02.2015 16:19, Jon Doe wrote: >> Hi List, >> >> Is it pos...
2015 Feb 18
3
Disable/stop nic in a virtual guest with virsh
On Tue, Feb 17, 2015 at 1:43 PM, Sven Kieske <s.kieske at mittwald.de> wrote: > > > On 17/02/15 09:18, C. L. Martinez wrote: >> Hi all, >> >> How can I stop/disable a nic in a virtual guest using a virsh >> command?? I am searching the same effect like if I unplug network >> cable ... Is it possible?? I have tried with "detach-interface"
2014 Oct 14
3
drive-backup command permission denied.. and need some clarification
Hi * Trying to get drive-backup command, getting permission denied. :( sudo virsh qemu-monitor-command --hmp my-instance --cmd drive_backup drive-virtio-disk0 /tmp/foo.vda.img Looks like apparmor issue. What can I modify to make this work ? * Couple of other questions drive-backup : * The doc seems to claim that it gives a point in time copy of the drive. So I assume t...
2017 Dec 04
2
Guest Reboot After Plug HDMI
...plugging, that's well. What i was suffer? can you help me solve it? Following message is detailed!!! Guest: window 7 profession Linux: Ubuntu 1604 Qemu:1 v2.11.0-rc0 Libvirt: 3.9 method of booting: virsh start myGuest1 method of plug HDMI: virsh qemu-monitor-command myGuest1 --hmp 'device_add driver=vfio-pci,host=01:00.0,xvga=on,multifunction=yes' phenomenon: after plugging, my Guest is failed to check with "ping", for a while, my display is light and load windows. expect: my guest is running when i plug HDMI, it seem that hot add a device. --...
2015 Jan 16
1
polkit ACL for remotely changing a spice console password
...SSAPI over tcp working and can set the password - but I can also do everything else - the default policy is still in place, and once authenticated, anything goes. I'm setting the password using a command like this: virsh --connect qemu+tcp://remote.example.org/system qemu-monitor-command --hmp mydomain 'set_password spice mynewpassword123 disconnect' I've looked at the documentation for ACLs but I can't see anything that covers qemu-monitor-command, and specifically "set_password". The other way to set passwords is to update the domain settings using an XML...
2011 Apr 04
0
Release of libvirt-0.9.0
...ix libxl driver startup (Daniel Veillard) - qemu: Ignore libvirt debug messages in qemu log (Jiri Denemark) - qemu: Fix improper logic of qemuCgroupSetup (Osier Yang) - free tmp after unlinking it (Wen Congyang) - qemu: Fix media eject with qemu-0.12.* (Jiri Denemark) - check whether qemuMonitorJSONHMP() failed (Wen Congyang) - do not send monitor command after monitor meet error (Wen Congyang) - qemu: unlock qemu driver before return from domain save (Hu Tao) - qemu: fix regression with fd labeling on migration (Eric Blake) - Ignore return value of virDomainObjUnref (Markus Gro?) - Fix infinite...