Why is the ‘Enhanced Session’ Option Grayed Out in Mint, and How Can I Increase Screen Resolution?

0
89
Asked By TechWanderer42 On

I'm currently using Linux Mint's Cinnamon edition on Hyper-V and want to switch to full-screen mode. However, the 'enhanced session' option is showing as grayed out, and my monitor's native resolution of 2560x1440 isn't available in the settings. I have an Intel UHD Graphics 770. I've heard that 'enhanced session' is only supported for Windows guest OS, so is it normal for it to be disabled for Linux? If so, what alternative methods can I use to increase the screen resolution, maybe through a Terminal command? I checked my kernel version, and it's 6.14.0-29-generic. Any suggestions would be appreciated!

2 Answers

Answered By ResolutionMaster99 On

Hey! It’s true that 'enhanced session' is mainly for Windows VMs in Hyper-V, which explains why it’s grayed out for you in Mint. As for screen resolution, you might have better luck using the xrandr command in Terminal. First, check your current available resolutions by running `xrandr` without arguments, and if 2560x1440 isn’t listed, you can try adding it manually. Here’s a quick guide:

1. Create a new mode: `cvt 2560 1440 60` (or adjust the refresh rate if necessary)
2. Then, use the output from cvt to add a new mode: `xrandr --newmode `
3. Finally, add it to your display: `xrandr --addmode `
4. Set it: `xrandr --output --mode `

Replace ``, ``, and `` with the appropriate values you get from the commands. This should help you get your desired resolution! Good luck!

Answered By MintyFresh_88 On

I can confirm that 'enhanced session' is indeed not applicable for Linux in most Hyper-V setups. If xrandr doesn't work out, another option is to consider installing the Linux Integration Services (LIS) for better graphics performance and more seamless integration with Hyper-V. Keep an eye on your graphics driver settings too; sometimes certain drivers have their own interfaces that might enable higher resolutions. If you're running Cinnamon, check the display settings there after any changes!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.