Ubuntu Multimedia :: Mode Limit In Xorg.conf?

Apr 18, 2010

I am trying to fine tune the S-video output settings for my xubuntu box running 9.10. I am having some trouble getting modes loaded via xorg.conf. Currently, my xorg.conf file looks like:

Code:
Section "InputDevice"
Identifier"Generic Keyboard"

[code]....

View 1 Replies


ADVERTISEMENT

Ubuntu Multimedia :: Add 320x200x8 Resolution/Mode To Xorg.conf?

Oct 1, 2010

I am trying to run using WINE. It has a platinum rating on the site, and runs perfectly on my laptop.on my desktop it doesn't seem to run at all.The screen goes black,then brings me back to the desktop. I manually ran the WINE command in the terminal, and it produced the error "err11settings:X11DRV_ChangeDisplaySettingsE x No matching mode found 320x200x8 @0! (XRandR)". The laptop and desktop are both running the same version of WINE (1.3.3) and have similar Nvidia cards (laptop has a mobile 9600, desktop has a 9800). I found a bug report on this exact issue on the WINE website (I'll paste a link), and they mention that the solution is simply to add the 320x200x8 resolution mode to Xorg.conf.

I've tried generating the line that I may need with a web-based modeline calculator, referenced on another thread, but it caused my system to fail booting. Luckily, I backed up xorg.conf before making changes and restored the old one via recovery mode. Here's the link to the calculator, I may just be using it wrong: [URL]

View 1 Replies View Related

Ubuntu :: Log In In Text Mode To Fix Xorg.conf?

Jan 9, 2010

Thinking to be clever, I made some changes to /etc/X11/xorg.conf and now I cannot see anything on the screen after Ubuntu boots up, just a 'mode not supported' message on the screen.How can I log into Ubuntu in text mode in order to fix the xorg.conf problem? I hope there is a "hot key" to stop Grub right before it starts loading Ubuntu and allows me to log in into Ubuntu in text mode.

View 2 Replies View Related

Ubuntu :: Create A Backup Of The Xorg.conf File - Cannot Stat /etc/X11/xorg.conf

Dec 11, 2010

I've just done a fresh install of Lubuntu 10.10 on an older Sony Vaio laptop. Having learned the hard way about editing xorg files, I wanted to create a backup of the xorg.conf file so that I dont have to do another install when I screw everything up. In a terminal, I typed

[Code]....

View 8 Replies View Related

Hardware :: Xorg.conf Is Replaced With A Default Xorg.conf After Reboot ?

Apr 9, 2010

I have installed Kubuntu 8.04.2 on a USB stick with persistence to keep any changes I make after a reboot and it works fine. I then installed the 185 Nvidia driver to give me higher resolutions and it works fine.

But each time I reboot, my updated xorg.conf is replaced with the default xorg.conf that ships with that version of Kubuntu and a backup is made of my updated xorg.conf (the correct one) which looks like xorg.conf.20100409135913. I have to put the backup xorg.conf back in place to get my Nvidia driver to work with the correct screen resolutions again. Otherwise my screen resolution is too low.

What could be causing this behavor? I'm sure it not the persistence feature of the USB stick failing since a backup is made of my original xorg.conf.

I might add more information. The xorg.conf that gets changed after a reboot says "This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database." #

View 11 Replies View Related

Slackware :: Difference Between Files (xorg.conf And Xorg.conf-vesa)?

Feb 16, 2011

1. What is the difference between files (xorg.conf and xorg.conf-vesa)

2. No matter how hard I try I can't change keyboard layout in xorg.conf-vesa (I change it in file ) but there is no actually anything changing, it starts to get annoying - for example - below goes my xorg.conf-vesa, if I uncomment and set line from

[Code]...

View 3 Replies View Related

Ubuntu :: Editing Xorg.conf - /etc/x11/xorg.conf Does Not Exist

May 3, 2010

I'm running the ubuntu based Green OS and cant get my video card properly configured. i've already gone through the forums to figure out what i need to do to get my ATI card working but my system wont let me access the xorg.conf file. i can see it using the the GOS file editor but it wont let me save the modifications. when i attempt to edit from a terminal window with su privelages it tells me that /etc/x11/xorg.conf does not exist. i've even tried booting into recovery mode and using the root instead of the sudo command. nothing i've tried will let me open the file.

View 3 Replies View Related

OpenSUSE Install :: Precedence Of Xorg.conf Over Xorg.conf.d?

Jan 26, 2011

