PDA

View Full Version : [ubuntu] How do I install a driver?



Amae
October 21st, 2009, 10:27 AM
Ok guys, I've had enough of Windows and got so mad I just formated and installed Ubuntu, I was bewildered of how my internet, my sound and graphics where working so well wihtout installing any sort of driver, which ofcourse doesn't happen with Windows. I was very happy and everything, even though I felt things where "too big", I thought it was a matter of the size of icons and/or fonts, I thought it was something like the windows theme for accesibility or something and could customize it, until while I was looking for a wallpaper I read in the webpage telling me I had a screen resolution of 800x600 I really couldn't believe my eyes I thought that couldn't be possible, so I went inmediatly to the display setting and yes my screen resolution was that indeed, and I couldn't be more surprised when I saw that the other resolution available was 640xsomething...

I figured out it must be because of a driver, so after speding the whole day trying to figure out what my graphic card was, I spent the whole night trying to solve this. At first I had a very hard time trying to do something "easy", like editing the xorg.conf file a thousand times, and getting a black screen after rebooting. I got sick of that, so I tried to look for the driver, which I found on the official webpage, but I couldn't manage to install it. I found an alternate driver in the openchrome page, and after a few hours of effort, I couldn't manage to install it either. Everything went ok in the terminal until I asked the terminal to "make install", it just gives me an error message(I followed these instructions: http://www.openchrome.org/trac/wiki/Installation). Then, goofing around I found the way of installing these drivers from Synaptics, everything was succesfull I restarted the computer, no error messages or anything, but nothing happened, the highest resolution I get is 800x600.

I read about restricted drivers in the ubuntu documentation and it just said to go to system-administration-hardwaredrivers but I just get a blank window when I go there. I still got on my desktop wwhat I downloaded from the officialwebsite but I really don't know what else to do. If someone could please help me with this issue, I am really loving Ubuntu but I would love it more if I had a higher screen resolution.

I forgot to mention my hardware is a KM400/KN400/P4M800 [S3 UniChrome]

Hope someone helps i really would hate to re-install windows I wished I didn't have to see it anymore in my life but I can't live with that resolution and I don't have a single penny to buy a different graphic card, so if you're just gonna advice me to buy a new one, save your commentary really.

mechro
October 21st, 2009, 10:34 AM
This thread might help if it's your hardware...

http://ubuntuforums.org/showthread.php?t=1046278

Amae
October 21st, 2009, 11:40 PM
Ok, I have a desktop computer, not a laptop, and once more, it gave me an error when I rebooted after editing the xorg.conf file. I had to restore the previous configuration, which is the one used as default.

PLEASE HELP!!!!!!!!!

mechro
October 22nd, 2009, 09:50 AM
Right, it's a desktop.

Are any of these bits a graphic card?...

KM400
KN400
P4M800
[S3 UniChrome]

Amae
October 22nd, 2009, 11:24 AM
That's whtat the terminal told me I had as a graphic card, I don't know any much further.

Edit: I think I forgot to mention I have Ubuntu 9.04... that is, the latest version.

mechro
October 22nd, 2009, 11:57 AM
In Synaptic, do a search for unichrome.

Is the following showing as installed?...

xserver-xorg-video-openchrome

Amae
October 22nd, 2009, 12:55 PM
It's got a green square by it, does this mean it is installed?

mechro
October 22nd, 2009, 01:14 PM
Yes it's installed.

What monitor and motherboard are you using?

Amae
October 22nd, 2009, 03:22 PM
I relally don't know how to figure that out, any idea?

mechro
October 22nd, 2009, 03:42 PM
There might be a label on the front of your monitor.

Did the computer come with a motherboard manual or any sort of paperwork from the manufacturer or retailer?

Amae
October 22nd, 2009, 03:53 PM
Ok, it says KAINOS in the front. ABout the manual, yes it did, but I don't have it handy right now, actually there is really no way I can have it on my hands :( and I reallydon't remember what the board was.

mechro
October 22nd, 2009, 04:14 PM
Sorry, that doesn't help.

Can you post your xorg.conf file?

Amae
October 22nd, 2009, 04:21 PM
There you go:


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

mechro
October 22nd, 2009, 04:58 PM
Change the device driver "vesa" to "openchrome".

Ubuntu documentation says...


Edit the X server configuration file

Edit /etc/X11/xorg.conf and change the device driver to openchrome
gksudo gedit /etc/X11/xorg.conf

Make a backup of this file in case you need to revert the changes. By default some editors create a backup by appending a tilde to the name of the file (xorg.conf~). This backup may be hidden in the file manager, but is still listed with ls in a terminal.
Go to
Section "Device"
and change
Driver "vesa"
to
Driver "openchrome"
Save the file.

Test the driver
To test the new driver, go to a console (Ctrl+Alt+F1), log in and start a new X screen:
X :1
If it works, then you can continue restarting your desktop manager. If not, you probably have another problem and need to fix this first.

Finally, restart the X server by logging out and back in, or typing sudo /etc/init.d/gdm restart.

If Xorg does not start anymore, log in in a console and revert the changes made to the xorg.conf file. You can use an editor like nano.
sudo nano /etc/X11/xorg.conf
You can also restore the backup
sudo mv /etc/X11/xorg.conf~ /etc/X11/xorg.conf

Amae
October 22nd, 2009, 05:19 PM
Edit /etc/X11/xorg.conf and change the device driver to openchrome
gksudo gedit /etc/X11/xorg.conf

Do I edit it from the terminal found on applications? or through ctrl+alt+f1?

Make a backup of this file in case you need to revert the changes. By default some editors create a backup by appending a tilde to the name of the file (xorg.conf~). This backup may be hidden in the file manager, but is still listed with ls in a terminal.

How do I backup it?

Go to
Section "Device"
and change
Driver "vesa"
to
Driver "openchrome"
Save the file.

Test the driver
To test the new driver, go to a console (Ctrl+Alt+F1), log in and start a new X screen:
X :1
If it works, then you can continue restarting your desktop manager. If not, you probably have another problem and need to fix this first.

How do I restart my desktop manager?

Finally, restart the X server by logging out and back in, or typing sudo /etc/init.d/gdm restart.

If Xorg does not start anymore, log in in a console and revert the changes made to the xorg.conf file. You can use an editor like nano.
sudo nano /etc/X11/xorg.conf
You can also restore the backup
sudo mv /etc/X11/xorg.conf~ /etc/X11/xorg.conf

mechro
October 22nd, 2009, 05:52 PM
OK forget that. We'll do it the way I would do it...

First of all, have you got a LiveCD that you can boot from and use with no problems? You'll need this to recover if there are any problems after you've edited the xorg file.

Open a Terminal from Applications > Accessories.

Enter the command gksudo nautilus. You'll be asked for your password.

When Nautilus opens click View and check box for show hidden files.

Navigate to /etc/X11. In there is the xorg.conf file. Right-click on it copy and paste into the same folder. It should paste it as xorg.conf(copy) or similar.

Now right-click on the original xorg.conf and open with Text Editor. You can now change "vesa" to "openchrome". Save the file.

Close Text Editor.

Close Nautilus.

Type exit in the Terminal

Reboot.

If you reboot to a black screen or it doesn't work, shutdown and boot from the LiveCD to repair your xorg.conf to it's original coniguration.

Amae
October 22nd, 2009, 05:59 PM
I don't see the etc folder, I haven been able to access it from the terminal before though.

mechro
October 22nd, 2009, 06:42 PM
I don't see the etc folder, I haven been able to access it from the terminal before though.

In Nautilus, do you see a panel on the left hand side which has an item named File System. Click on it and then you should see etc in the main folder panel.

The reason we're not doing command line stuff is because it's not my way. You might find it's better to find a GUI solution (like Windows) for getting stuff done. Having said that I'm quite willing to kiss;) a command-liners....

