Hi again. I just checked the command you mentioned. When executing
$ systemctl status {hypervfcopyd,hypervkvpd,hypervvssd}.service
I got the following output
Unit hypervfcopyd.service could not be found.
Unit hypervkvpd.service could not be found.
Unit hypervvssd.service could not be found.
I then did the following
sudo dnf update
and
sudo dnf upgrade
followed by
sudo dnf install hyperv-daemons
After a reboot I now get the following output from
systemctl status hypervkvpd.service
● hypervkvpd.service - Hyper-V KVP daemon
Loaded: loaded (/usr/lib/systemd/system/hypervkvpd.service; static)
Active: active (running) since Fri 2023-12-15 22:51:01 CET; 1min 49s ago
Main PID: 711 (hypervkvpd)
Tasks: 1 (limit: 10613)
Memory: 568.0K
CPU: 3ms
CGroup: /system.slice/hypervkvpd.service
└─711 /usr/sbin/hypervkvpd -n
Dec 15 22:51:01 rocky1 systemd[1]: Started Hyper-V KVP daemon.
Dec 15 22:51:01 rocky1 KVP[711]: KVP starting; pid is:711
Dec 15 22:51:01 rocky1 KVP[711]: KVP LIC Version: 3.1
from
systemctl status hypervfcopyd.service
● hypervfcopyd.service - Hyper-V FCOPY daemon
Loaded: loaded (/usr/lib/systemd/system/hypervfcopyd.service; static)
Active: active (running) since Fri 2023-12-15 22:51:01 CET; 3min 51s ago
Main PID: 710 (hypervfcopyd)
Tasks: 1 (limit: 10613)
Memory: 204.0K
CPU: 1ms
CGroup: /system.slice/hypervfcopyd.service
└─710 /usr/sbin/hypervfcopyd -n
Dec 15 22:51:01 rocky1 systemd[1]: Started Hyper-V FCOPY daemon.
Dec 15 22:51:01 rocky1 HV_FCOPY[710]: starting; pid is:710
Dec 15 22:51:01 rocky1 HV_FCOPY[710]: kernel module version: 1
and from
systemctl status hypervvssd.service
● hypervvssd.service - Hyper-V VSS daemon
Loaded: loaded (/usr/lib/systemd/system/hypervvssd.service; static)
Active: active (running) since Fri 2023-12-15 22:51:01 CET; 4min 21s ago
Main PID: 712 (hypervvssd)
Tasks: 1 (limit: 10613)
Memory: 208.0K
CPU: 1ms
CGroup: /system.slice/hypervvssd.service
└─712 /usr/sbin/hypervvssd -n
Dec 15 22:51:01 rocky1 systemd[1]: Started Hyper-V VSS daemon.
Dec 15 22:51:01 rocky1 hypervvssd[712]: Hyper-V VSS: VSS starting; pid is:712
Dec 15 22:51:01 rocky1 hypervvssd[712]: Hyper-V VSS: VSS: kernel module version: 129
Now, when I use the following Copy-VMFile commandlet in PowerShell
Copy-VMFile -Name rocky1 -SourcePath .\Copytest.txt -DestinationPath '/home/markus' -FileSource HOST
that works as expected now and the file is copied to my home drive inside the rocky1 vm.
Unfortunately, copying and pasting into the Hyper-V console on Windows still doesn’t work. Not with Ctrl-V and also not with the menu option. This is no longer a pain for me, because i can copy a file via Copy-VMFile and PowerShell now, that the services work. Just wanted to give feedback about this. Hope this helps somebody.