I've read the how-tos (thank you oldcpu!) and wikis about how xorg.conf take precedence over the section configuration files in etc/X11/xorg.conf.d/, if it exist. I also understand that the xorg.conf can be partial. If it is missing some sections, these will be taken from the corresponding xorg.conf.d section config file. Currently I'm using a xorg.conf generated by nvidia-settings in one of my home machines, due to a dual-monitor setup. After generating xorg.conf, the device sections are:

in xorg.conf:

Code:

Section "Device"
Identifier "Device0"
Driver "nvidia"

[code]....

My question is if the Option "UseCompositeWrapper" "True" will be used or not. In other words, if a section exist in xorg.conf then it's correspondent in xorg.conf.d/ will be completely ignored *or* only the lines in xorg.conf.d/ that already exist in xorg.conf will be ignored?

View 5 Replies View Related

Ubuntu Multimedia :: How To Add Modeline In Xorg.conf

Sep 1, 2011

I have an apple tv1 running ubuntu hardy. Due to audio video requirements I do not want to upgrade. I am trying to get 1080p24 working my TV. I ran X in verbose mode to ensure that my TV supports 1080p24 and it does. For some reason the X is not able to see the 1920x1080 @ 24Hz mode. I got the required information to add the modeline to my xorg.conf.

My xorg.conf is as follows

Code:

Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0

[CODE]....

When I check the Xorg log file I have the following warning

Code:

(WW) NVIDIA(0): No valid modes for "1920x1080_24"; removing. Is there any way I can append the valid modeline for 1920x1080 @ 24Hz to. I am avoiding using a modified EDID.

View 3 Replies View Related

Ubuntu Multimedia :: Xorg.conf Not Setting Res And Xrandr Unreliable

Jan 6, 2010

I am setting up a display system that will not have a keyboard/mouse and automatically boots into gnome and starts up firefox to a display page. The page is optimized to a 720p resolution which I can set when we use a TV for the display, but is not an option if we use a monitor. I am trying to find a way to set the resolution to 720p automatically on boot up. I am always using 16x9 displays with a DVI connection (to HDMI on TVs)

I was able to get one monitor working by creating a script and setting it to load in the Startup Applications as shown:

