Linux users come across a common problem in which they dont find their native monitor resolution and instead they left with the default resolution of 1024*768. This is because the system couldn’t identify the graphics card driver.
Don’t worry, with simple steps you can add your own desired resolution and make the changes permanent in your system even when the “displays” menu says “unknown” monitor.
Type the following command in your terminal to know the resolutions available in your system
xrandr
- Your current resolution will be marked by ‘*’.
- Now that you identified the resolutions available its time to add your own desired resolution.
- For example, if you want to add the resolution of 1280*1024 type the following command in terminal,
cvt 1280 1024 75 (75 denotes the refresh rate in Hz).
- You will get modeline with many paramaters which will look like,
Modeline "1280x1024_75.00" 138.75 1280 1368 1504 1728 1024 1027 1034 1072 -hsync +vsync
Next, the new resolution mode can be created using the below command and press Enter
xrandr –newmode "1280x1024_75.00" 138.75 1280 1368 1504 1728 1024 1027 1034 1072 -hsync +vsync
Now you can check the new mode by typing the command,
xrandr
Next, the new mode should be added to list of native resolutions by the command,
xrandr --addmode VGA1 "1280x1024_75.00"
- Type the command to check if the resolution is added.
xrandr
Before you can mess up with the xorg.conf file which will be explained in step 6 you need to have some details in your hand like,
Identifier, for example Identifier "Screen0"
Device, for example Device "Device0"
Monitor, for example Monitor "VGA1"
Driver, for example Driver “ i915”
- Mostly identifier and device name can be obtained from “displays” option from “dash home”
- While monitor can checked using xrandr and driver information can be obtained using the command,
sudo lshw -class display|grep "driver"
Now that you have the essential details in hand its time to make the changes permanents by editing xorg.conf file available in the location /etc/X11/xorg.conf.
To achieve this, type the following command in terminal,
sudo gedit /etc/X11/xorg.conf
Some of you would get error executing this command because here gedit indicates the text editor(like notepad) with which you are editing the xorg.conf file. So, if you are using someother text editor as default just replace gedit with it.
Don’t forget to enter your administrator password and press Enter.
Type the following in the editor,
Section "Monitor"
Identifier "VGA1"
Modeline "1280x1024_75.00" 138.75 1280 1368 1504 1728 1024 1027 1034 1072 -hsync +vsync
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "VGA1"
SubSection "Display"
Modes "1280x1024_75.00"
EndSubSection
EndSection
Section "Device"
Identifier "Device0"
Driver "i915"
EndSection
- Save and close it.
The final step is setting the mode you created as active. To achieve it type the following command,
xrandr –output VGA1 –mode 1280x1024_75.00
Press enter and your screen resolution is changed.
If you get a error message “xrandr: cannot find mode 1280*1024_75.00” , the problem is with the “*” you entered so enter as 1280x1024_75.00 and not 1280*1024_75.00.
Feedback
Hope you enjoyed reading this article. We are a bunch of Linux (Ubuntu) users trying to guide you on fixing problems or on customizing Linux. If you want any particular topic to be discussed here, do let us know via comments.
Related Posts
-
January 9, 2010 -
December 28, 2009 70+ Stunning HDR images with useful Photoshop Tutorials
-
Popular
-
Tips to shoot excellent Panoramic Photographs
December 15, 2012 By Mohamed Rias -
Notable Tips for shooting Awesome Wildlife photographs
December 8, 2012 By -
12 Best Mid Range DSLR cameras
December 6, 2012 By Mohamed Rias -
How to set up navigation menus
November 23, 2012 By Mohamed Rias -
9gag Clone Blogger Theme
October 29, 2012 By Mohamed Rias
-
200+ Ultimate Collection of Photoshop Plugins
February 19, 2010 By -
65 Amazing High Resolution 3D Wallpapers for your Desktop
September 5, 2012 By Mohamed Rias -
Notable Tips for shooting Awesome Wildlife photographs
December 8, 2012 By -
45+ Surreal Infrared photography Inspirations and Tips
December 2, 2010 By -
65+ Stunning Macro Photographs with tutorials
May 24, 2012 By
-
45+ surreal Long Exposure Photography Inspirations
January 6, 2010 By Mohamed Rias -
20+ incredible Gigapixel Photography Inspirations
February 4, 2010 By Mohamed Rias -
Show Adsense ads below post title
May 16, 2009 By Mohamed Rias -
25+ Breathtaking examples of Natural sky Photography
February 2, 2010 By -
How to add multiple Authors in Blogger
January 9, 2010 By
Editor’s Pick
-
February 19, 2010 200+ Ultimate Collection of Photoshop Plugins
Photoshop is a powerful image editing software which is very useful for web designers and photographers to create desired effects in the images. But sometimes it’s difficult to perform certain tasks manually in photoshop. Once there was a belief that only designers who have mastered photoshop can create special effects on photographs or images. But…
-
December 8, 2012 Notable Tips for shooting Awesome Wildlife photographs
You can remark it as wild-time game, which surely it is. Wild is the community for animals and not ours so it’s there to decide what they will do and what they want to. You can tell them to make some gesture that well-suit your need, or you can’t ask they to align up in…
-
December 2, 2010 45+ Surreal Infrared photography Inspirations and Tips
In Infrared Photography the image sensor used is highly sensitive to infrared wavelengths of light. We all know that white light is composed of several bands of colours known as spectrum and the wavelengths ranging between 750nm to about 1200 nm, falls on infrared (IR) band. The spectrum used is in this technique is termed…
-
May 24, 2012 65+ Stunning Macro Photographs with tutorials
We are often bothered and eluded by the large things like landscape, river views, lakes etc. but we rarely look to the smallest things in our world. Macro photography is one of those medium which makes you feel that even the smallest things have many parts to play in this globe. Macro photography means that…
-
December 15, 2012 Tips to shoot excellent Panoramic Photographs
Recently, making out panoramic photos has become much easier as your software stitches them quite beautifully together. Photoshop is quite skillful and master in doing that; it has got a command called Photo Merge that weaves your photos once you hit it. Now, software is mere medium which we use to ease our post works,…
Leave a reply