Displaying 11 results from an estimated 11 matches for "check_support".
Did you mean:
_check_support
2012 Jan 30
3
Problem with Centos 6.2 KVM
...line 1414, in tick
newNets, self.nets) = self._update_nets()
File "/usr/share/virt-manager/virtManager/connection.py", line 1277,
in _update_nets
lookup_func, build_class)
File "/usr/share/virt-manager/virtManager/connection.py", line 1209,
in _poll_helper
if not check_support():
File "/usr/share/virt-manager/virtManager/connection.py", line 501,
in is_network_capable
virtinst.support.SUPPORT_CONN_NETWORK)
File "/usr/lib/python2.6/site-packages/virtinst/support.py", line
574, in check_conn_support
return _check_support(conn, feature, conn)...
2012 Jan 17
2
Virtual Machine Manager error
...line 1414, in tick
newNets, self.nets) = self._update_nets()
File "/usr/share/virt-manager/virtManager/connection.py", line 1277,
in _update_nets
lookup_func, build_class)
File "/usr/share/virt-manager/virtManager/connection.py", line 1209,
in _poll_helper
if not check_support():
File "/usr/share/virt-manager/virtManager/connection.py", line 501,
in is_network_capable
virtinst.support.SUPPORT_CONN_NETWORK)
File "/usr/lib/python2.6/site-packages/virtinst/support.py", line
574, in check_conn_support
return _check_support(conn, feature, conn)...
2012 May 12
2
Error connecting to KVM on CentOS 6.2
...line 1414, in
tick
newNets, self.nets) = self._update_nets()
File "/usr/share/virt-manager/virtManager/connection.py", line 1277, in
_update_nets
lookup_func, build_class)
File "/usr/share/virt-manager/virtManager/connection.py", line 1209, in
_poll_helper
if not check_support():
File "/usr/share/virt-manager/virtManager/connection.py", line 501, in
is_network_capable
virtinst.support.SUPPORT_CONN_NETWORK)
File "/usr/lib/python2.6/site-packages/virtinst/support.py", line 574, in
check_conn_support
return _check_support(conn, feature, conn)...
2013 Nov 20
2
how to install libvirt-python
Hi,
I have successfully installed libvirt-.0.10.0 from source
./configure
make
make install
How can I check that if libvirt-python is installed? Search the folders, it seems there is no such file
[root@tiger ~]# find /usr/ -name libvirt-python
[root@tiger ~]# find . -name libvirt-python
[root@tiger ~]#
Regards,
Mahmood
2013 Nov 20
3
Re: how to install libvirt-python
...line 1422, in tick
newNets, self.nets) = self._update_nets()
File "/usr/share/virt-manager/virtManager/connection.py", line 1285, in _update_nets
lookup_func, build_class)
File "/usr/share/virt-manager/virtManager/connection.py", line 1217, in _poll_helper
if not check_support():
File "/usr/share/virt-manager/virtManager/connection.py", line 509, in is_network_capable
virtinst.support.SUPPORT_CONN_NETWORK)
File "/usr/lib/python2.6/site-packages/virtinst/support.py", line 574, in check_conn_support
return _check_support(conn, feature, conn)...
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
...th_error ("compress: cannot use optional level parameter with this compression type");
return -1;
}
- snprintf (ret, n, "compress -c");
+ snprintf (ret, n, "%s -c", str_compress);
return 0;
}
else if (STREQ (ctype, "gzip")) {
CHECK_SUPPORTED ("gzip");
if (level == -1)
- snprintf (ret, n, "gzip -c");
+ snprintf (ret, n, "%s -c", str_gzip);
else if (level >= 1 && level <= 9)
- snprintf (ret, n, "gzip -c -%d", level);
+ snprintf (ret, n, "%s -c -%d&...
2012 Aug 30
1
[PATCH] collect list of called external commands
...th_error ("compress: cannot use optional level parameter with this compression type");
return -1;
}
- snprintf (ret, n, "compress -c");
+ snprintf (ret, n, "%s -c", str_compress);
return 0;
}
else if (STREQ (ctype, "gzip")) {
CHECK_SUPPORTED ("gzip");
if (level == -1)
- snprintf (ret, n, "gzip -c");
+ snprintf (ret, n, "%s -c", str_gzip);
else if (level >= 1 && level <= 9)
- snprintf (ret, n, "gzip -c -%d", level);
+ snprintf (ret, n, "%s -c -%d&...
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
...compress: cannot use optional level parameter with this compression type");
return -1;
}
- snprintf (ret, n, "%s -c", str_compress);
+ snprintf (ret, n, "%s -c", "compress");
return 0;
}
else if (STREQ (ctype, "gzip")) {
CHECK_SUPPORTED ("gzip");
if (level == -1)
- snprintf (ret, n, "%s -c", str_gzip);
+ snprintf (ret, n, "%s -c", "gzip");
else if (level >= 1 && level <= 9)
- snprintf (ret, n, "%s -c -%d", str_gzip, level);
+ snprintf (...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
...compress: cannot use optional level parameter with this compression type");
return -1;
}
- snprintf (ret, n, "%s -c", str_compress);
+ snprintf (ret, n, "%s -c", "compress");
return 0;
}
else if (STREQ (ctype, "gzip")) {
CHECK_SUPPORTED ("gzip");
if (level == -1)
- snprintf (ret, n, "%s -c", str_gzip);
+ snprintf (ret, n, "%s -c", "gzip");
else if (level >= 1 && level <= 9)
- snprintf (ret, n, "%s -c -%d", str_gzip, level);
+ snprintf (...
2017 Jul 27
3
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
This is a simpler patch that removes GUESTFSD_EXT_CMD completely.
2017 Jul 24
6
[PATCH 0/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
Replace GUESTFSD_EXT_CMD with a command line option
‘./guestfsd --print-external-commands’