kiranchavala commented on code in PR #483:
URL: 
https://github.com/apache/cloudstack-documentation/pull/483#discussion_r1972912059


##########
source/adminguide/virtual_machines/importing_vmware_vms_into_kvm.rst:
##########
@@ -62,12 +68,57 @@ You can also install the RPM manually from 
https://fedorapeople.org/groups/virt/
 
 For Debian-based distributions:
 
+Ubuntu don’t seem to ship the virtio-win package with drivers, which causes 
virt-v2v not to convert the VMWare Windows guests to virtio profiles. This 
could result in slow IDE drives and Intel E1000 NICs. As a workaround, we can 
follow the below steps to install the package from the RPM on all KVM hosts 
running the virt-v2v:
+
     ::
 
         apt install virtio-win (if the package is not available, then manual 
steps will be required to install the virtio drivers for windows)
+        
+        wget 
https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.noarch.rpm
+
+        # install “alien” which can convert rpms to debs
+        apt -y install alien
+
+        # the conversion, can take a while
+        alien -d virtio-win.noarch.rpm
+
+        # install the resulting deb
+        dpkg -i virtio-win*.deb
+
+In addition to this, we need to install the below package as well to avoid the 
error “virt-v2v: error: One of rhsrvany.exe or pvvxsvc.exe is missing in 
/usr/share/virt-tools“.
+
+    :: 
+     
+        wget -nd -O srvany.rpm 
https://kojipkgs.fedoraproject.org//packages/mingw-srvany/1.1/4.fc38/noarch/mingw32-srvany-1.1-4.fc38.noarch.rpm
+
+        alien -d srvany.rpm
+
+        dpkg -i *srvany*.deb
+
 
 The OVF tool (ovftool) must be installed on the destination KVM hosts if the 
hosts should export VM files (OVF) from vCenter. If not, the management server 
exports them (the management server doesn't require ovftool installed).
 
+Steps to install ovftool
+
+Download the ovftool from 
https://developer.broadcom.com/tools/open-virtualization-format-ovf-tool/latest
+
+    ::
+       
+       unzip VMware-ovftool-4.6.3-24031167-lin.x86_64.zip
+       
+       #create a soft link 
+
+       ln -s /$HOME/ovftool/ovftool /usr/bin/ovftool

Review Comment:
   @NuxRo thanks, addressed it , by putting under /usr/local/bin



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to