Amae
October 22nd, 2009, 11:20 PM
Ok, Idid that and when I restarted it gave me the same error it gave me with all thestuff I have tried before so I had to restore to the previous configuration. Any other idea?

mechro
October 23rd, 2009, 08:56 AM
It doesn't look as if the driver is compatible with your system. It happens.

The "vesa" set up may be tweakable using some x tools.

I'll have another look next week if you don't get any further help in the meantime.

Amae
October 23rd, 2009, 11:56 PM
Ok, thank you I'lll wait for your help.

mechro
October 26th, 2009, 10:03 PM
Have you installed updates? If you haven't, go to System > Administration > Update Manager: if you don't want to install all updates, just look for any you think are relevant to your graphics/driver set up and install those.

Once you've updated, reboot and then check System > Admin... > Hardware Drivers.

Ignore the above if you have installed updates.

Please post your /var/log/Xorg.0.log file? (Use {CODE}{/CODE} tags)

Amae
October 29th, 2009, 06:15 AM
Yes I have installed updates, and I am wondering how do I get to that file...

mechro
October 29th, 2009, 11:11 AM
...I am wondering how do I get to that file...

In Nautilus (show hidden files) navigate: File System/var/log where you'll find Xorg.0.log. Open with Text Editor.

Amae
November 1st, 2009, 08:17 PM
X.Org X Server 1.6.0
Release Date: 2009-2-25
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-23-server i686 Ubuntu
Current Operating System: Linux Ananta 2.6.28-16-generic #55-Ubuntu SMP Tue Oct 20 19:48:24 UTC 2009 i686
Build Date: 09 April 2009 02:10:02AM
xorg-server 2:1.6.0-0ubuntu14 (buildd@rothera.buildd)
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 1 13:44:35 2009
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section. Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Configured Monitor"
(**) | |-->Device "Configured Video Device"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable AllowEmptyInput.
(II) Loader magic: 0x3bc0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0@1:0:0) VIA Technologies, Inc. KM400/KN400/P4M800 [S3 UniChrome] rev 1, Mem @ 0xf0000000/67108864, 0xf4000000/16777216, BIOS @ 0x????????/65536
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[17] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[18] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[19] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[20] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[21] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[22] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[23] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[24] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[25] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[27] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[28] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[29] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[31] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[32] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[33] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[34] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[35] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "vesa"
(II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
(II) Module vesa: vendor="X.Org Foundation"
compiled for 1.5.99.902, module version = 1.3.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 5.0
(II) VESA: driver for VESA chipsets: vesa
(II) Primary Device is: PCI 01@00:00:0
(II) resource ranges after probing:
[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[17] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[18] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[19] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[20] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[21] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[22] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[23] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[24] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[25] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[27] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[28] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[29] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[31] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[32] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[33] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[34] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[35] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.1.0
ABI class: X.Org Video Driver, version 5.0
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 5.0
(II) VESA(0): initializing int10
(II) VESA(0): Primary V_BIOS segment is: 0xc000
(II) VESA(0): VESA BIOS detected
(II) VESA(0): VESA VBE Version 3.0
(II) VESA(0): VESA VBE Total Mem: 65536 kB
(II) VESA(0): VESA VBE OEM: VIA P4M800

(II) VESA(0): VESA VBE OEM Software Rev: 1.0
(II) VESA(0): VESA VBE OEM Vendor:
(II) VESA(0): VESA VBE OEM Product:
(II) VESA(0): VESA VBE OEM Product Rev:
(II) VESA(0): Creating default Display subsection in Screen section
"Default Screen" for depth/fbbpp 24/32
(==) VESA(0): Depth 24, (--) framebuffer bpp 32
(==) VESA(0): RGB weight 888
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) VESA(0): VESA VBE DDC supported
(II) VESA(0): VESA VBE DDC Level 2
(II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
(II) VESA(0): VESA VBE DDC read failed
(II) VESA(0): Searching for matching VESA mode(s):
Mode: 101 (640x480)
ModeAttributes: 0x9f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 640
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 203
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 640
BnkNumberOfImagePages: 203
LinNumberOfImagePages: 203
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 111 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 1280
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 101
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 101
LinNumberOfImagePages: 101
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
*Mode: 112 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 2560
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 50
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 50
LinNumberOfImagePages: 50
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 103 (800x600)
ModeAttributes: 0x9f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 800
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 127
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 800
BnkNumberOfImagePages: 127
LinNumberOfImagePages: 127
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 114 (800x600)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 1600
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 63
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 63
LinNumberOfImagePages: 63
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
*Mode: 115 (800x600)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 3200
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 31
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 31
LinNumberOfImagePages: 31
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 105 (1024x768)
ModeAttributes: 0x9f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 1024
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 84
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1024
BnkNumberOfImagePages: 84
LinNumberOfImagePages: 84
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 117 (1024x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 2048
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 41
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2048
BnkNumberOfImagePages: 41
LinNumberOfImagePages: 41
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
*Mode: 118 (1024x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 4096
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 20
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 4096
BnkNumberOfImagePages: 20
LinNumberOfImagePages: 20
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 179 (1280x768)
ModeAttributes: 0x9f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 1280
XResolution: 1280
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 67
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 67
LinNumberOfImagePages: 67
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 17a (1280x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 2560
XResolution: 1280
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 33
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 33
LinNumberOfImagePages: 33
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
*Mode: 17b (1280x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 5120
XResolution: 1280
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 16
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 16
LinNumberOfImagePages: 16
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 107 (1280x1024)
ModeAttributes: 0x9f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 1280
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 50
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 50
LinNumberOfImagePages: 50
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 11a (1280x1024)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 2560
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 24
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 24
LinNumberOfImagePages: 24
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
*Mode: 11b (1280x1024)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 5120
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 11
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 11
LinNumberOfImagePages: 11
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 120 (1600x1200)
ModeAttributes: 0x9f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 1600
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 33
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 33
LinNumberOfImagePages: 33
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 122 (1600x1200)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 3200
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 16
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 16
LinNumberOfImagePages: 16
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
*Mode: 124 (1600x1200)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 6400
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 6400
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 108 (80x60)
ModeAttributes: 0xf
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 160
XResolution: 80
YResolution: 60
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 1
BitsPerPixel: 4
NumberOfBanks: 1
MemoryModel: 0
BankSize: 0
NumberOfImages: 254
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0x0
LinBytesPerScanLine: 160
BnkNumberOfImagePages: 254
LinNumberOfImagePages: 254
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 102 (800x600)
ModeAttributes: 0x1f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0xa000
WinFuncPtr: 0xc0006b3e
BytesPerScanline: 100
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 4
BitsPerPixel: 4
NumberOfBanks: 1
MemoryModel: 3
BankSize: 0
NumberOfImages: 31
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 2
PhysBasePtr: 0x0
LinBytesPerScanLine: 100
BnkNumberOfImagePages: 31
LinNumberOfImagePages: 31
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0

(II) VESA(0): Total Memory: 1024 64KB banks (65536kB)
(II) VESA(0): Configured Monitor: Using default hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using default vrefresh range of 50.00-70.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode "1600x1200" (no mode of this name)
(II) VESA(0): Not using built-in mode "1280x1024" (no mode of this name)
(II) VESA(0): Not using built-in mode "1280x768" (no mode of this name)
(II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
(II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
(II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
(WW) VESA(0): No valid modes left. Trying less strict filter...
(II) VESA(0): Configured Monitor: Using hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 50.00-70.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode "1600x1200" (hsync out of range)
(II) VESA(0): Not using built-in mode "1280x1024" (hsync out of range)
(II) VESA(0): Not using built-in mode "1280x768" (hsync out of range)
(II) VESA(0): Not using built-in mode "1024x768" (hsync out of range)
(--) VESA(0): Virtual size is 800x600 (pitch 800)
(**) VESA(0): *Built-in mode "800x600"
(**) VESA(0): *Built-in mode "640x480"
(==) VESA(0): DPI set to (96, 96)
(II) VESA(0): Attempting to use 60Hz refresh for mode "800x600" (115)
(II) VESA(0): Attempting to use 60Hz refresh for mode "640x480" (112)
(**) VESA(0): Using "Shadow Framebuffer"
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/xorg/modules//libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.1.0
ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.4
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[17] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[18] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[19] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[20] -1 0 0xffffffff - 0xffffffff (0x1) MX[B]
[21] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[22] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[23] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[24] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[25] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[27] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[28] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[29] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[31] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[32] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[33] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[34] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[35] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) VESA(0): initializing int10
(II) VESA(0): Primary V_BIOS segment is: 0xc000
(II) VESA(0): VESA BIOS detected
(II) VESA(0): VESA VBE Version 3.0
(II) VESA(0): VESA VBE Total Mem: 65536 kB
(II) VESA(0): VESA VBE OEM: VIA P4M800

(II) VESA(0): VESA VBE OEM Software Rev: 1.0
(II) VESA(0): VESA VBE OEM Vendor:
(II) VESA(0): VESA VBE OEM Product:
(II) VESA(0): VESA VBE OEM Product Rev:
(II) VESA(0): virtual address = 0xb3678000,
physical address = 0xf0000000, size = 67108864
(II) VESA(0): VBESetVBEMode failed...Tried again without customized values.
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Backing store disabled
(II) VESA(0): DPMS enabled
(==) RandR enabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 2.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 4.0
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event4"
(II) AT Translated Set 2 keyboard: Found keys
(II) AT Translated Set 2 keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) AT Translated Set 2 keyboard: xkb_rules: "evdev"
(**) Option "xkb_model" "pc105"
(**) AT Translated Set 2 keyboard: xkb_model: "pc105"
(**) Option "xkb_layout" "es"
(**) AT Translated Set 2 keyboard: xkb_layout: "es"
(II) config/hal: Adding input device Macintosh mouse button emulation
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event3"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
(**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
(**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
(**) Macintosh mouse button emulation: (accel) set acceleration profile 0
(II) config/hal: Adding input device ImPS/2 Generic Wheel Mouse
(**) ImPS/2 Generic Wheel Mouse: always reports core events
(**) ImPS/2 Generic Wheel Mouse: Device: "/dev/input/event6"
(II) ImPS/2 Generic Wheel Mouse: Found 3 mouse buttons
(II) ImPS/2 Generic Wheel Mouse: Found x and y relative axes
(II) ImPS/2 Generic Wheel Mouse: Configuring as mouse
(**) ImPS/2 Generic Wheel Mouse: YAxisMapping: buttons 4 and 5
(**) ImPS/2 Generic Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "ImPS/2 Generic Wheel Mouse" (type: MOUSE)
(**) ImPS/2 Generic Wheel Mouse: (accel) keeping acceleration scheme 1
(**) ImPS/2 Generic Wheel Mouse: (accel) filter chain progression: 2.00
(**) ImPS/2 Generic Wheel Mouse: (accel) filter stage 0: 20.00 ms
(**) ImPS/2 Generic Wheel Mouse: (accel) set acceleration profile 0

mechro
November 2nd, 2009, 02:26 AM
Oh dear, it doesn't even mention a monitor. And there's nothing to suggest alternative refresh rate/resolutions that might work.

You could try this: Download, burn, and boot a Puppy Linux LiveCD...

http://www.puppylinux.org/

When you boot Puppy it will run dialogs to configure your mouse, keyboard and display. When you get to the display dialog, select the Xorg option and if all is well you can test different resolutions. When you've "Okayed" your chosen resolution the desktop will open.

In Puppy you'll find an xorg.conf file in /etc/X11 (similar to Ubuntu). Copy it and save it somewhere and you may be able to use some of the settings for your Ubuntu xorg.conf.

Amae
November 2nd, 2009, 04:15 AM
Are you telling me I'll have to INSTALL another OS in order to get "my monitor" working well? O_O

mechro
November 2nd, 2009, 11:10 AM
Are you telling me I'll have to INSTALL another OS in order to get "my monitor" working well? O_O

Er... Sorry, but I'm not even saying that your monitor will work well after doing this. You won't "install" Puppy, you'll be running it in the LiveCD environment.

Ubuntu is very, very good at detecting and auto-configuring graphics cards and monitors but if there's a problem there's no decent tool or procedure. There may be a set of commands that apply but I can't help you with that.

I can't give you a definitive answer that will work, only suggestions to try. For example, simply reinstalling Ubuntu may solve the problem, I don't know.

:oops::oops:

Amae
November 2nd, 2009, 11:32 AM
Oh, I don't have to install it? Ok, I'll try that... XD

mechro
November 3rd, 2009, 12:07 AM
Just read this in another thread...

http://ubuntuforums.org/showpost.php?p=8226761&postcount=3

Giblet5 suggests trying a different monitor cable. Might be worth a try.


I'm hoping my Puppy suggestion might get the correct specs for your monitor.

Amae
November 4th, 2009, 09:39 AM
Hey, I started my pc from the puppy live CD and oh my did I see the screen resolution as 1024.768 it felt like heaven! I went over to the xorg.conf but all I see is the same settings as I hve in ubuntu, and actually I see the same files O_O (there's a whole bunch of backups in it lol).

Edit: I didn't understand a single thing about the cable... :S

mechro
November 4th, 2009, 11:26 PM
Are you sure you read Puppy's xorg.conf and not Ubuntu's xorg.conf from Puppy?

Just to make sure, navigate in Puppy as follows...

On the desktop click once the File icon in the top left hand corner.

In the window that opens click once the green up arrow.

The next window that opens will be Puppy's root where you can navigate to /etc/X11/xorg.conf.

http://i38.tinypic.com/9uw1zt.jpg

The cable is the dangly bit of wire with plastic plugs on either end that goes from your monitor to your desktop computer case. ;) The suggestion is you borrow or buy another one, with no guarantees that it'll make a difference.

Amae
November 5th, 2009, 03:47 AM
Ok I will do that, and if the cable has to do with that, then I could be pretty sure that could be the problem, because I moved and all the cables messed up, I ended up with various cables that looked just the ssame, but not all of them where of a monitor's so I might of used a different cable and it might be causing the problem, I will do the puppy thing, and if it doesn't work, then I'll try the cable(I gotta look for the other one's though).

Oh, and a question, if I have to do the cable option, do I just switch the cables and try to change the resolutin from the display settings or will I have to do something else?

Amae
November 5th, 2009, 04:20 AM
Ok, here is the puppy xorg configuration, I am not sure of what to copy to my ubunto conf:


#Special base config file used in Puppy Linux.

# ************************************************** ********************
# Module section -- this section is used to specify
# which dynamically loadable modules to load.
# ************************************************** ********************
#
Section "Module"

# This loads the DBE extension module.

Load "dbe" # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection

# This loads the font modules
Load "type1"
Load "freetype"

# This loads xtrap extension, used by xrandr
Load "xtrap"

# This loads the GLX module (if present)
Load "glx"

# This loads dri module (if present)
Load "dri"

EndSection

# ************************************************** ********************
# Files section. This allows default font and rgb paths to be set
# ************************************************** ********************

Section "Files"

# The location of the RGB database. Note, this is the name of the
# file minus the extension (like ".txt" or ".db"). There is normally
# no need to change the default.

RgbPath "/usr/X11R7/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)

FontPath "/usr/X11R7/lib/X11/fonts/misc/"
FontPath "/usr/X11R7/lib/X11/fonts/Type1/"
FontPath "/usr/X11R7/lib/X11/fonts/TTF/"

EndSection

# ************************************************** ********************
# Server flags section.
# ************************************************** ********************

Section "ServerFlags"

# Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
# (where n is 1 through 12). This allows clients to receive these key
# events.

# Option "DontVTSwitch"

# Enables mode switching with xrandr
# There is a report that this can cause Xorg not to work on some
# video hardware, so default is commented-out...
# but i want to use it in xorgwizard so leave on...

Option "RandR" "on"

EndSection

#everything past here is auto-generated by Puppy's Xorg Wizard...


Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc102"
Option "XkbLayout" "es" #xkeymap0
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2" #mouse0protocol
Option "Device" "/dev/mouse"
#Option "Emulate3Buttons"
#Option "Emulate3Timeout" "50"
Option "ZAxisMapping" "4 5" #scrollwheel
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
HorizSync 31.5-48.5
VertRefresh 56-72
#UseModes "Modes0" #monitor0usemodes
Option "PreferredMode" "1024x768"
EndSection

Section "Modes"
Identifier "Modes0"
#modes0modeline0
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "VBEModes" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "AccelMethod" # <str>
#Option "HWCursor" # [<bool>]
#Option "SWCursor" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "Rotate" # [<str>]
#Option "VideoRAM" # <i>
#Option "ActiveDevice" # [<str>]
#Option "LCDDualEdge" # [<bool>]
#Option "BusWidth" # [<str>]
#Option "Center" # [<bool>]
#Option "PanelSize" # [<str>]
#Option "ForcePanel" # [<bool>]
#Option "TVDotCrawl" # [<bool>]
#Option "TVDeflicker" # <i>
#Option "TVType" # [<str>]
#Option "TVOutput" # [<str>]
#Option "DisableVQ" # [<bool>]
#Option "DRIXINERAMA" # [<bool>]
#Option "DisableIRQ" # [<bool>]
#Option "EnableAGPDMA" # [<bool>]
#Option "NoAGPFor2D" # [<bool>]
#Option "NoXVDMA" # [<bool>]
#Option "ExaNoComposite" # [<bool>]
Identifier "Card0"
Driver "via" #card0driver
VendorName "Unknown Vendor"
BoardName "Unknown Board"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1024x768"
EndSubsection
EndSection

#PuppyHardwareProfile=VIA_P4M800

mechro
November 5th, 2009, 04:58 AM
Copy this as Ubuntu's xorg.conf file...


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
HorizSync 31.5-48.5
VertRefresh 56-72
#UseModes "Modes0" #monitor0usemodes
Option "PreferredMode" "1024x768"
EndSection

Section "Modes"
Identifier "Modes0"
#modes0modeline0
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "VBEModes" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "AccelMethod" # <str>
#Option "HWCursor" # [<bool>]
#Option "SWCursor" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "Rotate" # [<str>]
#Option "VideoRAM" # <i>
#Option "ActiveDevice" # [<str>]
#Option "LCDDualEdge" # [<bool>]
#Option "BusWidth" # [<str>]
#Option "Center" # [<bool>]
#Option "PanelSize" # [<str>]
#Option "ForcePanel" # [<bool>]
#Option "TVDotCrawl" # [<bool>]
#Option "TVDeflicker" # <i>
#Option "TVType" # [<str>]
#Option "TVOutput" # [<str>]
#Option "DisableVQ" # [<bool>]
#Option "DRIXINERAMA" # [<bool>]
#Option "DisableIRQ" # [<bool>]
#Option "EnableAGPDMA" # [<bool>]
#Option "NoAGPFor2D" # [<bool>]
#Option "NoXVDMA" # [<bool>]
#Option "ExaNoComposite" # [<bool>]
Identifier "Card0"
Driver "via" #card0driver
VendorName "Unknown Vendor"
BoardName "Unknown Board"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1024x768"
EndSubsection
EndSection

Then reboot.

Fingers crossed!

Amae
November 5th, 2009, 07:33 PM
I got the following error:


The following error was encountered

(EE) Failed to load module "via" (module does not exist, 0)
(EE) No drivers available

mechro
November 6th, 2009, 11:21 AM
Assuming the openchrome driver is still installed, try the following command in a Terminal...


sudo dpkg-reconfigure -phigh xserver-xorg

Amae
November 6th, 2009, 10:51 PM
Ok I did that it asked me for my password and then nothing else happpened, was that all?

Oh, and last night it asked me to update ubuntu so now i got ubuntu karmik koala

Amae
November 6th, 2009, 11:01 PM
Did that and restartedand everything looks the same.

jmore9
November 6th, 2009, 11:17 PM
Are you trying to install or get your video card working correctly ? Is this right ? If so you could try in a terminal the following :

lspci then hit enter

It should give you a list of what is installed in your pci slots, maybe your card is there then you have a starting point.

Amae
November 7th, 2009, 04:20 AM
00:00.0 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.1 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.2 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.3 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.4 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.7 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:01.0 PCI bridge: VIA Technologies, Inc. VT8237/VX700 PCI Bridge
00:08.0 Ethernet controller: Sundance Technology Inc / IC Plus Corp IC Plus IP100A Integrated 10/100 Ethernet MAC + PHY (rev 31)
00:0f.0 RAID bus controller: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80)
00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge [KT600/K8T800/K8T890 South]
00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60)
01:00.0 VGA compatible controller: VIA Technologies, Inc. KM400/KN400/P4M800 [S3 UniChrome] (rev 01)


Okay that's something I am not able to understand at all. All I want is to be able of having a screen resolution of 1024.768 that's all I don't care what or how should a do it as long as I get that as a result. I thought the driver might be the problem but if I have to fix something else than the driver then I'll do it.

mechro
November 7th, 2009, 10:11 AM
Oh, and last night it asked me to update ubuntu so now i got ubuntu karmik koala

Er... do you mean it said there was an "Upgrade" available? You didn't have to upgrade, you have a choice. "Updates" are for your current installation.

EDIT: See my post below.

freackout
November 7th, 2009, 11:55 AM
Ok guys, I've had enough of Windows and got so mad I just formated and installed Ubuntu, I was bewildered of how my internet, my sound and graphics where working so well wihtout installing any sort of driver, which ofcourse doesn't happen with Windows. I was very happy and everything, even though I felt things where "too big", I thought it was a matter of the size of icons and/or fonts, I thought it was something like the windows theme for accesibility or something and could customize it, until while I was looking for a wallpaper I read in the webpage telling me I had a screen resolution of 800x600 I really couldn't believe my eyes I thought that couldn't be possible, so I went inmediatly to the display setting and yes my screen resolution was that indeed, and I couldn't be more surprised when I saw that the other resolution available was 640xsomething...

I figured out it must be because of a driver, so after speding the whole day trying to figure out what my graphic card was, I spent the whole night trying to solve this. At first I had a very hard time trying to do something "easy", like editing the xorg.conf file a thousand times, and getting a black screen after rebooting. I got sick of that, so I tried to look for the driver, which I found on the official webpage, but I couldn't manage to install it. I found an alternate driver in the openchrome page, and after a few hours of effort, I couldn't manage to install it either. Everything went ok in the terminal until I asked the terminal to "make install", it just gives me an error message(I followed these instructions: http://www.openchrome.org/trac/wiki/Installation). Then, goofing around I found the way of installing these drivers from Synaptics, everything was succesfull I restarted the computer, no error messages or anything, but nothing happened, the highest resolution I get is 800x600.

I read about restricted drivers in the ubuntu documentation and it just said to go to system-administration-hardwaredrivers but I just get a blank window when I go there. I still got on my desktop wwhat I downloaded from the officialwebsite but I really don't know what else to do. If someone could please help me with this issue, I am really loving Ubuntu but I would love it more if I had a higher screen resolution.

I forgot to mention my hardware is a KM400/KN400/P4M800 [S3 UniChrome]

Hope someone helps i really would hate to re-install windows I wished I didn't have to see it anymore in my life but I can't live with that resolution and I don't have a single penny to buy a different graphic card, so if you're just gonna advice me to buy a new one, save your commentary really.
have you tried the icon install restricted drivers in ubuntu, its similar to envyng they will both collect the correct recommended driver for you and install it,
mine is km400 (max res 1400x1050, i also have compiz running though the resolution will depend on your monitor abilities,
Your setting can be changed by the menu options for screen resolutions or by editing the xorg.conf its in /etc/X11 however to edit it, gdm must restarted to make changes effective, to effectivly edit this you may need to be root, ie sudo su ( it will show in red root at terminal )then gedit the file. ctrl/alt/backspace restarts the gdm.

mechro
November 7th, 2009, 12:08 PM
Oops! I made a boo-boo! The sudo dpkg-reconfigure command thingy was a waste of time. I'll try again...

In your Ubuntu installation open a Terminal and type...


gksudo gedit /etc/X11/xorg.conf

After entering your user password the gedit text editor will open with your xorg.conf file. Delete all the text in the file and copy and paste all of the following (scroll right to the end of the Code box)...


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
HorizSync 31.5-48.5
VertRefresh 56-72
#UseModes "Modes0" #monitor0usemodes
Option "PreferredMode" "1024x768"
EndSection

Section "Modes"
Identifier "Modes0"
#modes0modeline0
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "VBEModes" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "AccelMethod" # <str>
#Option "HWCursor" # [<bool>]
#Option "SWCursor" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "Rotate" # [<str>]
#Option "VideoRAM" # <i>
#Option "ActiveDevice" # [<str>]
#Option "LCDDualEdge" # [<bool>]
#Option "BusWidth" # [<str>]
#Option "Center" # [<bool>]
#Option "PanelSize" # [<str>]
#Option "ForcePanel" # [<bool>]
#Option "TVDotCrawl" # [<bool>]
#Option "TVDeflicker" # <i>
#Option "TVType" # [<str>]
#Option "TVOutput" # [<str>]
#Option "DisableVQ" # [<bool>]
#Option "DRIXINERAMA" # [<bool>]
#Option "DisableIRQ" # [<bool>]
#Option "EnableAGPDMA" # [<bool>]
#Option "NoAGPFor2D" # [<bool>]
#Option "NoXVDMA" # [<bool>]
#Option "ExaNoComposite" # [<bool>]
Identifier "Card0"
Driver "via" #card0driver
VendorName "Unknown Vendor"
BoardName "Unknown Board"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1024x768"
EndSubsection
EndSection

SAVE the file and exit gedit. Exit the Terminal. Log out/Log in and/or reboot. If nothing has changed, post your xorg.conf file again.

mechro
November 7th, 2009, 12:19 PM
@ jmore9 and @ freackout...

Amae's driver is installed. It's just not working. :D

Amae
November 7th, 2009, 02:44 PM
Ok I did that, and now I am not able to start my computer.

I mean, when I rebooted, I got the ubuntu logo and then, instead of the graphical log in, I got a log in like in windows DOS. The monitor screen blinked a great deal. But I wouldn-t be able to log in either because when I typed, it wouldnt appear all of the letters I pressed, and for the user I would just try and try until it was correctly written but I couldnt do that for the password because it just remains black instead of appearing dots or stars so you know you typed in something.

Right now I am onine becuase I put the live cd of ubuntu 9 and it still took me a great deal of effort to make it work. When I started it, it gave me the following error:


The following error was encountered. You may need to update your configuration to solve this.

(EE) CHROME (0): No valid modesfound.
(EE) Screen(s) found, but none have a usable configuration.

I told it to repair but it didn-t work, I finally had to ask it to run in low graphics mode just for this time and here I am. But now I don't know how to be able to use my pc normaly. :S

mechro
November 7th, 2009, 02:58 PM
Don't panic. We can repair to the previous configuration from Puppy.

Hold on a while and I'll be back with instructions.

I'm sorry you're having such a bad experience with this.

mechro
November 7th, 2009, 03:18 PM
Can you open a Terminal and type...


sudo fdisk -l

That's lower case letter L not number 1

Just press Enter when it asks for your password. Post the results here.

Amae
November 7th, 2009, 03:33 PM
Disk /dev/sda: 41.1 GB, 41110142976 bytes
255 heads, 63 sectors/track, 4998 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x406f406e

Device Boot Start End Blocks Id System
/dev/sda1 * 1 2550 20482843+ c W95 FAT32 (LBA)
/dev/sda2 2551 3158 4883760 5 Extended
/dev/sda3 3159 4998 14779800 83 Linux
/dev/sda5 2551 3158 4883728+ 82 Linux swap / Solaris


Ok, I won-t panic, but I-m desperate with this 800x600 resolution... T_T

mechro
November 7th, 2009, 03:38 PM
We're only going to be able to restore that 800 x 600 resolution to your Ubuntu installation. Is that OK?

Amae
November 7th, 2009, 06:38 PM
Sure

Edit> I am sorry if it took me so long to rpely again, but I was sleeping my daughter and I fell asleep myself!

mechro
November 7th, 2009, 06:49 PM
Yeah, I used to have that problem... My missus would be sleeping my daughter and I'd fall asleep ;)

mechro
November 7th, 2009, 06:53 PM
Are you using the Ubuntu LiveCd now?

If you're using the Ubuntu LiveCd go to Places > Computer

Double click the icon you think is your Ubuntu installation. Navigate to /etc/X11

Post here the Location it states (under the back button near the top right is another button, click it until it reads Location in the bar).

Amae
November 7th, 2009, 07:08 PM
Ok, it wont work, it tells me nautilus had an eror and couldnt send a report because it iddnt have enough memory. ANd yes I am still fromthe livecd

mechro
November 7th, 2009, 07:48 PM
We're trying to find the location of your xorg.conf in relation to the LiveCD.

If you don't know and nautilus is giving errors open a Terminal and do...


ls /media

Amae
November 7th, 2009, 08:08 PM
disk disk-1


IK get this

mechro
November 7th, 2009, 08:10 PM
OK. Same again but do...


ls /media/disk-1

Amae
November 7th, 2009, 08:22 PM
AUTOEXEC.BAT CONFIG.SYS msdownld.tmp PFiles
b.exe configuracion NTDETECT.COM Recycled
Bootfont.bin IO.SYS ntldr System Volume Information
boot.ini MSDOS.SYS pagefile.sys


There ya go..

mechro
November 7th, 2009, 08:26 PM
That's Windows, so Ubuntu must be on "disk" so do...


ls /media/disk/etc/X11

Amae
November 7th, 2009, 08:32 PM
app-defaults xkb Xresources
cursors xorg.conf Xsession
default-display-manager xorg.conf~ Xsession.d
fonts xorg.conf-backup-091105110623 Xsession.options
rgb.txt xorg.conf-backup-091105110901 XvMCConfig
X xorg.conf.dist-upgrade-200911060803 Xwrapper.config
xinit xorg.conf.failsafe

gradinaruvasile
November 7th, 2009, 08:41 PM
I relally don't know how to figure that out, any idea?

Open a terminal (applications->accessories->terminal). Type in it:


lspci

then press enter.

Post the output of that command.

Then in the same terminal type:


sudo lshw > $HOME/Desktop/lshw-list.txt

Attach the lshw-list.txt that will be in your desktop folder file to your comment.

mechro
November 7th, 2009, 08:44 PM
Lots of back-ups in there. Finding the right one might take a while so probably easiest to do...


gksudo gedit /media/disk/etc/X11/xorg.conf

Press Enter for password. The gedit text editor will open with your xorg.conf file. Delete all the text in the file and copy and paste all of the following...


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

SAVE the file and exit gedit.

Just to make sure everything is OK do...


cat /media/disk/etc/X11/xorg.conf

And post result here.

Amae
November 7th, 2009, 10:03 PM
buntu@ubuntu:~$ cat /media/disk/etc/X11/xorg.conf
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
ubuntu@ubuntu:~$


So shall I restart now?

mechro
November 7th, 2009, 10:08 PM
Yep. But I'm afraid you've still got the low screen resolution. I'll keep looking for a solution but you might be out of luck.

By the way, if you've still got Windows, can you boot into it?

Amae
November 7th, 2009, 10:43 PM
I rebooted and kept having the same problem it gives me the same error and had to start in lw graphics mode.

And no, I can-t boot in windows I dont know why, i installed ubuntu in a different partitiuon, and that has me upset also because I got there important stuff and cant access it.

mechro
November 7th, 2009, 10:57 PM
How low is low graphics mode?

Have you got a Windows disc?

Amae
November 7th, 2009, 11:02 PM
I dont know how low it is, it looks just the same as before.

Yes I have the windows disc,... in my office.

mechro
November 7th, 2009, 11:13 PM
If you're not happy with Ubuntu you should be able to repair your Windows with the disc if it's not corrupted.

Amae
November 8th, 2009, 12:00 AM
That-s the problem I want Ubuntu! xD

Amae
November 8th, 2009, 08:27 AM
Open a terminal (applications->accessories->terminal). Type in it:


lspcithen press enter.

Post the output of that command.

Then in the same terminal type:


sudo lshw > $HOME/Desktop/lshw-list.txtAttach the lshw-list.txt that will be in your desktop folder file to your comment.

Here is what I get for the lspci:


00:00.0 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.1 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.2 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.3 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.4 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:00.7 Host bridge: VIA Technologies, Inc. P4M800 Host Bridge
00:01.0 PCI bridge: VIA Technologies, Inc. VT8237/VX700 PCI Bridge
00:08.0 Ethernet controller: Sundance Technology Inc / IC Plus Corp IC Plus IP100A Integrated 10/100 Ethernet MAC + PHY (rev 31)
00:0f.0 RAID bus controller: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80)
00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge [KT600/K8T800/K8T890 South]
00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60)
01:00.0 VGA compatible controller: VIA Technologies, Inc. KM400/KN400/P4M800 [S3 UniChrome] (rev 01)
lshw


ananta
description: Desktop Computer
product: MS-7071
vendor: MICRO-STAR INTERNATIONAL CO., LTD
version: 1.00
width: 32 bits
capabilities: smbios-2.3 dmi-2.3 smp-1.4 smp
configuration: boot=normal chassis=desktop cpus=1
*-core
description: Motherboard
product: MS-7071
vendor: MICRO-STAR INTERNATIONAL CO., LTD
physical id: 0
version: 1.00
*-firmware
description: BIOS
vendor: Phoenix Technologies, LTD
physical id: 0
version: 6.00 PG (07/28/2005)
size: 128KiB
capacity: 448KiB
capabilities: isa pci pnp apm upgrade shadowing escd cdboot bootselect socketedrom edd int13floppy360 int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int9keyboard int14serial int17printer int10video acpi usb agp ls120boot zipboot
*-cpu:0
description: CPU
product: Intel(R) Pentium(R) 4 CPU 3.00GHz
vendor: Intel Corp.
physical id: 4
bus info: cpu@0
version: 15.4.3
serial: 0000-0F43-0000-0000-0000-0000
slot: Socket 478
size: 3GHz
capacity: 3GHz
width: 64 bits
clock: 200MHz
capabilities: boot fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe x86-64 constant_tsc pebs bts pni dtes64 monitor ds_cpl est cid cx16 xtpr cpufreq
configuration: id=0
*-cache:0
description: L1 cache
physical id: 9
slot: Internal Cache
size: 32KiB
capacity: 32KiB
capabilities: synchronous internal write-back
*-cache:1
description: L2 cache
physical id: b
slot: External Cache
size: 2MiB
capacity: 2MiB
capabilities: synchronous external write-back
*-logicalcpu:0
description: Logical CPU
physical id: 0.1
width: 64 bits
capabilities: logical
*-logicalcpu:1
description: Logical CPU
physical id: 0.2
width: 64 bits
capabilities: logical
*-cpu:1
description: CPU
vendor: Intel
physical id: 5
bus info: cpu@1
version: 15.4.3
serial: 0000-0F43-0000-0000-0000-0000
slot: Socket 478
size: 2800MHz
capacity: 2800MHz
clock: 200MHz
capabilities: ht cpufreq
configuration: id=0
*-cache:0
description: L1 cache
physical id: a
slot: Internal Cache
size: 32KiB
capacity: 32KiB
capabilities: synchronous internal write-back
*-cache:1
description: L2 cache
physical id: c
slot: External Cache
size: 2MiB
capacity: 2MiB
capabilities: synchronous external write-back
*-logicalcpu:0
description: Logical CPU
physical id: 0.1
capabilities: logical
*-logicalcpu:1
description: Logical CPU
physical id: 0.2
capabilities: logical
*-memory
description: System Memory
physical id: 1b
slot: System board or motherboard
size: 939MiB
capacity: 1GiB
*-bank:0
description: DIMM [empty]
product: None
vendor: None
physical id: 0
serial: None
slot: A0
*-bank:1
description: DIMM [empty]
product: None
vendor: None
physical id: 1
serial: None
slot: A1
*-pci:0
description: Host bridge
product: P4M800 Host Bridge
vendor: VIA Technologies, Inc.
physical id: 100
bus info: pci@0000:00:00.0
version: 00
width: 32 bits
clock: 66MHz
configuration: driver=agpgart-via latency=8
resources: irq:0 memory:e8000000-efffffff(prefetchable)
*-pci
description: PCI bridge
product: VT8237/VX700 PCI Bridge
vendor: VIA Technologies, Inc.
physical id: 1
bus info: pci@0000:00:01.0
version: 00
width: 32 bits
clock: 66MHz
capabilities: pci pm bus_master cap_list
resources: memory:f4000000-f5ffffff memory:f0000000-f3ffffff(prefetchable)
*-display UNCLAIMED
description: VGA compatible controller
product: KM400/KN400/P4M800 [S3 UniChrome]
vendor: VIA Technologies, Inc.
physical id: 0
bus info: pci@0000:01:00.0
version: 01
width: 32 bits
clock: 66MHz
capabilities: pm agp agp-3.0 bus_master cap_list
configuration: latency=32 mingnt=2
resources: memory:f0000000-f3ffffff(prefetchable) memory:f4000000-f4ffffff memory:f5000000-f500ffff(prefetchable)
*-network
description: Ethernet interface
product: IC Plus IP100A Integrated 10/100 Ethernet MAC + PHY
vendor: Sundance Technology Inc / IC Plus Corp
physical id: 8
bus info: pci@0000:00:08.0
logical name: eth0
version: 31
serial: 00:06:4f:58:30:16
size: 100MB/s
capacity: 100MB/s
width: 32 bits
clock: 33MHz
capabilities: pm bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=sundance driverversion=1.2 duplex=full ip=190.84.165.74 latency=32 link=yes maxlatency=10 mingnt=10 multicast=yes port=MII speed=100MB/s
resources: irq:19 ioport:e000(size=128) memory:f6011000-f60111ff memory:3c000000-3c00ffff(prefetchable)
*-storage
description: RAID bus controller
product: VIA VT6420 SATA RAID Controller
vendor: VIA Technologies, Inc.
physical id: f
bus info: pci@0000:00:0f.0
version: 80
width: 32 bits
clock: 33MHz
capabilities: storage pm bus_master cap_list
configuration: driver=sata_via latency=32
resources: irq:20 ioport:e100(size=8) ioport:e200(size=4) ioport:e300(size=8) ioport:e400(size=4) ioport:e500(size=16) ioport:e600(size=256)
*-ide
description: IDE interface
product: VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE
vendor: VIA Technologies, Inc.
physical id: f.1
bus info: pci@0000:00:0f.1
logical name: scsi0
logical name: scsi1
version: 06
width: 32 bits
clock: 33MHz
capabilities: ide pm bus_master cap_list emulated
configuration: driver=pata_via latency=32
resources: irq:20 ioport:1f0(size=8) ioport:3f6 ioport:170(size=8) ioport:376 ioport:e700(size=16)
*-cdrom
description: CD-R/CD-RW writer
physical id: 0
bus info: scsi@0:0.0.0
logical name: /dev/cdrom
logical name: /dev/cdrw
logical name: /dev/scd0
logical name: /dev/sr0
capabilities: audio cd-r cd-rw
configuration: status=nodisc
*-disk
description: ATA Disk
product: Maxtor 6E040L0
vendor: Maxtor
physical id: 1
bus info: scsi@1:0.0.0
logical name: /dev/sda
version: NAR6
serial: E91M202E
size: 38GiB (41GB)
capabilities: partitioned partitioned:dos
configuration: ansiversion=5 signature=406f406e
*-volume:0
description: Windows FAT volume
vendor: MSDOS5.0
physical id: 1
bus info: scsi@1:0.0.0,1
logical name: /dev/sda1
version: FAT32
serial: b88a-0765
size: 19GiB
capacity: 19GiB
capabilities: primary bootable fat initialized
configuration: FATs=2 filesystem=fat
*-volume:1
description: Extended partition
physical id: 2
bus info: scsi@1:0.0.0,2
logical name: /dev/sda2
size: 4769MiB
capacity: 4769MiB
capabilities: primary extended partitioned partitioned:extended
*-logicalvolume
description: Linux swap / Solaris partition
physical id: 5
logical name: /dev/sda5
capacity: 4769MiB
capabilities: nofs
*-volume:2
description: EXT3 volume
vendor: Linux
physical id: 3
bus info: scsi@1:0.0.0,3
logical name: /dev/sda3
logical name: /
version: 1.0
serial: b6136e30-18da-48c3-83c8-a731442cd13f
size: 14GiB
capacity: 14GiB
capabilities: primary journaled extended_attributes large_files recover ext3 ext2 initialized
configuration: created=2009-10-19 12:59:06 filesystem=ext3 modified=2009-11-07 20:08:44 mount.fstype=ext3 mount.options=rw,relatime,errors=remount-ro,data=writeback mounted=2009-11-08 02:13:48 state=mounted
*-usb:0
description: USB Controller
product: VT82xxxxx UHCI USB 1.1 Controller
vendor: VIA Technologies, Inc.
physical id: 10
bus info: pci@0000:00:10.0
version: 81
width: 32 bits
clock: 33MHz
capabilities: pm bus_master cap_list
configuration: driver=uhci_hcd latency=32
resources: irq:21 ioport:e800(size=32)
*-usb:1
description: USB Controller
product: VT82xxxxx UHCI USB 1.1 Controller
vendor: VIA Technologies, Inc.
physical id: 10.1
bus info: pci@0000:00:10.1
version: 81
width: 32 bits
clock: 33MHz
capabilities: pm bus_master cap_list
configuration: driver=uhci_hcd latency=32
resources: irq:21 ioport:e900(size=32)
*-usb:2
description: USB Controller
product: VT82xxxxx UHCI USB 1.1 Controller
vendor: VIA Technologies, Inc.
physical id: 10.2
bus info: pci@0000:00:10.2
version: 81
width: 32 bits
clock: 33MHz
capabilities: pm bus_master cap_list
configuration: driver=uhci_hcd latency=32
resources: irq:21 ioport:ea00(size=32)
*-usb:3
description: USB Controller
product: VT82xxxxx UHCI USB 1.1 Controller
vendor: VIA Technologies, Inc.
physical id: 10.3
bus info: pci@0000:00:10.3
version: 81
width: 32 bits
clock: 33MHz
capabilities: pm bus_master cap_list
configuration: driver=uhci_hcd latency=32
resources: irq:21 ioport:eb00(size=32)
*-usb:4
description: USB Controller
product: USB 2.0
vendor: VIA Technologies, Inc.
physical id: 10.4
bus info: pci@0000:00:10.4
version: 86
width: 32 bits
clock: 33MHz
capabilities: pm bus_master cap_list
configuration: driver=ehci_hcd latency=32
resources: irq:21 memory:f6010000-f60100ff
*-isa
description: ISA bridge
product: VT8237 ISA bridge [KT600/K8T800/K8T890 South]
vendor: VIA Technologies, Inc.
physical id: 11
bus info: pci@0000:00:11.0
version: 00
width: 32 bits
clock: 33MHz
capabilities: isa pm bus_master cap_list
configuration: latency=0
*-multimedia
description: Multimedia audio controller
product: VT8233/A/8235/8237 AC97 Audio Controller
vendor: VIA Technologies, Inc.
physical id: 11.5
bus info: pci@0000:00:11.5
version: 60
width: 32 bits
clock: 33MHz
capabilities: pm cap_list
configuration: driver=VIA 82xx Audio latency=0
resources: irq:22 ioport:ec00(size=256)
*-pci:1
description: Host bridge
product: P4M800 Host Bridge
vendor: VIA Technologies, Inc.
physical id: 101
bus info: pci@0000:00:00.1
version: 00
width: 32 bits
clock: 33MHz
*-pci:2
description: Host bridge
product: P4M800 Host Bridge
vendor: VIA Technologies, Inc.
physical id: 102
bus info: pci@0000:00:00.2
version: 00
width: 32 bits
clock: 33MHz
*-pci:3
description: Host bridge
product: P4M800 Host Bridge
vendor: VIA Technologies, Inc.
physical id: 103
bus info: pci@0000:00:00.3
version: 00
width: 32 bits
clock: 33MHz
*-pci:4
description: Host bridge
product: P4M800 Host Bridge
vendor: VIA Technologies, Inc.
physical id: 104
bus info: pci@0000:00:00.4
version: 00
width: 32 bits
clock: 33MHz
*-pci:5
description: Host bridge
product: P4M800 Host Bridge
vendor: VIA Technologies, Inc.
physical id: 105
bus info: pci@0000:00:00.7
version: 00
width: 32 bits
clock: 33MHz
Mechro, if I change the monitor, do you think it could fix the problem?

EDIT: I found the papers and books that came with the pc, that includes the motherboard's instruction manual, is there anything I can look up in it?

mechro
November 8th, 2009, 06:17 PM
Changing the monitor may help.

On the monitor your using now can you try unplugging and plugging the cable at the monitor end and the computer end to make sure the plugs are in properly.

Is there anything in the paperwork to tell you what sort of monitor it is. We're looking for brand name, model, refresh rates, resolution.

If it works in Puppy Linux it's odd that it's not working in Ubuntu. You could try an older version of Ubuntu. Ubuntu 8.04 LTS is still supported.

Amae
November 8th, 2009, 08:19 PM
I am making lunch right now, when I'm done I'll turn off the computer, and try to look if it says anything on the back of the monitor. What I found information for is the motherboard itself, but not the monitor, which is weird because I have this vague idea that tells me I did have a booklet for the monitor.

Amae
November 10th, 2009, 01:44 AM
Hello...

I tried to look for the monitor manual but didn't run with any luck at all. I looked at the back of the monitor though and this is what it says:

KAINOS MT534GNM10
Model #556E
AC100~240V 50/60Hz 1.5A

And then on a sticker on another side had hte following: HHD3058150065

Does this help at all?

mechro
November 10th, 2009, 01:54 AM
Absolutely no returns from Google for that model.

Re the voltage (240V) - is that correct for your location?

Amae
November 10th, 2009, 02:08 AM
I don't have asingle clue about those things... XD

mechro
November 10th, 2009, 02:20 AM
Are you in Europe or America?

Amae
November 10th, 2009, 02:24 AM
I am in Colombia, South America.

mechro
November 10th, 2009, 02:40 AM
My bad. Your monitor says AC100~240V so it must be adapted for Colombia's 110V system.

There's no information on the label that will help. Sorry.

Amae
November 10th, 2009, 04:01 PM
My bad. Your monitor says AC100~240V so it must be adapted for Colombia's 110V system.

What does that mean????

Shall I write here about the board info on its manual? (the specifications of graphic card andstuff).

mechro
November 11th, 2009, 12:36 AM
What does that mean????

It doesn't matter. I was wondering whether your electricity supply matched your monitor.



Shall I write here about the board info on its manual? (the specifications of graphic card andstuff).

No thanks, you've already given the information with the lspci and lshw commands.


In the LiveCD what is the best resolution offered in System > Preferences > Display?

In the LiveCD what drivers are offered in System > Administration > Hardware Drivers?

Amae
November 17th, 2009, 07:44 PM
It doesn't matter. I was wondering whether your electricity supply matched your monitor.



No thanks, you've already given the information with the lspci and lshw commands.


In the LiveCD what is the best resolution offered in System > Preferences > Display?

In the LiveCD what drivers are offered in System > Administration > Hardware Drivers?


In the Ubuntu live CD the highest resolution I get is 800x600. And nothing appears at all on that screen.

mechro
November 18th, 2009, 04:14 PM
I've looked at trying to install an older driver but it doesn't seem to work without breaking my Jaunty X system.

Why don't you try an older version of Ubuntu with the older drivers?

Download this iso for Gutsy Gibbon Ubuntu...

http://old-releases.ubuntu.com/releases/7.10/ubuntu-7.10-desktop-i386.iso

Burn it and run it as a Live CD and see what happens.

Amae
November 21st, 2009, 05:05 PM
I'll try that then, but if it works, will I have to install the old drivers or will I have to stick with the whole entire old version of ubuntu?

mechro
November 21st, 2009, 05:12 PM
I'll try that then, but if it works, will I have to install the old drivers or will I have to stick with the whole entire old version of ubuntu?

If older Ubuntu gives you a configuration that works you may be able to install this in new Ubuntu. I don't know for sure.

Amae
November 23rd, 2009, 11:32 PM
Ok, I will try it, I haven't been able to download it (my disk was full) I borrowed a usb memory to keep some stuff in it and then download it, I hopefully do that tonight.

Also I wanted to mention another issue I have(it seems Linux isn't happy with me), I recently (very very recently, just a few days ago), got this Acer Aspire One Netbook (model ZA3) and I installed the Kubuntu 9.10 Netbook edition to it. And everything is perfect, EXCEPT i have the same resolution problem as in my pc, but all the way around. It has a 1024x768 resolution when it should be 1366x768. And it is the only available option in the display settings. Do you think you can also help me on this one? XD

mechro
November 24th, 2009, 01:10 AM
Also I wanted to mention another issue I have(it seems Linux isn't happy with me), I recently (very very recently, just a few days ago), got this Acer Aspire One Netbook (model ZA3) and I installed the Kubuntu 9.10 Netbook edition to it. And everything is perfect, EXCEPT i have the same resolution problem as in my pc, but all the way around. It has a 1024x768 resolution when it should be 1366x768. And it is the only available option in the display settings. Do you think you can also help me on this one? XD

Suggestion for the future... before buying hardware... check...

https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks

A possible, not guaranteed to work solution for your netbook is here...

http://ubuntuforums.org/showthread.php?t=1235819

Amae
November 24th, 2009, 04:23 AM
It was supposed to be a ZA7 but I got a ZA3... o well...

mechro
November 24th, 2009, 04:27 AM
It was supposed to be a ZA7 but I got a ZA3... o well...

Er... if you read it ZA7 is just as bad or worse!

Amae
November 24th, 2009, 05:49 AM
Er... if you read it ZA7 is just as bad or worse!

Yes I know(my english is becoming ****** so you probably missunderstood me).

Amae
November 27th, 2009, 07:27 AM
Hi

I downloaded that ubuntu version, and when I started my pc with it, after the ubuntu splash screen, the monitor would go "idle"(yo know, the little green light turns like dark orange), then some minutes after it would go green again and show nothing and would go orange and so on and so forth, then some text would appear and talked about some errors and that's about it.

mechro
November 28th, 2009, 12:39 AM
That's no good then. Sorry.

We'll try editing the xorg.conf file again...

Boot your 9.04 LiveCD. In a Gnome Terminal do...


gksudo gedit /media/disk/etc/X11/xorg.conf

Delete all the text in the file and copy and paste all of the following...


# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
HorizSync 31.5-48.5
VertRefresh 56-72
EndSection

Section "Screen"
Identifier "Screen0"
Device "Configured Video Device"
Monitor "Monitor0"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1024x768"
EndSubsection
EndSection

SAVE the file and exit gedit. Reboot to your Ubuntu installation. Check what resolutions are available in System > Preferences > Display.

Amae
November 28th, 2009, 07:03 PM
How am I goint to save it if i am starting from the cd? the gnome terminal is the same terminal found on applications? and, as I told you I told it to update to 9.10, how can I go back to the other version?

mechro
November 28th, 2009, 09:58 PM
How am I goint to save it if i am starting from the cd? the gnome terminal is the same terminal found on applications? and, as I told you I told it to update to 9.10, how can I go back to the other version?

In gedit, File > Save will save the edited file in in its original location with its original name, just like any other Save operation in any other application. You did exactly the same thing earlier on in the thread.

Gnome Terminal is Applications > Accessories > Terminal

You can still use your 9.04 CD, it doesn't matter at all that you have 9.10 installed on your computer. You used Puppy Linux earlier to look at your installation... that wasn't 9.10 was it? It wasn't even Ubuntu!

You don't need to go back to your earlier version. Your graphics problem is affecting all versions.

Hope that helps and you're a little less confused :)

Amae
November 30th, 2009, 10:48 AM
In gedit, File > Save will save the edited file in in its original location with its original name, just like any other Save operation in any other application. You did exactly the same thing earlier on in the thread.

Gnome Terminal is Applications > Accessories > Terminal

You can still use your 9.04 CD, it doesn't matter at all that you have 9.10 installed on your computer. You used Puppy Linux earlier to look at your installation... that wasn't 9.10 was it? It wasn't even Ubuntu!

You don't need to go back to your earlier version. Your graphics problem is affecting all versions.

Hope that helps and you're a little less confused :)

Ok I am more confused now, if that will save the xorg file I am using then why do I need to use the live cd? why can't I do it directly from my ubuntu? :S

mechro
November 30th, 2009, 12:43 PM
Yes, you can do it from your Ubuntu. I'm getting confused as well.

From your ubuntu the command will be...


gksudo gedit /etc/X11/xorg.conf

After you've copied, pasted and saved as I said above then reboot.

Amae
December 1st, 2009, 02:00 AM
Yes, you can do it from your Ubuntu. I'm getting confused as well.

From your ubuntu the command will be...


gksudo gedit /etc/X11/xorg.confAfter you've copied, pasted and saved as I said above then reboot.

Ok, I'll do so and tell you what happens.

Amae
December 1st, 2009, 12:28 PM
Oh my god, I love you I really do, I have a screen resolution of 1024x768 finally. I am SO happy now, I can't be happier than this really. THANK YOU so much for having all this patience and helping me out through all this process. I can't express how thankful I am really. I don't have to scroll sideways now when I navigate on 99% of the pages. :D

mechro
December 1st, 2009, 01:15 PM
I'm so pleased it's working, Amae.

Cheers. :D

raf2889
December 1st, 2009, 01:29 PM
to determine the type of motherb*, i did open my pc and read it directly from the printboard.

Sorry to squeze-in like thathttp://ubuntuforums.org/images/icons/icon6.gif

Amae
December 1st, 2009, 11:02 PM
Yey I am so happy thank you so much. I was wondering if you could probably help me out with my netbook? I opened a new thread because in the link you gave me the person gets errors and I am afraid to do something and then won't be able to fix things back.

This is the link to the thread: http://ubuntuforums.org/showthread.php?p=8412569