search
Categories
Sponsors
VirtualMetric Hyper-V Monitoring, Hyper-V Reporting
Archive
Blogroll

Badges
MCSE
Community

Cozumpark Bilisim Portali
Uninstalling Hyper-V Linux Integration Services v3.2
Posted in Linux Server, Virtual Machine Manager | 2 Comments | 9,638 views | 28/01/2012 20:07

You may need to uninstall Hyper-V Linux Integration Services v3.2 due to some reasons.
Let’s read documentation and see if we can.

After my first look, i don’t see any difference between x86 and x64.
Lets check it on VM console and see if they are correct.

rpm -e microsoft-hyper-v-rhel6-41.1 kmod-microsoft-hyper-v-rhel6-41.1

Oops, it seems “microsoft-hyper-v-rhel6-41.1” and “kmod-microsoft-hyper-v-rhel6-41.1” are not exist on our VM.
Lets see their correct package names and versions by listing installed RPM packages.

rpm -qa | grep hyper

Note: If you couldn’t type pipe, you can use ALT+124 on Hyper-V console.

Wolaa correct package names and versions are:

microsoft-hyper-v-rhel6-43.1.x86_64
kmod-microsoft-hyper-v-rhel6-43.1.x86_64

So we can easily remove packages and you don’t need to care about OS version (x86 or x64)

rpm -e `rpm -qa | grep hyper`

You have to reboot your server after uninstall.


Comments (2)

Simon

February 12th, 2012
22:09:22

You just save my sanity. Thank you very much. Did a P2V from Hyper-V to vmware and got stuck on random crash.


GC

November 29th, 2020
13:55:05

It Worked on nov/2020. Only detail was to add some letters to the uninstall command: rpm -e `rpm -qa | grep hyper-v`



Leave a Reply