skip to Main Content

how to disable fractional scaling by using the command terminal on ubuntu system, or restore the default scaling setting by using the command terminal?
Well, I have a remote server,and its system is ubuntu20.04;
I use it through the remote desktop connection program that comes with the Windows system.
I modified the fractional scaling of ubuntu system by enable fractional scaling;
and then I can’t use it through remote desktop connection.
Now I can only use the command line after remote connection through ssh.

The following is the result given by using windows Remote Desktop Connection.

enter image description here

Does anyone know what to do to recover?
Thanks for your advice and help!

2

Answers


  1. try

    gsettings reset org.gnome.desktop.interface scaling-factor
    

    or

    gsettings reset org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
    
    Login or Signup to reply.
  2. xrandr is what I usually use for managing screen resolution and scaling

    xrandr --output eDP-1 --scale 1.15

    Lastly, mainly being using i3 as WM. But from what I remember it applied to Gnome as well

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search