cvt is acting strange when defining resolutonX stuck when using OpenGLCan't display from remote host when...
Does "aurea" have the second meaning?
What publication claimed that Michael Jackson died in a nuclear holocaust?
I sent an angry e-mail to my interviewers about a conflict at my home institution. Could this affect my application?
Am I being scammed by a sugar daddy?
Writing mathematical symbol with bold
Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?
Dedicated bike GPS computer over smartphone
Does WiFi affect the quality of images downloaded from the internet?
Someone who is granted access to information but not expected to read it
Is it a good security practice to force employees hide their employer to avoid being targeted?
My players want to use called-shots on Strahd
Certain list transform
Should I worry about having my credit pulled multiple times while car shopping?
How can this shape perfectly cover a cube?
How long would it take for sucrose to undergo hydrolysis in boiling water?
Why did the Death Eaters wait to reopen the Chamber of Secrets?
Infect vs first strike
Integrate without expansion?
Short story about psychologist analyzing demon
Why is gun control associated with the socially liberal Democratic party?
Can a 40amp breaker be used safely and without issue with a 40amp device on 6AWG wire?
Does an African-American baby born in Youngstown, Ohio have a higher infant mortality rate than a baby born in Iran?
I received a gift from my sister who just got back from
What do I need to do, tax-wise, for a sudden windfall?
cvt is acting strange when defining resoluton
X stuck when using OpenGLCan't display from remote host when running X, but can when running xinitDefining a TV on a laptop as a separate xorg screen“crash” when switching users in Linux Mint 12X goes black when using SimpleScreenRecorderFullscreen programs only update when mouse movesarch linux strange message after installing xorg and virtualbox guest additionsrock64 strange video modesD-Bus error when starting XorgHow do I trigger a script when an Xorg session is focused?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am trying to define a new currently unsupported resolution on a virtual machine (Linux Deepin client) with a 1366×768 screen. So I first try to use command cvt
:
cvt 1366 768 60
and it returns:
# 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
which is incorrect as it changed the 1366
to 1368
! Why is this happening? I need this output to use it with X. So I am stuck!
xorg
add a comment |
I am trying to define a new currently unsupported resolution on a virtual machine (Linux Deepin client) with a 1366×768 screen. So I first try to use command cvt
:
cvt 1366 768 60
and it returns:
# 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
which is incorrect as it changed the 1366
to 1368
! Why is this happening? I need this output to use it with X. So I am stuck!
xorg
add a comment |
I am trying to define a new currently unsupported resolution on a virtual machine (Linux Deepin client) with a 1366×768 screen. So I first try to use command cvt
:
cvt 1366 768 60
and it returns:
# 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
which is incorrect as it changed the 1366
to 1368
! Why is this happening? I need this output to use it with X. So I am stuck!
xorg
I am trying to define a new currently unsupported resolution on a virtual machine (Linux Deepin client) with a 1366×768 screen. So I first try to use command cvt
:
cvt 1366 768 60
and it returns:
# 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
which is incorrect as it changed the 1366
to 1368
! Why is this happening? I need this output to use it with X. So I am stuck!
xorg
xorg
edited 2 mins ago
Stephen Kitt
190k26446522
190k26446522
asked 18 mins ago
71GA71GA
47611126
47611126
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The generated modeline is correct, CVT requires that horizontal counts are a multiple of 8:
All definitions referring to the horizontal timing, including the horizontal active pixels, horizontal total pixels, sync pulse duration and “Front porch” and “Back Porch” times, must be divisible by
eight, and preferably by higher powers of two.
1366 isn’t divisible by 8, so cvt
rounds up to the next integer which is, 1368. The generated modeline should work fine with your screen.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f524595%2fcvt-is-acting-strange-when-defining-resoluton%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
The generated modeline is correct, CVT requires that horizontal counts are a multiple of 8:
All definitions referring to the horizontal timing, including the horizontal active pixels, horizontal total pixels, sync pulse duration and “Front porch” and “Back Porch” times, must be divisible by
eight, and preferably by higher powers of two.
1366 isn’t divisible by 8, so cvt
rounds up to the next integer which is, 1368. The generated modeline should work fine with your screen.
add a comment |
The generated modeline is correct, CVT requires that horizontal counts are a multiple of 8:
All definitions referring to the horizontal timing, including the horizontal active pixels, horizontal total pixels, sync pulse duration and “Front porch” and “Back Porch” times, must be divisible by
eight, and preferably by higher powers of two.
1366 isn’t divisible by 8, so cvt
rounds up to the next integer which is, 1368. The generated modeline should work fine with your screen.
add a comment |
The generated modeline is correct, CVT requires that horizontal counts are a multiple of 8:
All definitions referring to the horizontal timing, including the horizontal active pixels, horizontal total pixels, sync pulse duration and “Front porch” and “Back Porch” times, must be divisible by
eight, and preferably by higher powers of two.
1366 isn’t divisible by 8, so cvt
rounds up to the next integer which is, 1368. The generated modeline should work fine with your screen.
The generated modeline is correct, CVT requires that horizontal counts are a multiple of 8:
All definitions referring to the horizontal timing, including the horizontal active pixels, horizontal total pixels, sync pulse duration and “Front porch” and “Back Porch” times, must be divisible by
eight, and preferably by higher powers of two.
1366 isn’t divisible by 8, so cvt
rounds up to the next integer which is, 1368. The generated modeline should work fine with your screen.
answered 7 mins ago
Stephen KittStephen Kitt
190k26446522
190k26446522
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f524595%2fcvt-is-acting-strange-when-defining-resoluton%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