Code:
#!/bin/bash
scnres="1280 720 60"
modeline=$(cvt -v $scnres | grep Modeline)
modeline=${modeline#Modeline }

[Code]....

View 2 Replies View Related

Ubuntu Multimedia :: Get Screen Resolution Set In Mythbuntu 9.10 - No Xorg.conf

Feb 13, 2010

I'm trying to get my screen resolution set in Mythbuntu 9.10, but there is no xorg.conf on my system! I'm trying to figure out what to do (the xfce tool on mythbuntu doesn't offer the correct resolution, and I'm not even sure what driver I'm using). I've seen other threads saying to run nvidia-setup or somesuch. I assume the appropriate tool in my case would be aticonfig (I saw that elsewhere too) as I'm using an ATI Radeon 9600XT, but that tool says:

Code:

aticonfig: No supported adapters detected

View 4 Replies View Related

Ubuntu Multimedia :: No Xorg.conf - How To Change Color Depth

Aug 4, 2010

I want to change color depth, but there's no xorg.conf file to edit... what to do? btw, shouldn't there be a simple gui for that? Like for changing resolution

View 5 Replies View Related

Ubuntu Multimedia :: Edited Xorg.conf And Lost All Video?

May 3, 2011

I have Natty Narwhal and everything was working. Then I moved it to my HDTV, and I had overscan issues. Following some advice I found online, I edited /etc/X11/xorg.conf with new information including a ModeLine.

Upon restart, I get my BIOS screen, the Ubuntu splash, then... nothing. The display goes to sleep. I can ping the computer, and everything seems to work except I have no video.

I did backup my xorg.conf file, but I don't know how to get to it without a display. Hindsight tells me I should have given myself a way to remotely control my computer before messing with xorg, but you live and learn.

I've read online that there is a way from the login screen to get to Terminal without loading the desktop environment, but I can't get to the login screen.

I've also tried using a Linux LiveCD to access my filesystem, and that works to view files, but I have no root privileges.

Is there...

...a way to get to Terminal without loading the login screen?

...a way to give myself root access to my harddrive from a LiveCD?

...something else to try?

View 1 Replies View Related

Ubuntu Multimedia :: IBM ThinkPad X32, ATI Radeon Mobility M6 LY 9.10 Xorg.conf AccelMethod?

Mar 28, 2010

I'm running Ubuntu 9.10 on an oldish IBM Thinkpad X32 (12.1in 1024x768 LCD, 16MB ATI Radeon). On the initial install of 9.10 I couldn't get any higher resolutions working, following the instructions in [URL]..

1024x768 resolution is running ok but some graphics are noticeably slow - a prime example is the "File Browser", switching from one app to this app, you see a grey window for a second, and then finally the File Manager displays.

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
# Screen "Screen0"
InputDevice "Mouse0" "CorePointer"

[Code]...

View 3 Replies View Related

Ubuntu Multimedia :: NoDDC Without Xorg.conf: No EDID Information Through Displayport/DVI

Apr 23, 2011

Apparently you can't get EDID information through a Displayport->DVI adapter. That means that a default install of Lucid (or Natty!) does not recognize the resolutions of any monitor connected with such an adapter.

I'd rather not create an entire multihead xorg.conf just to specify NoDDC. Is there any other way to pass that option to X?

View 1 Replies View Related

Debian Multimedia :: Xorg.conf To Get Back I915 Native Resolutions?

Jun 11, 2011

I disabled KMS and checked for direct rendering with the glxinfo command. glxinfo, reported that direct rendering is enabled. This is good news, because it means that the i915 driver is being used.

[Code]....

Now, I need to write a custom xorg.conf file to force X to use the native resolutions of my chip.

View 1 Replies View Related

Ubuntu Multimedia :: Xorg.conf Setting Up Native Resolution 1900x1200 & Dual Monitor

Jun 19, 2011

my laptop screen has 1900x1280 (native resolution) and my second monitor has 1600x1080

After browsing the forums and messing around with drivers I managed to get the resolution up to 1600x1080 (from 1000x800 at install) on the laptop screen. No luck at all with the second monitor. I currently have it connected with both VGA and DVI.

my understanding is I need to use twin view to setup the second monitor. I've read several of the earlier posts but haven't been able to get it to work. Here is my current xorg.conf file:

Code:
Section "Monitor"
# HorizSync source: edid, VertRefresh source: edid
Identifier "Configured Monitor"
VendorName "Unknown"

[Code].....

View 9 Replies View Related

Debian Multimedia :: X -configure Segfaults - Sid - Cannot Create Xorg.conf To Get A Correct Resolution

May 13, 2010

I am running kde 4.4 in virtualbox , but cannot create xorg.conf to get a correct resolution. X -configure = segfault. Older releases were fine - lenny, even ubuntu hardy / lucid.

View 6 Replies View Related

Ubuntu Multimedia :: Generic Vesa Driver Xorg.conf File That Will Work With Most Any 1024x768 Monitor

Feb 12, 2010

I am looking for a generic vesa driver xorg.conf file that will work with most any 1024x768 monitor.

This is for a network appliance and our field people have many different type of monitors.

This product will mostly be used "headless" but sometimes our field people will plug in a monitor.

The intel driver will not even start x without a monitor plugged in so I found it necessary to go to the vesa driver.

Code:

View 1 Replies View Related

Hardware :: Getting A Radeon Xorg.conf.d/*.conf Stuff?

May 22, 2011

I have used nVidia my entire linux life (about 5 years clean and sober from M$). Recently, I have switched over to an ATI Radeon HD 5550 card. After many trial and error setups, I finally got the resolutions and screens set properly with a xrandr command, which I have now added to a shell script in ~/.kde4/Autostart. It has worked for me for a while now, but I really would like to get it set in the xorg.conf.d files so that I don't have to wait that extra few seconds after login for the screens to fix themselves.

Is there an easy way to take what xrandr does and export it to the xorg.conf.d files? If my video card recognizes my default monitor as DFP2 and the tv that I only sometimes use with this computer as DFP1, how can I ensure that the login screen for openSUSE/KDE4 appears on my default screen (an issue that drove me nuts a few months ago when I tried Ubuntu to see what all the fuss was about)?

My xrandr command that I use to fix it all is:

xrandr --output DFP2 --auto --pos 0x0 --primary --output DFP1 --auto --right-of

I am using the proprietary Radeon driver from the ioda repository. DFP2 is a monitor which has a optimum resolution of 1920x1200, and DFP1 is an 1080p HDTV. I can not reverse the output plugs for the screens even though my monitor is an HDMI monitor because I use the actual HDMI port on the video card to output audio to the television and the other plug is a DVI that I convert to HDMI for the monitor.

View 1 Replies View Related

Ubuntu Multimedia :: "failed To Parse Xorg.conf" - Can't Save Resolution And Refresh

Mar 2, 2010

I looked for a solution to this,and found a thread for it ,but I dont know how to do what it says.Here is part of it by the user "cameronol": There is a bug in Ubuntu 9.10 Karmic with the default /etc/X11/xorg.conf involving Nvidia. receive the error"Failed to parse existing X config file '/etc/X11/xorg.conf'.Then he posts:

[Code]...

Then he says to delete the first section with the default screen,and it will be fixed.But HOW do I look for the /etc/X11/xorg.conf file to edit it,and how do I edit it?I am new to ubuntu,but I have learned to use a terminal(I think)It seems to be just like the "run" box on Windows.I did a search for the file,but came up empty.I want to fix this cause every time I restart,I have a low resolution that is impossible to work in.

View 2 Replies View Related

Ubuntu :: Where Is The Xorg.conf On 10.04

Aug 18, 2010

i i use ubuntu 10.04 and i buy a mouse, and i cant install it. i read on forum i need to put :

Section "ServerFlags"
Option "AllowMouseOpenFail" "true"
EndSection

[code].....

wireless via Bluetooth � 3-button laser mouse with scroll wheel � resolution 1600dpi, adjustable on 800dpi � range up to 10m � computer with Bluetooth or dongle required � 2x AA batteries required

View 14 Replies View Related

Ubuntu :: No Xorg.conf Via Driver?

May 26, 2010

i have VIA UniChrome Pro IGP grapgics. When i install linux max resolution 800x600@60hz and xorg.conf file are blank

some time ago i used fedora "xrandr" works great. But i don't liked fedora, as ubuntu

so i need program thats have option "Model"

Example: LCD 1028x768 or other

View 2 Replies View Related

Ubuntu :: Switching Between Two Xorg.conf's?

Jun 6, 2010

I've got an i5 Macbook Pro, on which I've got Ubuntu 10.04, which I use 90% of the time (mainly for work).

I've added a few lines to xorg.conf to make the graphic card run cooler and thus get some more battery life. Sometimes, though, I do need full graphic potential, for which I have another xorg.conf prepared without those lines, so I can switch back and forth when I need it.

Currently, to change back and forth, I rename the files accordingly and reboot, which is a pain in the neck. I tried restarting gdm after switching files instead but it didn't quite work (maybe I wasn't doing it correctly).

So, fellow experts, what's the easiest and fastest way to switch between two different X11 config files?

View 1 Replies View Related

Ubuntu :: Change To 96 Dpi No Xorg.conf?

Oct 13, 2010

I've just installed the latest ubuntu (10.10) on vmware workstation and noticed the resolution is not 96 dpi so my fonts look a bit unsharp

I wanted to change that and noticed I don't have an /etc/X11/xorg.conf? So my question is of course...where should I put the "Option..." line to change it to 96 dpi?

View 1 Replies View Related

Ubuntu :: Can't Find Xorg.conf On /etc/X11/

May 7, 2010

Ubuntu 10.04

I can't find xorg.conf on /etc/X11/ How to create it?

View 7 Replies View Related

Slackware :: No More Xorg.conf?

Jun 2, 2010

Sorry if this was well covered here when most up-to-date Slackers moved to 13.0, but I have just jumped from 12.1 to 13.1. Generally very happy that I do not have to think about xorg.conf as I always found the structure of this conf file a tad confusing. However if I do need to (for example) change my video driver (I might for example want to try the nvidia driver from NVIDIA) or configure my touchpad - how do I do this ?

I understand that xorg.conf can still be created. If I do so, do I have to put all the stuff in that used to be there or can I just add the stuff I need to make the changes I am looking for?

View 4 Replies View Related

Ubuntu :: Speed Up/optimize Xorg.conf?

Jan 12, 2010

i'm stuck with software rasterizing atm on 9.10, on 8.04 i had indirect rendering which was faster. how i can speed things up? :)

this is my current xorg.conf.

Code:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"

[Code]....

View 9 Replies View Related

Ubuntu :: Generate Xorg.conf File?

Jan 20, 2010

Since the computer does not have xorg.conf, can I have the computer generate that file because I need to work on it and so I need to create it. That is why it would be useful to have a xorg.conf file still.

View 5 Replies View Related

Ubuntu :: Can't Find Xorg.conf And So Can't Save Changes?

Jan 23, 2010

I've been trying to setup dual-screen in my system, but the control panel complains it can't find xorg.conf and so I can't save changes I make in the nvidia control panel. I was trying various methods of trying to get a dual screen working how I like it.Left = 17" 1280x1024 that sometimes works (needs hitting a few times)Right = 21" 1680x1050 main screenI wanted to have everything on the right one, my main workspace. And I wanted a seperate x workspace on the left hand one. (Mainly so that when the one on the left decides to not work, I can use the panel thing at bottom to move apps to the right one)

Now I know since 9.10 xorg.conf is non-existant and so determind on the fly or something.Is there a way to get X to write out the current working xorg.conf that's it's using? i.e. It's auto determind x,y,z and that's what right now this second is being used. I want to save this as a working xorg.conf so I can fine tune it etc.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved