sudo xrandr --addmode LVDS1 1976x1080_60.00 X Error of failed request: BadMatch (invalid parameter...
When I try to change resolution this comes:
$ sudo xrandr --addmode LVDS1 1976x1080_60.00
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 32
Current serial number in output stream: 33
Please help me.
xorg display display-resolution xrandr
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
When I try to change resolution this comes:
$ sudo xrandr --addmode LVDS1 1976x1080_60.00
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 32
Current serial number in output stream: 33
Please help me.
xorg display display-resolution xrandr
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
When I try to change resolution this comes:
$ sudo xrandr --addmode LVDS1 1976x1080_60.00
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 32
Current serial number in output stream: 33
Please help me.
xorg display display-resolution xrandr
When I try to change resolution this comes:
$ sudo xrandr --addmode LVDS1 1976x1080_60.00
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 32
Current serial number in output stream: 33
Please help me.
xorg display display-resolution xrandr
xorg display display-resolution xrandr
edited Oct 14 '17 at 8:09
Thomas
3,77981527
3,77981527
asked Oct 14 '17 at 8:07
Ayush GargAyush Garg
612
612
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I don't how you went about it but these are the steps I found that should be used:
Use xrandr to make sure that the new mode can fit within the maximum framebuffer size:
xrandr | grep maximum
Use gtf to create a mode line:
gtf 1440 900 59.9
Output would look like this:
# 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
Modeline "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add new mode from
step 2
using xrandr
xrandr --newmode "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add this newly added mode to the desired output (VGA/LVDS etc):
xrandr --addmode VGA 1440x900_59.90
Choose the new mode:
xrandr --output VGA --mode 1440x900_59.90
Note:
Change these 1440x900_59.90
numbers to 1976x1080_60.00
based on your query.
Source:
https://ubuntuforums.org/showthread.php?t=1112186
https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions
2
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f964796%2fsudo-xrandr-addmode-lvds1-1976x1080-60-00-x-error-of-failed-request-badmatch%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't how you went about it but these are the steps I found that should be used:
Use xrandr to make sure that the new mode can fit within the maximum framebuffer size:
xrandr | grep maximum
Use gtf to create a mode line:
gtf 1440 900 59.9
Output would look like this:
# 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
Modeline "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add new mode from
step 2
using xrandr
xrandr --newmode "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add this newly added mode to the desired output (VGA/LVDS etc):
xrandr --addmode VGA 1440x900_59.90
Choose the new mode:
xrandr --output VGA --mode 1440x900_59.90
Note:
Change these 1440x900_59.90
numbers to 1976x1080_60.00
based on your query.
Source:
https://ubuntuforums.org/showthread.php?t=1112186
https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions
2
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
add a comment |
I don't how you went about it but these are the steps I found that should be used:
Use xrandr to make sure that the new mode can fit within the maximum framebuffer size:
xrandr | grep maximum
Use gtf to create a mode line:
gtf 1440 900 59.9
Output would look like this:
# 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
Modeline "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add new mode from
step 2
using xrandr
xrandr --newmode "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add this newly added mode to the desired output (VGA/LVDS etc):
xrandr --addmode VGA 1440x900_59.90
Choose the new mode:
xrandr --output VGA --mode 1440x900_59.90
Note:
Change these 1440x900_59.90
numbers to 1976x1080_60.00
based on your query.
Source:
https://ubuntuforums.org/showthread.php?t=1112186
https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions
2
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
add a comment |
I don't how you went about it but these are the steps I found that should be used:
Use xrandr to make sure that the new mode can fit within the maximum framebuffer size:
xrandr | grep maximum
Use gtf to create a mode line:
gtf 1440 900 59.9
Output would look like this:
# 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
Modeline "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add new mode from
step 2
using xrandr
xrandr --newmode "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add this newly added mode to the desired output (VGA/LVDS etc):
xrandr --addmode VGA 1440x900_59.90
Choose the new mode:
xrandr --output VGA --mode 1440x900_59.90
Note:
Change these 1440x900_59.90
numbers to 1976x1080_60.00
based on your query.
Source:
https://ubuntuforums.org/showthread.php?t=1112186
https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions
I don't how you went about it but these are the steps I found that should be used:
Use xrandr to make sure that the new mode can fit within the maximum framebuffer size:
xrandr | grep maximum
Use gtf to create a mode line:
gtf 1440 900 59.9
Output would look like this:
# 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
Modeline "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add new mode from
step 2
using xrandr
xrandr --newmode "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
Add this newly added mode to the desired output (VGA/LVDS etc):
xrandr --addmode VGA 1440x900_59.90
Choose the new mode:
xrandr --output VGA --mode 1440x900_59.90
Note:
Change these 1440x900_59.90
numbers to 1976x1080_60.00
based on your query.
Source:
https://ubuntuforums.org/showthread.php?t=1112186
https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions
edited Oct 14 '17 at 14:38
answered Oct 14 '17 at 14:23
George UdosenGeorge Udosen
21.1k94569
21.1k94569
2
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
add a comment |
2
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
2
2
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
Those are the steps that create the error when doing the "--addmode" step.
– JosephK
Mar 29 '18 at 1:27
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f964796%2fsudo-xrandr-addmode-lvds1-1976x1080-60-00-x-error-of-failed-request-badmatch%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown