Hyper-V guest services: Difference between revisions

From Alpine Linux
(Created page with "=How to install Hyper-V guest additions= Hyper-V tools is nicely packaged, so the install is simple, as follows: {{Cmd|apk add hvtools}}")
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
=How to install Hyper-V guest additions=
=How to install Hyper-V guest services=


Hyper-V tools is nicely packaged, so the install is simple, as follows:
Hyper-V tools is nicely packaged, so the install is simple, as follows:


{{Cmd|apk add hvtools}}
{{Cmd|apk add hvtools}}
Then enable the services
{{Cmd|rc-service hv_fcopy_daemon start}}
{{Cmd|rc-service hv_kvp_daemon start}}
{{Cmd|rc-service hv_vss_daemon start}}
Then to ensure these services start on boot
{{Cmd|rc-update add hv_fcopy_daemon}}
{{Cmd|rc-update add hv_kvp_daemon}}
{{Cmd|rc-update add hv_vss_daemon}}
[[category:Virtualization]]

Revision as of 07:43, 14 September 2019

How to install Hyper-V guest services

Hyper-V tools is nicely packaged, so the install is simple, as follows:

apk add hvtools

Then enable the services

rc-service hv_fcopy_daemon start

rc-service hv_kvp_daemon start

rc-service hv_vss_daemon start

Then to ensure these services start on boot

rc-update add hv_fcopy_daemon

rc-update add hv_kvp_daemon

rc-update add hv_vss_daemon