I faced a similar issue with Parallels Tools on Debian ARM KDE. It looks like the ptiagent-arm64 process is trying to start without proper root permissions during the desktop session login.
You can try these fixes:
- Remove and reinstall Parallels Tools completely:
sudo /usr/lib/parallels-tools/install --remove
sudo reboot
Then reinstall:
sudo apt-get install -y dkms libelf-dev linux-headers-$(uname -r) build-essential
sudo ./install
- Check ownership and permissions:
ls -l /usr/lib/parallels-tools/installer/ptiagent-arm64
- Try running manually as root:
sudo /usr/lib/parallels-tools/installer/ptiagent-arm64
- KDE Wayland on Debian ARM sometimes has compatibility issues with Parallels Tools. Some users reported fewer issues using a lighter desktop like XFCE.
- Also check if an autostart entry is launching the binary incorrectly:
~/.config/autostart/
or
/etc/xdg/autostart/
There may be a broken desktop entry calling ptiagent-arm64 without sudo/root privileges.
Hopefully Parallels releases a fix soon for Debian 13 ARM compatibility. -
Last edited by a moderator:
May 10, 2026 at 11:12 PM