Thank you.
The problem for me was, that the kernal version 6.8.0-51 running on my Ubuntu 24.04. vm was not compatible with the Parallels Tools from the Parallels 18 release.
What I did is change the kernal version to 5.15.0-125 as it is running (and working with Parallels Tools) on my Ubuntu 22.04. vm. For that I downloaded all the .deb files from my Ubuntu 22.04. vm related to that kernal version:
Code:
sudo apt-get download \
linux-headers-5.15.0-125 \
linux-headers-5.15.0-125-generic \
linux-image-5.15.0-125-generic \
linux-modules-5.15.0-125-generic \
linux-modules-extra-5.15.0-125-generic
I transferred them to my Ubuntu 24.04. vm and installed them:
Code:
sudo dpkg -i linux-headers-5.15.0-125_*.deb \
linux-headers-5.15.0-125-generic_*.deb \
linux-image-5.15.0-125-generic_*.deb \
linux-modules-5.15.0-125-generic_*.deb \
linux-modules-extra-5.15.0-125-generic_*.deb
When rebooting the vm with sudo reboot, by pressing ESC while the vm is starting the GNU GRUB window should open, where I can select "Advanced options for Ubuntu" and then the kernel with which I want to start the vm.
To change the default to the 5.15.0-125 version, so that the vm always starts with it, I had to make changes to grub:
Code:
sudo nano /etc/default/grub
There change GRUB_DEFAULT=0 to:
Code:
GRUB_DEFAULT='Advanced options for Ubuntu>Ubuntu, with Linux 5.15.0-125-generic'
At last I had to update
and reboot the system:
Now my Ubuntu 24.04. was running with the 5.15.0-125 kernal (check the with "uname -r" in terminal) and I was able to manually install Parallels Tools!