0

/etc/X11/xorg.conf is not present on Ubuntu 15.10 what should I have to edit?

  • Video Card: Advanced Micro Devices, Inc. [AMD/ATI]: Wrestler [Radeon HD 6320]
  • Driver: X.Org X server - AMD/ATI display driver wrapper by xserver- xorg-video-ati
  • Monitor: Samsung s19b150n

The command(s) I run:

cvt 1360 768
xrandr --newmode "1360x768_60.00" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
xrandr --addmode DVI-0 1360x768_60.00
Jacob Vlijm
  • 85,475

1 Answers1

0

You can script the commands you ran and run it at login or you can edit xorg.conf

See How to run a command at login?

and http://blog.bodhizazen.com/linux/use-xrandr-to-set-a-screen-resolution/

Some of the graphical tools should do this for you (set a resolution) options lxrandr , grandr, the grandr applet, ARandR, and Krandr.

The graphical tools may not if you need to add modes, hard to say, need a better idea of what you are running and what happens when you reboot.

If you need help, post your hardware, what driver you are using, and the exact commands you ran and we can convert them or make suggestions for xorg.conf

Script:

#!/bin/bash
xrandr --newmode "1360x768_60.00" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
xrandr --addmode DVI-0 1360x768_60.00

See How to run a command at login? for running it at login.

Panther
  • 104,528