Extract X11 configuration information from running instance
Since I had a hard disk die on me, I figured I could easily try some other OS (I usually run Ubuntu). Turns out that Ubuntu flawlessly recognizes my video card and monitor (X11 works right out of the box), and none of the other systems I tried gets anything working (I tried CentOS and FreeBSD). In my now working version of Ubuntu I cannot find a configuration file with information I could try to use with one of the other versions, which makes me guess that it just detects the hardware every time. Can I extract its choice for drivers and configuration options somehow (so I can try these same options in the other systems)?
ubuntu xorg xorg.conf
add a comment |
Since I had a hard disk die on me, I figured I could easily try some other OS (I usually run Ubuntu). Turns out that Ubuntu flawlessly recognizes my video card and monitor (X11 works right out of the box), and none of the other systems I tried gets anything working (I tried CentOS and FreeBSD). In my now working version of Ubuntu I cannot find a configuration file with information I could try to use with one of the other versions, which makes me guess that it just detects the hardware every time. Can I extract its choice for drivers and configuration options somehow (so I can try these same options in the other systems)?
ubuntu xorg xorg.conf
@Giles thanks for the tag correction. Took me looking at wikipedia to realise that X11 is the protocal, and Xorg is the implementation that indeed I am running.
– kasterma
Jan 7 '11 at 2:21
add a comment |
Since I had a hard disk die on me, I figured I could easily try some other OS (I usually run Ubuntu). Turns out that Ubuntu flawlessly recognizes my video card and monitor (X11 works right out of the box), and none of the other systems I tried gets anything working (I tried CentOS and FreeBSD). In my now working version of Ubuntu I cannot find a configuration file with information I could try to use with one of the other versions, which makes me guess that it just detects the hardware every time. Can I extract its choice for drivers and configuration options somehow (so I can try these same options in the other systems)?
ubuntu xorg xorg.conf
Since I had a hard disk die on me, I figured I could easily try some other OS (I usually run Ubuntu). Turns out that Ubuntu flawlessly recognizes my video card and monitor (X11 works right out of the box), and none of the other systems I tried gets anything working (I tried CentOS and FreeBSD). In my now working version of Ubuntu I cannot find a configuration file with information I could try to use with one of the other versions, which makes me guess that it just detects the hardware every time. Can I extract its choice for drivers and configuration options somehow (so I can try these same options in the other systems)?
ubuntu xorg xorg.conf
ubuntu xorg xorg.conf
edited Jan 7 '11 at 0:01
Gilles
52.8k15114161
52.8k15114161
asked Jan 6 '11 at 21:24
kastermakasterma
15115
15115
@Giles thanks for the tag correction. Took me looking at wikipedia to realise that X11 is the protocal, and Xorg is the implementation that indeed I am running.
– kasterma
Jan 7 '11 at 2:21
add a comment |
@Giles thanks for the tag correction. Took me looking at wikipedia to realise that X11 is the protocal, and Xorg is the implementation that indeed I am running.
– kasterma
Jan 7 '11 at 2:21
@Giles thanks for the tag correction. Took me looking at wikipedia to realise that X11 is the protocal, and Xorg is the implementation that indeed I am running.
– kasterma
Jan 7 '11 at 2:21
@Giles thanks for the tag correction. Took me looking at wikipedia to realise that X11 is the protocal, and Xorg is the implementation that indeed I am running.
– kasterma
Jan 7 '11 at 2:21
add a comment |
1 Answer
1
active
oldest
votes
Xorg -configure
(run as root from a text console) produces a configuration file that should be equivalent to what Xorg autodetects.
But that may not be enough, because it's likely that the reason your video card works in Ubuntu is that it has more recent drivers, or installs proprietary drivers that the other OSes don't install. Look in /var/log/Xorg.0.log
for startup messages (that's the Ubuntu location, it may be different on other OSes), and see where they differ.
It fails withServer is already active
if it's already running.
– dhill
Aug 24 '15 at 13:08
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f230004%2fextract-x11-configuration-information-from-running-instance%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
Xorg -configure
(run as root from a text console) produces a configuration file that should be equivalent to what Xorg autodetects.
But that may not be enough, because it's likely that the reason your video card works in Ubuntu is that it has more recent drivers, or installs proprietary drivers that the other OSes don't install. Look in /var/log/Xorg.0.log
for startup messages (that's the Ubuntu location, it may be different on other OSes), and see where they differ.
It fails withServer is already active
if it's already running.
– dhill
Aug 24 '15 at 13:08
add a comment |
Xorg -configure
(run as root from a text console) produces a configuration file that should be equivalent to what Xorg autodetects.
But that may not be enough, because it's likely that the reason your video card works in Ubuntu is that it has more recent drivers, or installs proprietary drivers that the other OSes don't install. Look in /var/log/Xorg.0.log
for startup messages (that's the Ubuntu location, it may be different on other OSes), and see where they differ.
It fails withServer is already active
if it's already running.
– dhill
Aug 24 '15 at 13:08
add a comment |
Xorg -configure
(run as root from a text console) produces a configuration file that should be equivalent to what Xorg autodetects.
But that may not be enough, because it's likely that the reason your video card works in Ubuntu is that it has more recent drivers, or installs proprietary drivers that the other OSes don't install. Look in /var/log/Xorg.0.log
for startup messages (that's the Ubuntu location, it may be different on other OSes), and see where they differ.
Xorg -configure
(run as root from a text console) produces a configuration file that should be equivalent to what Xorg autodetects.
But that may not be enough, because it's likely that the reason your video card works in Ubuntu is that it has more recent drivers, or installs proprietary drivers that the other OSes don't install. Look in /var/log/Xorg.0.log
for startup messages (that's the Ubuntu location, it may be different on other OSes), and see where they differ.
answered Jan 7 '11 at 0:01
GillesGilles
52.8k15114161
52.8k15114161
It fails withServer is already active
if it's already running.
– dhill
Aug 24 '15 at 13:08
add a comment |
It fails withServer is already active
if it's already running.
– dhill
Aug 24 '15 at 13:08
It fails with
Server is already active
if it's already running.– dhill
Aug 24 '15 at 13:08
It fails with
Server is already active
if it's already running.– dhill
Aug 24 '15 at 13:08
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f230004%2fextract-x11-configuration-information-from-running-instance%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
@Giles thanks for the tag correction. Took me looking at wikipedia to realise that X11 is the protocal, and Xorg is the implementation that indeed I am running.
– kasterma
Jan 7 '11 at 2:21