parent
b1b86869b4
commit
ed67452fc5
@ -0,0 +1,14 @@
|
||||
hyperv-daemon for Debian
|
||||
------------------------
|
||||
|
||||
If you want to change screen resolution on Linux guest,
|
||||
plese update kernel parameter.
|
||||
|
||||
1. edit /etc/default/grub file
|
||||
- add 'video=hyperv_fb:"horizontal"x"vertical"' to
|
||||
'GRUB_CMDLINE_LINUX_DEFAULT=' or 'GRUB_CMDLINE_LINUX=' line
|
||||
(e.g. GRUB_CMDLINE_LINUX=video=hyperv_fb:1280x1024)
|
||||
2. then, exec update-grub
|
||||
3. reboot Linux guest
|
||||
|
||||
-- Hideki Yamane <henrich@debian.org> Thu, 28 May 2015 10:23:52 +0900
|
@ -0,0 +1,15 @@
|
||||
PROGS = \
|
||||
hv_fcopy_daemon \
|
||||
hv_kvp_daemon \
|
||||
hv_vss_daemon
|
||||
|
||||
OUTDIR = tools/hv
|
||||
prefix = /usr/sbin
|
||||
|
||||
include ../../Makefile.inc
|
||||
|
||||
install-local-progs: $(PROGS)
|
||||
@for p in $^; do \
|
||||
echo " install -m755 '$$p' '$(DESTDIR)/$(prefix)'"; \
|
||||
install -D -m755 "$$p" "$(DESTDIR)/$(prefix)/$$(basename $$p)"; \
|
||||
done
|
@ -0,0 +1,10 @@
|
||||
[Unit]
|
||||
Description=Hyper-V file copy service (FCOPY) daemon
|
||||
ConditionVirtualization=microsoft
|
||||
ConditionPathExists=/dev/vmbus/hv_fcopy
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/hv_fcopy_daemon -n
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Hyper-V key-value pair (KVP) daemon
|
||||
ConditionVirtualization=microsoft
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/hv_kvp_daemon -n
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Hyper-V volume shadow copy service (VSS) daemon
|
||||
ConditionVirtualization=microsoft
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/hv_vss_daemon -n
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -0,0 +1 @@
|
||||
debian/hyperv-daemons.*.service lib/systemd/system/
|
Loading…
Reference in new issue