Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I ended up in this thread after searching online for a solution on how to get a minimally decent display resolution of a freshly installed Ubuntu 18.04 (beta 2). After understanding that recompiling the Parallels Tools wouldn't work with the given kernel version, I opted to figure out, if at least using some tricks, I could force X11 to boot into any resolution mode > 800x600. I found that the following solution provided me with a decent and fast graphical output of 1920x1200, which I could then scale down to my MBP 15'' 1680x1050 resolution. I simply added 'vga=0x03e5' at the end of GRUB_CMDLINE_LINUX_DEFAULT entry at the /etc/default/grub file. After that you have to run update-grub and reboot.
While obviously correct and a quick fix, it's most definitely not what Parallels will be doing. Though, I suspect that GPL'ing their code wouldn't hurt them either, as it's not exactly rocket-science. It might even lower their TCO in the long run. I wonder if product management reads those forum entries.If you want to have fully working Parallels Tools you can use this fix I made:
https://gist.github.com/rudolfratusinski/a4d9e3caff11a4d9d81d2e84abc9afbf
Parallels tech - it was quick to fix, don't let people to wait for so long to fix such a stupid thing.
Worked for me on Fedora 28 - thanks!If you want to have fully working Parallels Tools you can use this fix I made:
https://gist.github.com/rudolfratusinski/a4d9e3caff11a4d9d81d2e84abc9afbf
Parallels tech - it was quick to fix, don't let people to wait for so long to fix such a stupid thing.
I agree. I think that they need to work on it to make sure it will work perfectly fine and according to all licensing rules, anyway - it has been few months since new kernel was introduced to public, and that doesn't look very good, although this product is the best one I have used for virtualization for macOSWhile obviously correct and a quick fix, it's most definitely not what Parallels will be doing. Though, I suspect that GPL'ing their code wouldn't hurt them either, as it's not exactly rocket-science. It might even lower their TCO in the long run. I wonder if product management reads those forum entries.
Thanks anyway for posting the fix for all of us to enjoy.
Thanks, worked great for me! Did you have to change the licensing to get it to work? Or was there another reason?If you want to have fully working Parallels Tools you can use this fix I made:
https://gist.github.com/rudolfratusinski/a4d9e3caff11a4d9d81d2e84abc9afbf
Parallels tech - it was quick to fix, don't let people to wait for so long to fix such a stupid thing.
I had to change it to make it work. I'm not a pro in linux kernel, and I didn't wanted to waste more time because of not working Parallels Tools so I just changed it. I believe there is more proper way of fixing that, but having it just working was my primary goalThanks, worked great for me! Did you have to change the licensing to get it to work? Or was there another reason?
thanks very much, it works on my MacBook Pro 15,4 (2015) too.When your mac has a 15,4 inch retina display, you can add
GRUB_GFXMODE=2880x1800to the /etc/default/grub file, than run sudo update-grub, and reboot.
Next you have to find lines in /usr/share/glib-2.0/schemas/org.gnome.desktop.interface.gschema.xml file
<key name="scaling-factor" type="u">and change the scaling factor
<default>1</default>
<key name="scaling-factor" type="u">than run sudo glib-compile-schemas /usr/share/glib-2.0/schemas, and reboot.
<default>2</default>
It worked on my MacBook Pro 15,4 (2017) and your Ubuntu will look more "retina"Good luck.