Steps to add a new resolution 1366x768 @ 60 (Troubleshooting)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
I've just installed Ubuntu MATE 18.04 on a laptop and have a dual monitor setup, both displays worked out of the box and the native display even went off on boot. I now need to use 1366x768 resolution on one of the displays but it is not an option. I've added a resolution but the resulting resolution is not correct I accidentally added 1368x768
Trying again gives error:
cvt 1366 768 60
sudo xrandr --newmode "1366x768_60.00" 85.25 1366 1440 1576 1784 768 771 781 798 -hsync +vsync
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 31
Current serial number in output stream: 31
intel-graphics display-resolution
add a comment |Â
up vote
1
down vote
favorite
I've just installed Ubuntu MATE 18.04 on a laptop and have a dual monitor setup, both displays worked out of the box and the native display even went off on boot. I now need to use 1366x768 resolution on one of the displays but it is not an option. I've added a resolution but the resulting resolution is not correct I accidentally added 1368x768
Trying again gives error:
cvt 1366 768 60
sudo xrandr --newmode "1366x768_60.00" 85.25 1366 1440 1576 1784 768 771 781 798 -hsync +vsync
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 31
Current serial number in output stream: 31
intel-graphics display-resolution
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I've just installed Ubuntu MATE 18.04 on a laptop and have a dual monitor setup, both displays worked out of the box and the native display even went off on boot. I now need to use 1366x768 resolution on one of the displays but it is not an option. I've added a resolution but the resulting resolution is not correct I accidentally added 1368x768
Trying again gives error:
cvt 1366 768 60
sudo xrandr --newmode "1366x768_60.00" 85.25 1366 1440 1576 1784 768 771 781 798 -hsync +vsync
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 31
Current serial number in output stream: 31
intel-graphics display-resolution
I've just installed Ubuntu MATE 18.04 on a laptop and have a dual monitor setup, both displays worked out of the box and the native display even went off on boot. I now need to use 1366x768 resolution on one of the displays but it is not an option. I've added a resolution but the resulting resolution is not correct I accidentally added 1368x768
Trying again gives error:
cvt 1366 768 60
sudo xrandr --newmode "1366x768_60.00" 85.25 1366 1440 1576 1784 768 771 781 798 -hsync +vsync
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 31
Current serial number in output stream: 31
intel-graphics display-resolution
edited May 3 at 15:56
ñÃÂsýù÷
23.2k2191152
23.2k2191152
asked Apr 27 at 17:04
![](https://i.stack.imgur.com/RNdzF.png?s=32&g=1)
![](https://i.stack.imgur.com/RNdzF.png?s=32&g=1)
userDepth
86411035
86411035
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
To add a new mode to an output requires several commands in sequence, like so:
# create and name a new mode: "1366x768-0"
xrandr --newmode "1366x768-0" 75.61 1366 1406 1438 1574 768 771 777 800 -hsync -vsync
# attach the new mode to an output (VGA1)
xrandr --addmode VGA1 "1366x768-0"
# turn on the output using the new mode
xrandr --output VGA1 --mode "1366x768-0"
The reason for the error messages in the question is mode parameters cannot be changed. Use a new name (such as "1366x768-1") or remove the added mode. The sequence of commands to remove a mode follow:
# turn off the output
xrandr --output VGA1 --off
# detach the mode from the output
xrandr --delmode VGA1 "1366x768-0"
# remove the mode
xrandr --rmmode "1366x768-0"
Changes to xrandr
don't survive reboot. To make settings persist, ubstitute parameters as appropriate for your setup and save into a script in /usr/local/bin
and add it to Startup Applications. Then it will be run every time you log in. You might like to add it at boot up, rather than login.
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
To add a new mode to an output requires several commands in sequence, like so:
# create and name a new mode: "1366x768-0"
xrandr --newmode "1366x768-0" 75.61 1366 1406 1438 1574 768 771 777 800 -hsync -vsync
# attach the new mode to an output (VGA1)
xrandr --addmode VGA1 "1366x768-0"
# turn on the output using the new mode
xrandr --output VGA1 --mode "1366x768-0"
The reason for the error messages in the question is mode parameters cannot be changed. Use a new name (such as "1366x768-1") or remove the added mode. The sequence of commands to remove a mode follow:
# turn off the output
xrandr --output VGA1 --off
# detach the mode from the output
xrandr --delmode VGA1 "1366x768-0"
# remove the mode
xrandr --rmmode "1366x768-0"
Changes to xrandr
don't survive reboot. To make settings persist, ubstitute parameters as appropriate for your setup and save into a script in /usr/local/bin
and add it to Startup Applications. Then it will be run every time you log in. You might like to add it at boot up, rather than login.
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
add a comment |Â
up vote
2
down vote
accepted
To add a new mode to an output requires several commands in sequence, like so:
# create and name a new mode: "1366x768-0"
xrandr --newmode "1366x768-0" 75.61 1366 1406 1438 1574 768 771 777 800 -hsync -vsync
# attach the new mode to an output (VGA1)
xrandr --addmode VGA1 "1366x768-0"
# turn on the output using the new mode
xrandr --output VGA1 --mode "1366x768-0"
The reason for the error messages in the question is mode parameters cannot be changed. Use a new name (such as "1366x768-1") or remove the added mode. The sequence of commands to remove a mode follow:
# turn off the output
xrandr --output VGA1 --off
# detach the mode from the output
xrandr --delmode VGA1 "1366x768-0"
# remove the mode
xrandr --rmmode "1366x768-0"
Changes to xrandr
don't survive reboot. To make settings persist, ubstitute parameters as appropriate for your setup and save into a script in /usr/local/bin
and add it to Startup Applications. Then it will be run every time you log in. You might like to add it at boot up, rather than login.
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
To add a new mode to an output requires several commands in sequence, like so:
# create and name a new mode: "1366x768-0"
xrandr --newmode "1366x768-0" 75.61 1366 1406 1438 1574 768 771 777 800 -hsync -vsync
# attach the new mode to an output (VGA1)
xrandr --addmode VGA1 "1366x768-0"
# turn on the output using the new mode
xrandr --output VGA1 --mode "1366x768-0"
The reason for the error messages in the question is mode parameters cannot be changed. Use a new name (such as "1366x768-1") or remove the added mode. The sequence of commands to remove a mode follow:
# turn off the output
xrandr --output VGA1 --off
# detach the mode from the output
xrandr --delmode VGA1 "1366x768-0"
# remove the mode
xrandr --rmmode "1366x768-0"
Changes to xrandr
don't survive reboot. To make settings persist, ubstitute parameters as appropriate for your setup and save into a script in /usr/local/bin
and add it to Startup Applications. Then it will be run every time you log in. You might like to add it at boot up, rather than login.
To add a new mode to an output requires several commands in sequence, like so:
# create and name a new mode: "1366x768-0"
xrandr --newmode "1366x768-0" 75.61 1366 1406 1438 1574 768 771 777 800 -hsync -vsync
# attach the new mode to an output (VGA1)
xrandr --addmode VGA1 "1366x768-0"
# turn on the output using the new mode
xrandr --output VGA1 --mode "1366x768-0"
The reason for the error messages in the question is mode parameters cannot be changed. Use a new name (such as "1366x768-1") or remove the added mode. The sequence of commands to remove a mode follow:
# turn off the output
xrandr --output VGA1 --off
# detach the mode from the output
xrandr --delmode VGA1 "1366x768-0"
# remove the mode
xrandr --rmmode "1366x768-0"
Changes to xrandr
don't survive reboot. To make settings persist, ubstitute parameters as appropriate for your setup and save into a script in /usr/local/bin
and add it to Startup Applications. Then it will be run every time you log in. You might like to add it at boot up, rather than login.
edited May 14 at 14:43
answered May 4 at 7:04
xiota
1,0561422
1,0561422
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
add a comment |Â
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
Upvoted yesterday, edited today as you forgot to add how to do it automatically. ;-)
â Fabby
May 9 at 18:23
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
How would I add to the script to also turn off my other display plugged with HDMI?
â userDepth
May 14 at 13:46
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1028868%2fsteps-to-add-a-new-resolution-1366x768-60-troubleshooting%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password