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?
Asked
Active
Viewed 1.3k times
1 Answers
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
sds
- 2,108