search for: suse7

Displaying 6 results from an estimated 6 matches for "suse7".

Did you mean: suse
2001 Oct 03
2
Wine and SuSE7 ?
Does Wine run with SuSE 7.0? Bye, Andi --------------------------------------- Ceterum censo Microsoft esse dividendum
1997 Oct 09
2
your mail
On Thu, 9 Oct 1997, Lowell C. Savage wrote: > I didn't see a description in the various messages of where the file actually > is written. If it is written to the \\server\netlogon directory, don't you > get a locking problem with two or more users loggin in? I mean, if you have > a slow client logging on with one user, and a moment later, another user > logging on another
2007 Apr 05
2
"old" rpm version package handling broken!? (SuSE8)
Hi! Using (among others) the pretty old SuSE8.1, I cant get puppet to install packages. The rpm programms bahaviour was changed somewhen between versions 3 and 4 (sry, donĀ“t know exactly when) and the old version does not support the "--nosignature" and "--nodigest" params and "--oldpackage" is purely an update parameter so when trying to install a package I
2013 Sep 25
5
Re: [PATCH 3/4] Add SUSE converter
...d. > + > + # If the guest is using libata, IDE drives could have different names in the > + # guest from their libvirt device names. > + > + # Modern SUSE distros use libata, and IDE devices are presented as sdX > + my $libata = 1; > + > + # Disable libata for SUSE7/8, although this platform is unsupported > + if (_is_sles_family($g, $root)) { > + my $major_version = $g->inspect_get_major_version($root); > + if ($major_version eq '7' || > + $major_version eq '8') > + { > + $liba...
2013 Sep 24
5
[PATCH 0/4] Add SUSE guest converter to virt-v2v
This is a new conversion module to convert SUSE Linux and openSUSE guests. The converter is based on the RedHat module, and should offer the same functionality on both SUSE and RedHat hosts. There are a few additional messages in this module, such as reporting of packages when installing through zypper or the local virt-v2v repo. These messages don't necessarily flow unless verbose switches
2013 Sep 24
0
[PATCH 3/4] Add SUSE converter
...e in the appliance can be + # inferred. + + # If the guest is using libata, IDE drives could have different names in the + # guest from their libvirt device names. + + # Modern SUSE distros use libata, and IDE devices are presented as sdX + my $libata = 1; + + # Disable libata for SUSE7/8, although this platform is unsupported + if (_is_sles_family($g, $root)) { + my $major_version = $g->inspect_get_major_version($root); + if ($major_version eq '7' || + $major_version eq '8') + { + $libata = 0; + } + } + +...