How to Change the Screen Resolution on Linux

Linux steps vary depending on your desktop environment (Ubuntu GNOME, KDE Plasma, XFCE, etc.), but the process is very similar across all major distributions.

On Ubuntu / GNOME

  1. Open Settings.
  2. Go to Displays.
  3. Under Resolution, choose your desired resolution.
  4. Click Apply.
  5. Confirm the change within the countdown to keep the new resolution.

On KDE Plasma

  1. Open System Settings.
  2. Select Display and Monitor.
  3. Go to Display Configuration.
  4. Choose a resolution from the Resolution dropdown.
  5. Click Apply.

On Linux Mint (Cinnamon)

  1. Open the MenuPreferences.
  2. Click Display.
  3. Select a resolution from the list.
  4. Click Apply.

Using Terminal (Universal Method)

If the GUI method is not available or you’re running a minimal environment, use:

1. View available resolutions

xrandr
Change the Screen Resolution on Linux
Linux Terminal

2. Set a resolution

Example:

xrandr --output HDMI-1 --mode 1920x1080

3. Add a custom resolution

cvt 1920 1080

Copy the generated modeline and run:

xrandr --newmode "1920x1080_60.00" <paste-modeline-here>
xrandr --addmode HDMI-1 1920x1080_60.00
xrandr --output HDMI-1 --mode 1920x1080_60.00

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *