PDA

View Full Version : [ubuntu] virtual terminal pasword



fingerrish
February 1st, 2009, 07:35 PM
i am trying to install NVIDIA driver update.
file name: NVIDIA-Linux-x86-180.22-pkg1.run
first i run in terminal: sudo sh NVIDIA-Linux-x86-180.22-pkg1.run
but installation doesn't start because it says that i need to turn off X server.
i found in some forums that i have to use: sudo etc/init.d/gdm stop
after running this i have black screen with some writings that everything is ok.
then i run virtual terminal Ctrl+Alt+F1
then i run again: sudo sh NVIDIA-Linux-x86-180.22-pkg1.run
asks me password - i type the password which i use every-time in terminal, but it says: login incorrect
.
so which password i need to use or is there any simpler way to install this driver update?

taurus
February 1st, 2009, 07:38 PM
Wait a second there. When you pressed Ctrl+Alt+F1 to get to another console, did you log in with your username and password first before you tried to install nVidia driver?

fingerrish
February 1st, 2009, 07:43 PM
Wait a second there. When you pressed Ctrl+Alt+F1 to get to another console, did you log in with your username and password first before you tried to install nVidia driver?

which username? where can i find it?

taurus
February 1st, 2009, 07:44 PM
Don't you have a login name that you use to login when you boot up Ubuntu?

fingerrish
February 1st, 2009, 07:58 PM
Don't you have a login name that you use to login when you boot up Ubuntu?

it doesn't show login boot.
just starts auto.

fingerrish
February 1st, 2009, 08:04 PM
ok friend came and installed this driver but now i have other problem.
when i start ubuntu it shows that kernel and x server doesn't work.
so what i need to do to make them work with new update?

taurus
February 1st, 2009, 08:06 PM
it doesn't show login boot.
just starts auto.

Even if you have the auto login, there is still a username for your account. One way to find out is to open a terminal and run

Applications -> Accessories -> Terminal

id

taurus
February 1st, 2009, 08:08 PM
ok friend came and installed this driver but now i have other problem.
when i start ubuntu it shows that kernel and x server doesn't work.
so what i need to do to make them work with new update?

What kind of nvidia card do you have? I assume you have checked the System -> Administration -> Hardware Drivers first. And yes, it probably doesn't have the latest version but at least you are certain that it would work.

I assume you are currently log in from a prompt. If you are, post the output of this command.


cat /etc/X11/xorg.conf

fingerrish
February 1st, 2009, 08:11 PM
What kind of nvidia card do you have? I assume you have checked the System -> Administration -> Hardware Drivers first. And yes, it probably doesn't have the latest version but at least you are certain that it would work.

I assume you are currently log in from a prompt. If you are, post the output of this command.


cat /etc/X11/xorg.conf

i am using NVIDIA Geforce 7600

# 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 "Configured Monitor"
EndSection

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

Section "Module"
Load "glx"
EndSection

Section "Device"
Identifier "Configured Video Device"
Driver "nvidia"
Option "NoLogo" "True"
EndSection

taurus
February 1st, 2009, 08:17 PM
i am using NVIDIA Geforce 7600

# 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 "Configured Monitor"
EndSection

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

Section "Module"
Load "glx"
EndSection

Section "Device"
Identifier "Configured Video Device"
Driver "nvidia"
Option "NoLogo" "True"
EndSection

What is the error message when you run this command from a prompt?


startx
If the X server doesn't start with your new nvidia driver, you can reverse back to the generic nv driver. Edit /etc/X11/xorg.conf


sudo nano -Bw /etc/X11/xorg.conf
and replace the nvidia with nv.



Section "Device"
Identifier "Configured Video Device"
Driver "nv"
Option "NoLogo" "True"
EndSection

Save it and exit with <Ctrl>x and Y. Now, see what happens if you start X again.


startx

fingerrish
February 1st, 2009, 08:32 PM
What is the error message when you run this command from a prompt?


startx
If the X server doesn't start with your new nvidia driver, you can reverse back to the generic nv driver. Edit /etc/X11/xorg.conf


sudo nano -Bw /etc/X11/xorg.conf
and replace the nvidia with nv.



Section "Device"
Identifier "Configured Video Device"
Driver "nv"
Option "NoLogo" "True"
EndSection

Save it and exit with <Ctrl>x and Y. Now, see what happens if you start X again.


startx

Fatal server error:
Server is already active for display 0
If this server is no longer running, remove /tmp/.X0-lock
and start again.

xinit: Server error.

taurus
February 1st, 2009, 08:36 PM
Press <Alt>F7 to get back to the GUI login screen. Do you see a GUI login screen? Press <Ctrl><Alt>Backspace to restart X server if you want.

fingerrish
February 1st, 2009, 08:39 PM
Press <Alt>F7 to get back to the GUI login screen. Do you see a GUI login screen? Press <Ctrl><Alt>Backspace to restart X server if you want.

i pressed Alt+F7 but nothing happened

taurus
February 1st, 2009, 08:41 PM
Try <Ctrl><Alt>Backspace to restart the X server or reboot.


sudo shutdown -r now

fingerrish
February 1st, 2009, 08:47 PM
Try <Ctrl><Alt>Backspace to restart the X server or reboot.


sudo shutdown -r now

tryed - x server still doesn't work

taurus
February 1st, 2009, 08:57 PM
Is there any error message?

Can you post the output of this command, after you have logged in?


cat /var/log/Xorg.0.log

