Displaying 10 results from an estimated 10 matches for "osdistro".
2009 Jul 16
1
[PATCH] Differentiate 'distro' and 'distrofamily' in Sys::Guestfs::Lib
...ns(+), 12 deletions(-)
diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm
index 925c494..df3bbe1 100644
--- a/perl/lib/Sys/Guestfs/Lib.pm
+++ b/perl/lib/Sys/Guestfs/Lib.pm
@@ -475,8 +475,13 @@ Filesystem content, if we could determine it. One of: "linux-grub",
=item osdistro
(For Linux root partitions only).
-Operating system distribution. One of: "fedora", "redhat",
-"debian".
+Operating system distribution. One of: "fedora", "rhel", "centos",
+"scientific", "debian".
+
+=item osdistr...
2009 Jul 16
1
[REPOST] Differentiate 'distro' and 'distrofamily' in Sys::Guestfs::Lib
I was slightly too quick off the marks with the first patch. This updated patch
modifies all of virt-inspector's output types to take account of distrofamily.
2009 Jul 20
1
[PATCH] Replace 'distrofamily' with feature tags
...stfs/Lib.pm
+++ b/perl/lib/Sys/Guestfs/Lib.pm
@@ -478,10 +478,16 @@ Filesystem content, if we could determine it. One of: "linux-grub",
Operating system distribution. One of: "fedora", "rhel", "centos",
"scientific", "debian".
-=item osdistrofamily
+=item package_format
(For Linux root partitions only)
-Operating system distribution family. One of: "redhat", "debian".
+The package format used by the guest distribution. One of: "rpm", "dpkg".
+
+=item package_management
+
+(For Linux root partit...
2009 Jul 21
1
[PATCH] Split $os->{version} into $os->{major_version} and $os->{minor_version}
...e here, because it might be a symlink
+ if ($g->exists ("/etc/redhat-release")) {
$r->{package_format} = "rpm";
$_ = $g->cat ("/etc/redhat-release");
- if (/Fedora release (\d+\.\d+)/) {
+ if (/Fedora release (\d+)(?:\.(\d+))?/) {
$r->{osdistro} = "fedora";
- $r->{osversion} = "$1";
+ $r->{os_major_version} = "$1";
+ $r->{os_minor_version} = "$2" if(defined($2));
$r->{package_management} = "yum";
}
@@ -650,16 +657,23 @@ sub _check_linux_root...
2010 Dec 29
1
I can''t install PV ubuntu in my CentOS5.5 based xen
...self._prepare_kernel_and_initrd(guest, distro, meter)
File
"/usr/lib/python2.4/site-packages/virtinst/DistroInstaller.py", line
194, in _prepare_kernel_and_initrd
type=self.os_type, distro=distro)
File "/usr/lib/python2.4/site-packages/virtinst/OSDistro.py",
line 137, in acquireKernel
scratchdir, type, distro)
File "/usr/lib/python2.4/site-packages/virtinst/OSDistro.py",
line 123, in _acquireMedia
return (store.acquireKernel(guest, fetcher, progresscb),
File "/usr/lib/python2.4/site-packa...
2008 Jul 19
1
Virt-manager ( SNV93) failed to perform install CentOS DomU via nfs share
...inst/DistroManager.py", line 194, in _prepare_kernel_and_initrd
File "/export/builds/xvm_93/proto/install/usr/lib/python2.4/site-packages/virtinst/DistroManager.py", line 107, in acquireKernel
File "/export/builds/xvm_93/proto/install/usr/lib/python2.4/site-packages/virtinst/OSDistro.py", line 90, in acquireKernel
File "/export/builds/xvm_93/proto/install/usr/lib/python2.4/site-packages/virtinst/ImageFetcher.py", line 151, in acquireFile
ValueError: Invalid file location given: No such file or directory
Unable to complete install: ''Invalid file locati...
2011 Oct 03
0
creating C6 xen VM and virt-install
List,
Now that Centos 6 is here, virt-install fails to launch an install for a C6 xen domU.
The virt-install script is part of libvirt and is in package:
python-virtinst.noarch
the script, OSDistro.py, has a path hard-coded for a rhelX or centos VM install. IOW, ./images/xen is appended to
the provided mirror URL to get the kernel/initrd.img pair needed for a netboot.
Centos 6 repos don't have this subfolder in the images branch, but they have ./images/isolinux.
Is there a reason that ....
2009 May 25
2
how to set ''extra'' parameter of xen configuration file?
Hi,all
how to set ''extra'' parameter of xen configuration file?
I found several format in this parameter, such as:
extra = "text ks=nfs:192.168.1.254:/disk1/yum/centos5/ks.xen.centos5.txt" or
extra = "headless ip=dhcp method=nfs:129.158.218.44:/mnt lang=en_US keymap=us ksdevice=eth0"
Is there a specification to show how to edit this parameter, and to
2010 Jun 08
2
[PATCH 1/2] Target: Pass os description to create_guest
This will allow use of raw data from os description in addition to libvirt XML
when writing guest output.
---
lib/Sys/VirtV2V/Target/LibVirt.pm | 2 +-
lib/Sys/VirtV2V/Target/RHEV.pm | 2 +-
v2v/virt-v2v.pl | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/Sys/VirtV2V/Target/LibVirt.pm b/lib/Sys/VirtV2V/Target/LibVirt.pm
index
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...OUT;
+ }
}
OUT:
@@ -785,13 +785,13 @@ sub _check_linux_root
if ($g->exists ("/etc/redhat-release")) {
$r->{package_format} = "rpm";
- $_ = $g->cat ("/etc/redhat-release");
- if (/Fedora release (\d+)(?:\.(\d+))?/) {
- $r->{osdistro} = "fedora";
- $r->{os_major_version} = "$1";
- $r->{os_minor_version} = "$2" if(defined($2));
- $r->{package_management} = "yum";
- }
+ $_ = $g->cat ("/etc/redhat-release");
+ if (/Fedora release (\d+)(?:\.(\d+...