It seems you're experiencing an issue with inconsistent VM window sizes in Parallels 18/19 when using Linux VMs like Ubuntu or Debian. While Parallels developers might not have a direct solution yet, you can indeed force a consistent window size by using a script to adjust the display settings automatically on login.
For Ubuntu/Debian, you can use the xrandr command to set a specific resolution. Here's an example script:
bash
#!/bin/bash
xrandr --output [your-display-output] --mode [desired-resolution]
Replace [your-display-output] with your display's name (you can find this by running xrandr without arguments) and [desired-resolution] with the resolution you want, such as 1920x1080.
Save this script, make it executable, and add it to your startup applications in Linux to run on login. This should help ensure your VM window size remains consistent between sessions.
Hopefully, Parallels will address this issue soon!
Last edited by a moderator: Oct 13, 2024