3

I'm trying to figure out how to find the screen resolutions available for a linux machine. If you set the wrong resolution or set vga=ask then it prompts you for available resolutions. Is there a way I can find that list somewhere after boot?

1 Answers1

5

X

If X is running, you can use

$ xdpyinfo  | grep 'dimensions:'

or

$ xrandr | fgrep '*'

or run your desktop monitor configuration tool.

See also Get display resolution from the command line for Linux Desktop.

Console

As root from the console:

# hwinfo --framebuffer

hwinfo is a SuSE tool, also available for

See also How to set the resolution in text consoles.

sds
  • 2,108