fingerrish
February 1st, 2009, 09:01 PM
Is there any error message?

Can you post the output of this command, after you have logged in?


cat /var/log/Xorg.0.log

DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 320
BnkNumberOfImagePages: 30
LinNumberOfImagePages: 30
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
Mode: 135 (320x240)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 640
XResolution: 320
YResolution: 240
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 19
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 640
BnkNumberOfImagePages: 19
LinNumberOfImagePages: 19
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
*Mode: 136 (320x240)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 1280
XResolution: 320
YResolution: 240
XCharSize: 8
YCharSize: 8
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 10
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 10
LinNumberOfImagePages: 10
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 229500000
Mode: 13d (640x400)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 1280
XResolution: 640
YResolution: 400
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 6
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 6
LinNumberOfImagePages: 6
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
*Mode: 13e (640x400)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 2560
XResolution: 640
YResolution: 400
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 229500000
Mode: 145 (1600x1200)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 1600
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 1
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
Mode: 146 (1600x1200)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 3200
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 1
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
Mode: 147 (1400x1050)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 1400
XResolution: 1400
YResolution: 1050
XCharSize: 8
YCharSize: 14
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 1
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 1400
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
Mode: 148 (1400x1050)
ModeAttributes: 0x39f
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 2800
XResolution: 1400
YResolution: 1050
XCharSize: 8
YCharSize: 14
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 1
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 2800
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 229500000
*Mode: 152 (2048x1536)
ModeAttributes: 0x3db
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0009f65
BytesPerScanline: 8192
XResolution: 2048
YResolution: 1536
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xc0000000
LinBytesPerScanLine: 8192
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 229500000

(II) VESA(0): Total Memory: 8192 64KB banks (524288kB)
(II) VESA(0): Configured Monitor: Using hsync range of 30.00-70.00 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 50.00-120.00 Hz
(II) VESA(0): Configured Monitor: Using maximum pixel clock of 110.00 MHz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode "2048x1536" (no mode of this name)
(II) VESA(0): Not using built-in mode "640x400" (no mode of this name)
(II) VESA(0): Not using built-in mode "320x400" (no mode of this name)
(II) VESA(0): Not using built-in mode "320x240" (no mode of this name)
(II) VESA(0): Not using built-in mode "320x200" (no mode of this name)
(--) VESA(0): Virtual size is 1280x1024 (pitch 1280)
(**) VESA(0): *Built-in mode "1280x1024"
(**) VESA(0): *Built-in mode "1024x768"
(**) VESA(0): *Built-in mode "800x600"
(**) VESA(0): *Built-in mode "640x480"
(**) VESA(0): Display dimensions: (330, 240) mm
(**) VESA(0): DPI set to (98, 108)
(**) 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.5.2, 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.5.2, 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 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -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: 524288 kB
(II) VESA(0): VESA VBE OEM: NVIDIA
(II) VESA(0): VESA VBE OEM Software Rev: 5.115
(II) VESA(0): VESA VBE OEM Vendor: NVIDIA Corporation
(II) VESA(0): VESA VBE OEM Product: G73 Board - p345h0
(II) VESA(0): VESA VBE OEM Product Rev: Chip Rev
(II) VESA(0): virtual address = 0x969e6000,
physical address = 0xc0000000, size = 536870912
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Backing store disabled
(II) VESA(0): DPMS enabled
(WW) VESA(0): Option "UseFBDev" is not used
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(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) Initializing built-in extension XEVIE
(EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
(II) config/hal: Adding input device Macintosh mouse button emulation
(II) LoadModule: "evdev"

(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
compiled for 1.5.2, module version = 2.0.99
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 2.1
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event0"
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Configuring as mouse
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) config/hal: Adding input device ImExPS/2 Generic Explorer Mouse
(**) ImExPS/2 Generic Explorer Mouse: always reports core events
(**) ImExPS/2 Generic Explorer Mouse: Device: "/dev/input/event6"
(II) ImExPS/2 Generic Explorer Mouse: Found x and y relative axes
(II) ImExPS/2 Generic Explorer Mouse: Found 5 mouse buttons
(II) ImExPS/2 Generic Explorer Mouse: Configuring as mouse
(II) XINPUT: Adding extended input device "ImExPS/2 Generic Explorer Mouse" (type: MOUSE)
(**) ImExPS/2 Generic Explorer Mouse: YAxisMapping: buttons 4 and 5
(**) ImExPS/2 Generic Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
(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" "lv"
(**) AT Translated Set 2 keyboard: xkb_layout: "lv"

taurus
February 1st, 2009, 09:05 PM
Can I have a look at your /etc/X11/xorg.conf again?


cat /etc/X11/xorg.conf

fingerrish
February 1st, 2009, 09:07 PM
Can I have a look at your /etc/X11/xorg.conf again?


cat /etc/X11/xorg.conf

Section "Monitor"
Identifier "Configured Monitor"
EndSection

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

Section "Module"
Load "glx"
EndSection

Section "Device"
Identifier "Configured Video Device"
Driver "nv"
Option "NoLogo" "True"
EndSection

taurus
February 1st, 2009, 09:11 PM
Try


sudo dpkg-reconfigure xserver-xorg
shutdown -r now

fingerrish
February 1st, 2009, 09:26 PM
Try


sudo dpkg-reconfigure xserver-xorg
shutdown -r now

still doesn't work
i think the best solution is to go back to windows because this isn't the first time i have trouble with linux!