Keyboard and Mouse Unresponsive when booting up computer

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
sir_robert007

Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

Ive been encountering a weired problem with my keyboard and mouse. When I boot up my system it stops at the grub screen, which I thought was a little odd since I only have Linux Mint installed on my computer. Then when I tried to press enter on the first grub entry, I realized my keyboard was completely unresponsive. I assumed the same with the mouse as the red tracking LED was not lit. Even more strange is when I enter the bios, the keyboard works just fine and the tracking LED on the mouse is lit. Hope someone on here can help me with this problem

Comp Specs

Intel Pentium 4 (1.6 ghz)
1.2 gb ram
Linux Mint 8 32 bit
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

What kind of mouse/kbd? If both USB what USB and ACPI options are there in the BIOS? Lastly does the system boot past the grub screen and do the mouse/kbd start working again?
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

remoulder wrote:What kind of mouse/kbd? If both USB what USB and ACPI options are there in the BIOS? Lastly does the system boot past the grub screen and do the mouse/kbd start working again?
Both mouse and keyboard are USB. I should probably mention that my system was working perfectly, then when I started It up one day I got the problem I described in my previous post. Also the system doesn't boot past the grub screen. As for USB/ACPI options, I'd have to take a look at my BIOS.
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

What you could try is booting from the livecd and checking your hard drive, making sure the grub and kernel files are intact and re-installing if necessary?
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

remoulder wrote:What you could try is booting from the livecd and checking your hard drive, making sure the grub and kernel files are intact and re-installing if necessary?
Ok I successfully booted from the live cd and both the keyboard and mouse work. I checked my HD with the Palimpsest disk utility and the smart values read OK. So how would I go about verifying the grub and kernel files?
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

sir_robert007 wrote:how would I go about verifying the grub and kernel files?
What I meant was just checking your hard drive to ensure all the folders were present by comparing with the livecd. You should have initrd.img and vmlinux links in the root and a /boot folder containing a grub folder, the actual initrd-img and vmlinux kernels, config and systemmap files. The grub folder should contain lots of .mod files, a grub.cfg file and a few others. Check the grub.cfg file looks something like

Code: Select all

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
  have_grubenv=true
  load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
  saved_entry=${prev_saved_entry}
  save_env saved_entry
  prev_saved_entry=
  save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=0
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/06_mint_theme ###
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
insmod png
if background_image /boot/grub/linuxmint.png ; then
  set color_normal=white/black
  set color_highlight=white/light-gray
else
  set menu_color_normal=white/black
  set menu_color_highlight=white/light-gray
fi
### END /etc/grub.d/06_mint_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Linux Mint 8 Helena, linux 2.6.31-21-generic (/dev/sda3)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-21-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro    quiet splash
	initrd	/boot/initrd.img-2.6.31-21-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-21-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-21-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro single  
	initrd	/boot/initrd.img-2.6.31-21-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-20-generic (/dev/sda3)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-20-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro    quiet splash
	initrd	/boot/initrd.img-2.6.31-20-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-20-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-20-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro single  
	initrd	/boot/initrd.img-2.6.31-20-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
if [ ${timeout} != -1 ]; then
  if keystatus; then
    if keystatus --shift; then
      set timeout=-1
    else
      set timeout=0
    fi
  else
    if sleep --interruptible 3 ; then
      set timeout=0
    fi
  fi
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
If all this looks OK you can look at the logs in /var/log to see if they shed any light. Look at the boot and dmesg logs in particular.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

remoulder wrote:
sir_robert007 wrote:how would I go about verifying the grub and kernel files?
What I meant was just checking your hard drive to ensure all the folders were present by comparing with the livecd. You should have initrd.img and vmlinux links in the root and a /boot folder containing a grub folder, the actual initrd-img and vmlinux kernels, config and systemmap files. The grub folder should contain lots of .mod files, a grub.cfg file and a few others. Check the grub.cfg file looks something like

Code: Select all

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
  have_grubenv=true
  load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
  saved_entry=${prev_saved_entry}
  save_env saved_entry
  prev_saved_entry=
  save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=0
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/06_mint_theme ###
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
insmod png
if background_image /boot/grub/linuxmint.png ; then
  set color_normal=white/black
  set color_highlight=white/light-gray
else
  set menu_color_normal=white/black
  set menu_color_highlight=white/light-gray
fi
### END /etc/grub.d/06_mint_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Linux Mint 8 Helena, linux 2.6.31-21-generic (/dev/sda3)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-21-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro    quiet splash
	initrd	/boot/initrd.img-2.6.31-21-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-21-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-21-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro single  
	initrd	/boot/initrd.img-2.6.31-21-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-20-generic (/dev/sda3)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-20-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro    quiet splash
	initrd	/boot/initrd.img-2.6.31-20-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-20-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd
	linux	/boot/vmlinuz-2.6.31-20-generic root=UUID=3fcb7d21-5ca7-400d-9f32-4f53b9cd81bd ro single  
	initrd	/boot/initrd.img-2.6.31-20-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
if [ ${timeout} != -1 ]; then
  if keystatus; then
    if keystatus --shift; then
      set timeout=-1
    else
      set timeout=0
    fi
  else
    if sleep --interruptible 3 ; then
      set timeout=0
    fi
  fi
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
If all this looks OK you can look at the logs in /var/log to see if they shed any light. Look at the boot and dmesg logs in particular.

Ok I took a look in my HD and I have both the initrd.img and vmlinuz links in the root. I also have the /boot folder with the actual initrd-img and vmlinuz files as well as the config and system map files. I also have the grub folder with the mod files and grub.cfg file. Here is what my grub.cfg file looks like.

Code: Select all

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
  have_grubenv=true
  load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
  saved_entry=${prev_saved_entry}
  save_env saved_entry
  prev_saved_entry=
  save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set 3341ba43-bdba-4d28-823e-a0bf6228b266
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/06_mint_theme ###
insmod ext2
set root=(hd0,5)
search --no-floppy --fs-uuid --set 3341ba43-bdba-4d28-823e-a0bf6228b266
insmod png
if background_image /boot/grub/linuxmint.png ; then
  set color_normal=white/black
  set color_highlight=white/light-gray
else
  set menu_color_normal=white/black
  set menu_color_highlight=white/light-gray
fi
### END /etc/grub.d/06_mint_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Linux Mint 8 Helena, linux 2.6.31-14-generic (/dev/sda5)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,5)
	search --no-floppy --fs-uuid --set 3341ba43-bdba-4d28-823e-a0bf6228b266
	linux	/boot/vmlinuz-2.6.31-14-generic root=UUID=3341ba43-bdba-4d28-823e-a0bf6228b266 ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-14-generic
}
menuentry "Linux Mint 8 Helena, linux 2.6.31-14-generic (recovery mode)" {
        recordfail=1
        if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,5)
	search --no-floppy --fs-uuid --set 3341ba43-bdba-4d28-823e-a0bf6228b266
	linux	/boot/vmlinuz-2.6.31-14-generic root=UUID=3341ba43-bdba-4d28-823e-a0bf6228b266 ro single 
	initrd	/boot/initrd.img-2.6.31-14-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
	linux16	/boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
if [ ${timeout} != -1 ]; then
  if keystatus; then
    if keystatus --shift; then
      set timeout=-1
    else
      set timeout=0
    fi
  else
    if sleep --interruptible 3 ; then
      set timeout=0
    fi
  fi
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

Here is the dmeg log

Code: Select all

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.31-14-generic (buildd@rothera) (gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #48-Ubuntu SMP Fri Oct 16 14:04:26 UTC 2009 (Ubuntu 2.6.31-14.48-generic)
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000004bff0000 (usable)
[    0.000000]  BIOS-e820: 000000004bff0000 - 000000004bff3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000004bff3000 - 000000004c000000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.3 present.
[    0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x4bff0 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 040000000 mask FF8000000 write-back
[    0.000000]   2 base 048000000 mask FFC000000 write-back
[    0.000000]   3 base 0E0000000 mask FF8000000 write-combining
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] Scanning 0 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009fc00 (usable)
[    0.000000]  modified: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000004bff0000 (usable)
[    0.000000]  modified: 000000004bff0000 - 000000004bff3000 (ACPI NVS)
[    0.000000]  modified: 000000004bff3000 - 000000004c000000 (ACPI data)
[    0.000000]  modified: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000ffff0000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000] Using x86 segment limits to approximate NX protection
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 10000-15000
[    0.000000] RAMDISK: 3781c000 - 37fefe82
[    0.000000] Allocated new RAMDISK: 008ad000 - 01080e82
[    0.000000] Move RAMDISK from 000000003781c000 - 0000000037fefe81 to 008ad000 - 01080e81
[    0.000000] ACPI: RSDP 000f6dd0 00014 (v00 KM400 )
[    0.000000] ACPI: RSDT 4bff3000 0002C (v01 KM400  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 4bff3040 00074 (v01 KM400  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 4bff30c0 04E67 (v01 KM400  AWRDACPI 00001000 MSFT 0100000E)
[    0.000000] ACPI: FACS 4bff0000 00040
[    0.000000] ACPI: APIC 4bff7f40 0005A (v01 KM400  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 327MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000]   node 0 low ram: 00000000 - 377fe000
[    0.000000]   node 0 bootmap 00011000 - 00017f00
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0000100000 - 00008a80a0]    TEXT DATA BSS ==> [0000100000 - 00008a80a0]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [00008a9000 - 00008ac0b2]              BRK ==> [00008a9000 - 00008ac0b2]
[    0.000000]   #6 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
[    0.000000]   #7 [00008ad000 - 0001080e82]      NEW RAMDISK ==> [00008ad000 - 0001080e82]
[    0.000000]   #8 [0000011000 - 0000018000]          BOOTMAP ==> [0000011000 - 0000018000]
[    0.000000] found SMP MP-table at [c00f52f0] f52f0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0004bff0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0004bff0
[    0.000000] On node 0 totalpages: 311167
[    0.000000] free_area_init_node: node 0, pgdat c0784900, node_mem_map c1081200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 656 pages used for memmap
[    0.000000]   HighMem zone: 83298 pages, LIFO batch:15
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 dfl dfl)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 4c000000 (gap: 4c000000:b2c00000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages at c1a06000, static data 35612 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 308735
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic root=UUID=3341ba43-bdba-4d28-823e-a0bf6228b266 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 6225280 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0004bff0)
[    0.000000] Memory: 1211528k/1245120k available (4565k kernel code, 32572k reserved, 2143k data, 540k init, 335816k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff1d000 - 0xfffff000   ( 904 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc078e000 - 0xc0815000   ( 540 kB)
[    0.000000]       .data : 0xc0575554 - 0xc078d308   (2143 kB)
[    0.000000]       .text : 0xc0100000 - 0xc0575554   (4565 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] NR_IRQS:2304 nr_irqs:256
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1499.796 MHz processor.
[    0.001284] Console: colour VGA+ 80x25
[    0.001291] console [tty0] enabled
[    0.004018] Calibrating delay loop (skipped), value calculated using timer frequency.. 2999.59 BogoMIPS (lpj=5999184)
[    0.004061] Security Framework initialized
[    0.004113] AppArmor: AppArmor initialized
[    0.004126] Mount-cache hash table entries: 512
[    0.004365] Initializing cgroup subsys ns
[    0.004373] Initializing cgroup subsys cpuacct
[    0.004380] Initializing cgroup subsys memory
[    0.004394] Initializing cgroup subsys freezer
[    0.004398] Initializing cgroup subsys net_cls
[    0.004420] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.004425] CPU: L2 Cache: 256K (64 bytes/line)
[    0.004432] mce: CPU supports 4 MCE banks
[    0.004464] Performance Counters: AMD PMU driver.
[    0.004474] ... version:                 0
[    0.004478] ... bit width:               48
[    0.004480] ... generic counters:        4
[    0.004483] ... value mask:              0000ffffffffffff
[    0.004487] ... max period:              00007fffffffffff
[    0.004490] ... fixed-purpose counters:  0
[    0.004493] ... counter mask:            000000000000000f
[    0.004501] Checking 'hlt' instruction... OK.
[    0.020709] SMP alternatives: switching to UP code
[    0.028037] Freeing SMP alternatives: 19k freed
[    0.028086] ACPI: Core revision 20090521
[    0.041245] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.081994] CPU0: AMD Sempron(tm)   2200+ stepping 01
[    0.084001] Brought up 1 CPUs
[    0.084001] Total of 1 processors activated (2999.59 BogoMIPS).
[    0.084001] CPU0 attaching NULL sched-domain.
[    0.084001] Booting paravirtualized kernel on bare hardware
[    0.084001] regulator: core version 0.5
[    0.084001] Time: 14:34:47  Date: 03/25/10
[    0.084001] NET: Registered protocol family 16
[    0.084001] EISA bus registered
[    0.084001] ACPI: bus type pci registered
[    0.089273] PCI: PCI BIOS revision 2.10 entry at 0xfbaf0, last bus=1
[    0.089278] PCI: Using configuration type 1 for base access
[    0.090772] bio: create slab <bio-0> at 0
[    0.091645] ACPI: EC: Look up EC in DSDT
[    0.100588] ACPI: Interpreter enabled
[    0.100604] ACPI: (supports S0 S1 S4 S5)
[    0.100644] ACPI: Using IOAPIC for interrupt routing
[    0.108576] ACPI: No dock devices found.
[    0.108724] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.108792] pci 0000:00:00.0: reg 10 32bit mmio: [0xe0000000-0xe7ffffff]
[    0.108879] pci 0000:00:01.0: supports D1
[    0.108925] pci 0000:00:0f.0: reg 10 io port: [0xe000-0xe007]
[    0.108933] pci 0000:00:0f.0: reg 14 io port: [0xe100-0xe103]
[    0.108941] pci 0000:00:0f.0: reg 18 io port: [0xe200-0xe207]
[    0.108949] pci 0000:00:0f.0: reg 1c io port: [0xe300-0xe303]
[    0.108957] pci 0000:00:0f.0: reg 20 io port: [0xe400-0xe40f]
[    0.108965] pci 0000:00:0f.0: reg 24 io port: [0xe500-0xe5ff]
[    0.109032] pci 0000:00:0f.1: reg 20 io port: [0xe600-0xe60f]
[    0.109108] pci 0000:00:10.0: reg 20 io port: [0xe700-0xe71f]
[    0.109132] pci 0000:00:10.0: supports D1 D2
[    0.109136] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109142] pci 0000:00:10.0: PME# disabled
[    0.109189] pci 0000:00:10.1: reg 20 io port: [0xe800-0xe81f]
[    0.109213] pci 0000:00:10.1: supports D1 D2
[    0.109217] pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109222] pci 0000:00:10.1: PME# disabled
[    0.109271] pci 0000:00:10.2: reg 20 io port: [0xe900-0xe91f]
[    0.109295] pci 0000:00:10.2: supports D1 D2
[    0.109298] pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109304] pci 0000:00:10.2: PME# disabled
[    0.109349] pci 0000:00:10.3: reg 20 io port: [0xea00-0xea1f]
[    0.109374] pci 0000:00:10.3: supports D1 D2
[    0.109377] pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109382] pci 0000:00:10.3: PME# disabled
[    0.109414] pci 0000:00:10.4: reg 10 32bit mmio: [0xee000000-0xee0000ff]
[    0.109452] pci 0000:00:10.4: supports D1 D2
[    0.109456] pci 0000:00:10.4: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109461] pci 0000:00:10.4: PME# disabled
[    0.109520] HPET not enabled in BIOS. You might try hpet=force boot option
[    0.109573] pci 0000:00:11.5: reg 10 io port: [0xeb00-0xebff]
[    0.109614] pci 0000:00:11.5: supports D1 D2
[    0.109648] pci 0000:00:12.0: reg 10 io port: [0xec00-0xecff]
[    0.109657] pci 0000:00:12.0: reg 14 32bit mmio: [0xee001000-0xee0010ff]
[    0.109693] pci 0000:00:12.0: supports D1 D2
[    0.109696] pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109702] pci 0000:00:12.0: PME# disabled
[    0.109755] pci 0000:01:00.0: reg 10 32bit mmio: [0xe8000000-0xebffffff]
[    0.109763] pci 0000:01:00.0: reg 14 32bit mmio: [0xec000000-0xecffffff]
[    0.109782] pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x00ffff]
[    0.109800] pci 0000:01:00.0: supports D1 D2
[    0.109837] pci 0000:00:01.0: bridge 32bit mmio: [0xec000000-0xedffffff]
[    0.109844] pci 0000:00:01.0: bridge 32bit mmio pref: [0xe8000000-0xebffffff]
[    0.109853] pci_bus 0000:00: on NUMA node 0
[    0.109860] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.146242] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12)
[    0.146489] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 6 7 10 *11 12)
[    0.146747] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 *12)
[    0.146960] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[    0.147168] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[    0.147367] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[    0.147564] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[    0.147759] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[    0.148035] ACPI: PCI Interrupt Link [ALKA] (IRQs *20)
[    0.148282] ACPI: PCI Interrupt Link [ALKB] (IRQs *21)
[    0.148527] ACPI: PCI Interrupt Link [ALKC] (IRQs *22)
[    0.148821] ACPI: PCI Interrupt Link [ALKD] (IRQs *23)
[    0.149122] SCSI subsystem initialized
[    0.149274] libata version 3.00 loaded.
[    0.149413] usbcore: registered new interface driver usbfs
[    0.149440] usbcore: registered new interface driver hub
[    0.149485] usbcore: registered new device driver usb
[    0.149708] ACPI: WMI: Mapper loaded
[    0.149712] PCI: Using ACPI for IRQ routing
[    0.149920] Bluetooth: Core ver 2.15
[    0.149970] NET: Registered protocol family 31
[    0.149973] Bluetooth: HCI device and connection manager initialized
[    0.149978] Bluetooth: HCI socket layer initialized
[    0.149982] NetLabel: Initializing
[    0.149985] NetLabel:  domain hash size = 128
[    0.149987] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.150011] NetLabel:  unlabeled traffic allowed by default
[    0.153247] pnp: PnP ACPI init
[    0.153289] ACPI: bus type pnp registered
[    0.158913] pnp: PnP ACPI: found 12 devices
[    0.158918] ACPI: ACPI bus type pnp unregistered
[    0.158924] PnPBIOS: Disabled by ACPI PNP
[    0.158944] system 00:00: iomem range 0xc7e00-0xc7fff has been reserved
[    0.158950] system 00:00: iomem range 0xf0000-0xf7fff could not be reserved
[    0.158955] system 00:00: iomem range 0xf8000-0xfbfff could not be reserved
[    0.158960] system 00:00: iomem range 0xfc000-0xfffff could not be reserved
[    0.158965] system 00:00: iomem range 0x4bff0000-0x4bffffff could not be reserved
[    0.158970] system 00:00: iomem range 0xffff0000-0xffffffff has been reserved
[    0.158975] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[    0.158980] system 00:00: iomem range 0x100000-0x4bfeffff could not be reserved
[    0.158985] system 00:00: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.158990] system 00:00: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.158994] system 00:00: iomem range 0xfff80000-0xfffeffff has been reserved
[    0.159006] system 00:02: ioport range 0x4000-0x407f has been reserved
[    0.159011] system 00:02: ioport range 0x5000-0x500f has been reserved
[    0.159019] system 00:03: ioport range 0x4d0-0x4d1 has been reserved
[    0.159024] system 00:03: ioport range 0x294-0x297 has been reserved
[    0.193782] AppArmor: AppArmor Filesystem Enabled
[    0.193815] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.193820] pci 0000:00:01.0:   IO window: disabled
[    0.193828] pci 0000:00:01.0:   MEM window: 0xec000000-0xedffffff
[    0.193834] pci 0000:00:01.0:   PREFETCH window: 0xe8000000-0xebffffff
[    0.193852] pci 0000:00:01.0: setting latency timer to 64
[    0.193861] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.193865] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[    0.193870] pci_bus 0000:01: resource 1 mem: [0xec000000-0xedffffff]
[    0.193874] pci_bus 0000:01: resource 2 pref mem [0xe8000000-0xebffffff]
[    0.193939] NET: Registered protocol family 2
[    0.194086] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.194693] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.197014] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.198198] TCP: Hash tables configured (established 131072 bind 65536)
[    0.198205] TCP reno registered
[    0.198389] NET: Registered protocol family 1
[    0.198513] Trying to unpack rootfs image as initramfs...
[    0.527518] Freeing initrd memory: 8015k freed
[    0.544371] cpufreq-nforce2: No nForce2 chipset.
[    0.544419] Scanning for low memory corruption every 60 seconds
[    0.544604] audit: initializing netlink socket (disabled)
[    0.544631] type=2000 audit(1269527686.544:1): initialized
[    0.557006] highmem bounce pool size: 64 pages
[    0.557023] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.559289] VFS: Disk quotas dquot_6.5.2
[    0.559380] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.560236] fuse init (API version 7.12)
[    0.560354] msgmni has been set to 1727
[    0.560728] alg: No test for stdrng (krng)
[    0.560750] io scheduler noop registered
[    0.560753] io scheduler anticipatory registered
[    0.560757] io scheduler deadline registered
[    0.560824] io scheduler cfq registered (default)
[    0.560845] pci 0000:00:01.0: disabling DAC on VIA PCI bridge
[    0.560934] pci 0000:00:11.0: Bypassing VIA 8237 APIC De-Assert Message
[    0.560947] pci 0000:01:00.0: Boot video device
[    0.561068] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.561105] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.561314] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.561321] ACPI: Power Button [PWRF]
[    0.561405] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.561410] ACPI: Power Button [PWRB]
[    0.561484] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[    0.561493] ACPI: Sleep Button [SLPB]
[    0.561561] fan PNP0C0B:00: registered as cooling_device0
[    0.561569] ACPI: Fan [FAN] (on)
[    0.561990] processor LNXCPU:00: registered as cooling_device1
[    0.566607] thermal LNXTHERM:01: registered as thermal_zone0
[    0.566619] ACPI: Thermal Zone [THRM] (40 C)
[    0.566689] isapnp: Scanning for PnP cards...
[    0.696047] Switched to high resolution mode on CPU 0
[    0.920668] isapnp: No Plug & Play device found
[    0.922316] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.922450] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.922546] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.922892] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.923025] 00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.924578] brd: module loaded
[    0.925288] loop: module loaded
[    0.925439] input: Macintosh mouse button emulation as /devices/virtual/input/input3
[    0.926240] pata_via 0000:00:0f.1: version 0.3.4
[    0.926654] ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 20
[    0.926664]   alloc irq_desc for 20 on node -1
[    0.926669]   alloc kstat_irqs on node -1
[    0.926682] pata_via 0000:00:0f.1: PCI INT A -> Link[ALKA] -> GSI 20 (level, low) -> IRQ 20
[    0.927015] scsi0 : pata_via
[    0.927195] scsi1 : pata_via
[    0.929811] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xe600 irq 14
[    0.929817] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xe608 irq 15
[    0.930561] Fixed MDIO Bus: probed
[    0.930627] PPP generic driver version 2.4.2
[    0.930820] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.931157] ACPI: PCI Interrupt Link [ALKB] enabled at IRQ 21
[    0.931166]   alloc irq_desc for 21 on node -1
[    0.931170]   alloc kstat_irqs on node -1
[    0.931182] ehci_hcd 0000:00:10.4: PCI INT C -> Link[ALKB] -> GSI 21 (level, low) -> IRQ 21
[    0.931211] ehci_hcd 0000:00:10.4: EHCI Host Controller
[    0.931309] ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 1
[    0.931409] ehci_hcd 0000:00:10.4: irq 21, io mem 0xee000000
[    0.940015] ehci_hcd 0000:00:10.4: USB 2.0 started, EHCI 1.00
[    0.940148] usb usb1: configuration #1 chosen from 1 choice
[    0.940197] hub 1-0:1.0: USB hub found
[    0.940215] hub 1-0:1.0: 8 ports detected
[    0.940313] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.940345] uhci_hcd: USB Universal Host Controller Interface driver
[    0.940428] uhci_hcd 0000:00:10.0: PCI INT A -> Link[ALKB] -> GSI 21 (level, low) -> IRQ 21
[    0.940441] uhci_hcd 0000:00:10.0: UHCI Host Controller
[    0.940487] uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
[    0.940512] uhci_hcd 0000:00:10.0: irq 21, io base 0x0000e700
[    0.940644] usb usb2: configuration #1 chosen from 1 choice
[    0.940684] hub 2-0:1.0: USB hub found
[    0.940699] hub 2-0:1.0: 2 ports detected
[    0.940762] uhci_hcd 0000:00:10.1: PCI INT A -> Link[ALKB] -> GSI 21 (level, low) -> IRQ 21
[    0.940771] uhci_hcd 0000:00:10.1: UHCI Host Controller
[    0.940823] uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
[    0.940857] uhci_hcd 0000:00:10.1: irq 21, io base 0x0000e800
[    0.940997] usb usb3: configuration #1 chosen from 1 choice
[    0.941035] hub 3-0:1.0: USB hub found
[    0.941049] hub 3-0:1.0: 2 ports detected
[    0.941109] uhci_hcd 0000:00:10.2: PCI INT B -> Link[ALKB] -> GSI 21 (level, low) -> IRQ 21
[    0.941118] uhci_hcd 0000:00:10.2: UHCI Host Controller
[    0.941161] uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4
[    0.941185] uhci_hcd 0000:00:10.2: irq 21, io base 0x0000e900
[    0.941309] usb usb4: configuration #1 chosen from 1 choice
[    0.941347] hub 4-0:1.0: USB hub found
[    0.941361] hub 4-0:1.0: 2 ports detected
[    0.941430] uhci_hcd 0000:00:10.3: PCI INT B -> Link[ALKB] -> GSI 21 (level, low) -> IRQ 21
[    0.941439] uhci_hcd 0000:00:10.3: UHCI Host Controller
[    0.941488] uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 5
[    0.941511] uhci_hcd 0000:00:10.3: irq 21, io base 0x0000ea00
[    0.941634] usb usb5: configuration #1 chosen from 1 choice
[    0.941671] hub 5-0:1.0: USB hub found
[    0.941684] hub 5-0:1.0: 2 ports detected
[    0.941842] PNP: No PS/2 controller found. Probing ports directly.
[    1.092481] ata1.00: ATA-6: WDC WD400BB-00JHA0, 05.01C05, max UDMA/100
[    1.092486] ata1.00: 78165360 sectors, multi 16: LBA 
[    1.100341] ata1.00: configured for UDMA/100
[    1.100562] scsi 0:0:0:0: Direct-Access     ATA      WDC WD400BB-00JH 05.0 PQ: 0 ANSI: 5
[    1.100754] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.100821] sd 0:0:0:0: [sda] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    1.100899] sd 0:0:0:0: [sda] Write Protect is off
[    1.100904] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.100944] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.101166]  sda: sda1 sda2 < sda5 >
[    1.125221] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.192136] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.192253] mice: PS/2 mouse device common for all mice
[    1.192432] rtc_cmos 00:05: RTC can wake from S4
[    1.192494] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.192549] rtc0: alarms up to one year, y3k, 242 bytes nvram
[    1.192697] device-mapper: uevent: version 1.0.3
[    1.192867] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    1.192998] device-mapper: multipath: version 1.1.0 loaded
[    1.193003] device-mapper: multipath round-robin: version 1.0.0 loaded
[    1.193207] EISA: Probing bus 0 at eisa.0
[    1.193230] Cannot allocate resource for EISA slot 4
[    1.193234] Cannot allocate resource for EISA slot 5
[    1.193249] EISA: Detected 0 cards.
[    1.193332] cpuidle: using governor ladder
[    1.193336] cpuidle: using governor menu
[    1.194124] TCP cubic registered
[    1.194352] NET: Registered protocol family 10
[    1.195014] lo: Disabled Privacy Extensions
[    1.195492] NET: Registered protocol family 17
[    1.195527] Bluetooth: L2CAP ver 2.13
[    1.195530] Bluetooth: L2CAP socket layer initialized
[    1.195535] Bluetooth: SCO (Voice Link) ver 0.6
[    1.195538] Bluetooth: SCO socket layer initialized
[    1.195619] Bluetooth: RFCOMM TTY layer initialized
[    1.195624] Bluetooth: RFCOMM socket layer initialized
[    1.195628] Bluetooth: RFCOMM ver 1.11
[    1.195655] powernow-k8: Processor cpuid 681 not supported
[    1.195694] Using IPI No-Shortcut mode
[    1.195808] PM: Resume from disk failed.
[    1.195832] registered taskstats version 1
[    1.195995]   Magic number: 2:374:587
[    1.196205] rtc_cmos 00:05: setting system clock to 2010-03-25 14:34:48 UTC (1269527688)
[    1.196211] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.196214] EDD information not available.
[    1.252019] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    1.391777] usb 1-1: configuration #1 chosen from 1 choice
[    1.432353] ata2.00: ATAPI: LITE-ON COMBO SOHC-5232K, NK0E, max UDMA/44
[    1.432395] ata2.01: ATAPI: LTN526S, YS0N, max UDMA/33
[    1.448532] ata2.00: configured for UDMA/44
[    1.456368] ata2.01: configured for UDMA/33
[    1.458344] scsi 1:0:0:0: CD-ROM            LITE-ON  COMBO SOHC-5232K NK0E PQ: 0 ANSI: 5
[    1.463662] sr0: scsi3-mmc drive: 0x/52x writer cd/rw xa/form2 cdda tray
[    1.463668] Uniform CD-ROM driver Revision: 3.20
[    1.463829] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.463925] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    1.464271] scsi 1:0:1:0: CD-ROM            LITEON   CD-ROM LTN526S   YS0N PQ: 0 ANSI: 5
[    1.467101] sr1: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    1.467212] sr 1:0:1:0: Attached scsi CD-ROM sr1
[    1.467271] sr 1:0:1:0: Attached scsi generic sg2 type 5
[    1.467313] Freeing unused kernel memory: 540k freed
[    1.468411] Write protecting the kernel text: 4568k
[    1.468460] Write protecting the kernel read-only data: 1836k
[    1.504056] usb 1-2: new high speed USB device using ehci_hcd and address 3
[    1.764842] usb 1-2: configuration #1 chosen from 1 choice
[    1.767865] Linux agpgart interface v0.103
[    1.771914] agpgart: Detected VIA KM400/KM400A chipset
[    1.779196] Floppy drive(s): fd0 is 1.44M
[    1.800080] FDC 0 is a post-1991 82077
[    1.845499] via-rhine.c:v1.10-LK1.4.3 2007-03-06 Written by Donald Becker
[    1.845508] via-rhine: Broken BIOS detected, avoid_D3 enabled.
[    1.942667] agpgart-via 0000:00:00.0: AGP aperture is 128M @ 0xe0000000
[    1.942983] sata_via 0000:00:0f.0: version 2.4
[    1.943016] sata_via 0000:00:0f.0: PCI INT B -> Link[ALKA] -> GSI 20 (level, low) -> IRQ 20
[    1.943100] sata_via 0000:00:0f.0: routed to hard irq line 11
[    1.943254] scsi2 : sata_via
[    1.943369] scsi3 : sata_via
[    1.943442] ata3: SATA max UDMA/133 cmd 0xe000 ctl 0xe100 bmdma 0xe400 irq 20
[    1.943447] ata4: SATA max UDMA/133 cmd 0xe200 ctl 0xe300 bmdma 0xe408 irq 20
[    1.943886] ACPI: PCI Interrupt Link [ALKD] enabled at IRQ 23
[    1.943894]   alloc irq_desc for 23 on node -1
[    1.943898]   alloc kstat_irqs on node -1
[    1.943910] via-rhine 0000:00:12.0: PCI INT A -> Link[ALKD] -> GSI 23 (level, low) -> IRQ 23
[    1.945006] eth0: VIA Rhine II at 0xee001000, 00:11:09:68:c0:fa, IRQ 23.
[    1.945718] eth0: MII PHY found at address 1, status 0x7849 advertising 05e1 Link 0000.
[    2.148022] ata3: SATA link down 1.5 Gbps (SStatus 0 SControl 300)
[    2.158559] usb 3-1: new low speed USB device using uhci_hcd and address 2
[    2.339896] usb 3-1: configuration #1 chosen from 1 choice
[    2.355521] usbcore: registered new interface driver hiddev
[    2.360073] ata4: SATA link down 1.5 Gbps (SStatus 0 SControl 300)
[    2.371745] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:10.1/usb3/3-1/3-1:1.0/input/input4
[    2.371875] generic-usb 0003:046D:C316.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech Logitech USB Keyboard] on usb-0000:00:10.1-1/input0
[    2.406875] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:10.1/usb3/3-1/3-1:1.1/input/input5
[    2.407027] generic-usb 0003:046D:C316.0002: input,hidraw1: USB HID v1.10 Device [Logitech Logitech USB Keyboard] on usb-0000:00:10.1-1/input1
[    2.407062] usbcore: registered new interface driver usbhid
[    2.407068] usbhid: v2.6:USB HID core driver
[    2.588028] usb 3-2: new low speed USB device using uhci_hcd and address 3
[    2.771865] usb 3-2: configuration #1 chosen from 1 choice
[    2.788192] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:10.1/usb3/3-2/3-2:1.0/input/input6
[    2.788340] generic-usb 0003:046D:C018.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:10.1-2/input0
[    2.884978] xor: automatically using best checksumming function: pIII_sse
[    2.904005]    pIII_sse  :  2116.000 MB/sec
[    2.904010] xor: using function: pIII_sse (2116.000 MB/sec)
[    2.909221] device-mapper: dm-raid45: initialized v0.2594b
[    3.312690] PM: Starting manual resume from disk
[    3.312699] PM: Resume from partition 8:1
[    3.312702] PM: Checking hibernation image.
[    3.312981] PM: Resume from disk failed.
[    3.324244] EXT4-fs (sda5): barriers enabled
[    3.343989] kjournald2 starting: pid 368, dev sda5:8, commit interval 5 seconds
[    3.344030] EXT4-fs (sda5): delayed allocation enabled
[    3.344035] EXT4-fs: file extents enabled
[    3.351275] EXT4-fs: mballoc enabled
[    3.351300] EXT4-fs (sda5): mounted filesystem with ordered data mode
[    4.761062] Adding 1253028k swap on /dev/sda1.  Priority:-1 extents:1 across:1253028k 
[    5.118155] EXT4-fs (sda5): internal journal on sda5:8
[    5.773550] udev: starting version 147
[    6.938794] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.987355] cfg80211: Calling CRDA to update world regulatory domain
[    7.034627] Linux video capture interface: v2.00
[    7.066335] uvcvideo: Found UVC 1.00 device ASUS USB2.0 Webcam (0c45:62c0)
[    7.070084] input: ASUS USB2.0 Webcam as /devices/pci0000:00/0000:00:10.4/usb1/1-2/1-2:1.0/input/input7
[    7.070170] usbcore: registered new interface driver uvcvideo
[    7.070176] USB Video Class driver (v0.1.0)
[    7.543530] lp: driver loaded but no devices found
[    8.053284] parport_pc 00:0b: reported by Plug and Play ACPI
[    8.053410] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
[    8.148293] lp0: using parport0 (interrupt-driven).
[    8.234587] ppdev: user-space parallel port driver
[    8.244346] cfg80211: World regulatory domain updated:
[    8.244354] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.244360] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.244365] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.244370] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.244374] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.244378] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.746112] phy0: Selected rate control algorithm 'minstrel'
[    8.747202] phy0: hwaddr 00:14:d1:61:44:7d, RTL8187BvE V0 + rtl8225z2
[    8.770732] rtl8187: Customer ID is 0x00
[    8.770823] Registered led device: rtl8187-phy0::tx
[    8.770851] Registered led device: rtl8187-phy0::rx
[    8.770903] usbcore: registered new interface driver rtl8187
[    8.797349] ip_tables: (C) 2000-2006 Netfilter Core Team
[    9.755264] ACPI: PCI Interrupt Link [ALKC] enabled at IRQ 22
[    9.755276]   alloc irq_desc for 22 on node -1
[    9.755280]   alloc kstat_irqs on node -1
[    9.755292] VIA 82xx Audio 0000:00:11.5: PCI INT C -> Link[ALKC] -> GSI 22 (level, low) -> IRQ 22
[    9.755472] VIA 82xx Audio 0000:00:11.5: setting latency timer to 64
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

and the bootstrap log (boot file had nothing written in it)

Code: Select all

Selecting previously deselected package base-files.
dpkg: regarding .../base-files_5.0.0ubuntu7_i386.deb containing base-files, pre-dependency problem:
 base-files pre-depends on awk
  awk is not installed.
dpkg: warning: ignoring pre-dependency problem!
(Reading database ... 0 files and directories currently installed.)
Unpacking base-files (from .../base-files_5.0.0ubuntu7_i386.deb) ...
Selecting previously deselected package base-passwd.
Unpacking base-passwd (from .../base-passwd_3.5.21_i386.deb) ...
dpkg: base-passwd: dependency problems, but configuring anyway as you requested:
 base-passwd depends on libc6 (>= 2.8); however:
  Package libc6 is not installed.
Setting up base-passwd (3.5.21) ...

dpkg: base-files: dependency problems, but configuring anyway as you requested:
 base-files depends on awk; however:
  Package awk is not installed.
 base-files depends on libpam-modules (>= 0.79-3ubuntu3); however:
  Package libpam-modules is not installed.
Setting up base-files (5.0.0ubuntu7) ...

dpkg: regarding .../dpkg_1.15.4ubuntu2_i386.deb containing dpkg, pre-dependency problem:
 dpkg pre-depends on libc6 (>= 2.8)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../dpkg_1.15.4ubuntu2_i386.deb containing dpkg, pre-dependency problem:
 dpkg pre-depends on coreutils (>= 5.93-1)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../dpkg_1.15.4ubuntu2_i386.deb containing dpkg, pre-dependency problem:
 dpkg pre-depends on lzma
  lzma is not installed.
dpkg: warning: ignoring pre-dependency problem!
(Reading database ... 108 files and directories currently installed.)
Preparing to replace dpkg 1.15.4ubuntu2 (using .../dpkg_1.15.4ubuntu2_i386.deb) ...
Unpacking replacement dpkg ...
dpkg: dpkg: dependency problems, but configuring anyway as you requested:
 dpkg depends on libc6 (>= 2.8); however:
  Package libc6 is not installed.
 dpkg depends on coreutils (>= 5.93-1); however:
  Package coreutils is not installed.
 dpkg depends on lzma; however:
  Package lzma is not installed.
Setting up dpkg (1.15.4ubuntu2) ...

Selecting previously deselected package libc6.
(Reading database ... 342 files and directories currently installed.)
Unpacking libc6 (from .../libc6_2.10.1-0ubuntu15_i386.deb) ...
dpkg: libc6: dependency problems, but configuring anyway as you requested:
 libc6 depends on libc-bin (= 2.10.1-0ubuntu15); however:
  Package libc-bin is not installed.
 libc6 depends on libgcc1; however:
  Package libgcc1 is not installed.
 libc6 depends on tzdata; however:
  Package tzdata is not installed.
 libc6 depends on findutils (>= 4.4.0-2ubuntu2); however:
  Package findutils is not installed.
Setting up libc6 (2.10.1-0ubuntu15) ...

Selecting previously deselected package perl-base.
(Reading database ... 648 files and directories currently installed.)
Unpacking perl-base (from .../perl-base_5.10.0-24ubuntu4_i386.deb) ...
Setting up perl-base (5.10.0-24ubuntu4) ...
Selecting previously deselected package mawk.
(Reading database ... 1241 files and directories currently installed.)
Unpacking mawk (from .../mawk_1.3.3-15ubuntu1_i386.deb) ...
Setting up mawk (1.3.3-15ubuntu1) ...

Selecting previously deselected package debconf.
(Reading database ... 1260 files and directories currently installed.)
Unpacking debconf (from .../debconf_1.5.27ubuntu2_all.deb) ...
dpkg: debconf: dependency problems, but configuring anyway as you requested:
 debconf depends on debconf-i18n | debconf-english; however:
  Package debconf-i18n is not installed.
  Package debconf-english is not installed.
Setting up debconf (1.5.27ubuntu2) ...

(Reading database ... 1438 files and directories currently installed.)
Preparing to replace base-files 5.0.0ubuntu7 (using .../base-files_5.0.0ubuntu7_i386.deb) ...
Unpacking replacement base-files ...
Preparing to replace base-passwd 3.5.21 (using .../base-passwd_3.5.21_i386.deb) ...
Unpacking replacement base-passwd ...
Selecting previously deselected package bash.
dpkg: regarding .../bash_4.0-5ubuntu2_i386.deb containing bash, pre-dependency problem:
 bash pre-depends on dash
  dash is not installed.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../bash_4.0-5ubuntu2_i386.deb containing bash, pre-dependency problem:
 bash pre-depends on libncurses5 (>= 5.6+20071006-3)
dpkg: warning: ignoring pre-dependency problem!
Unpacking bash (from .../bash_4.0-5ubuntu2_i386.deb) ...
Selecting previously deselected package bsdutils.
Unpacking bsdutils (from .../bsdutils_1%3a2.16-1ubuntu5_i386.deb) ...
Selecting previously deselected package coreutils.
dpkg: regarding .../coreutils_7.4-2ubuntu1_i386.deb containing coreutils, pre-dependency problem:
 coreutils pre-depends on libacl1 (>= 2.2.11-1)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../coreutils_7.4-2ubuntu1_i386.deb containing coreutils, pre-dependency problem:
 coreutils pre-depends on libattr1 (>= 2.4.41-1)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../coreutils_7.4-2ubuntu1_i386.deb containing coreutils, pre-dependency problem:
 coreutils pre-depends on libselinux1 (>= 2.0.85)
dpkg: warning: ignoring pre-dependency problem!
Unpacking coreutils (from .../coreutils_7.4-2ubuntu1_i386.deb) ...
Selecting previously deselected package dash.
Unpacking dash (from .../dash_0.5.5.1-2ubuntu3_i386.deb) ...
Preparing to replace debconf 1.5.27ubuntu2 (using .../debconf_1.5.27ubuntu2_all.deb) ...
Unpacking replacement debconf ...
Selecting previously deselected package debconf-i18n.
Unpacking debconf-i18n (from .../debconf-i18n_1.5.27ubuntu2_all.deb) ...
Selecting previously deselected package debianutils.
Unpacking debianutils (from .../debianutils_2.30ubuntu3_i386.deb) ...
Selecting previously deselected package diff.
Unpacking diff (from .../diff_2.8.1-13_i386.deb) ...
dpkg: regarding .../dpkg_1.15.4ubuntu2_i386.deb containing dpkg, pre-dependency problem:
 dpkg pre-depends on coreutils (>= 5.93-1)
  coreutils is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../dpkg_1.15.4ubuntu2_i386.deb containing dpkg, pre-dependency problem:
 dpkg pre-depends on lzma
  lzma is not installed.
dpkg: warning: ignoring pre-dependency problem!
Preparing to replace dpkg 1.15.4ubuntu2 (using .../dpkg_1.15.4ubuntu2_i386.deb) ...
Unpacking replacement dpkg ...
Selecting previously deselected package e2fslibs.
Unpacking e2fslibs (from .../e2fslibs_1.41.9-1ubuntu3_i386.deb) ...
Selecting previously deselected package e2fsprogs.
dpkg: regarding .../e2fsprogs_1.41.9-1ubuntu3_i386.deb containing e2fsprogs, pre-dependency problem:
 e2fsprogs pre-depends on e2fslibs (= 1.41.9-1ubuntu3)
  e2fslibs is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../e2fsprogs_1.41.9-1ubuntu3_i386.deb containing e2fsprogs, pre-dependency problem:
 e2fsprogs pre-depends on libblkid1 (>= 1.34-1)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../e2fsprogs_1.41.9-1ubuntu3_i386.deb containing e2fsprogs, pre-dependency problem:
 e2fsprogs pre-depends on libcomerr2 (>= 1.34-1)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../e2fsprogs_1.41.9-1ubuntu3_i386.deb containing e2fsprogs, pre-dependency problem:
 e2fsprogs pre-depends on libss2 (>= 1.34-1)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../e2fsprogs_1.41.9-1ubuntu3_i386.deb containing e2fsprogs, pre-dependency problem:
 e2fsprogs pre-depends on libuuid1 (>= 1.34-1)
dpkg: warning: ignoring pre-dependency problem!
Unpacking e2fsprogs (from .../e2fsprogs_1.41.9-1ubuntu3_i386.deb) ...
Selecting previously deselected package findutils.
Unpacking findutils (from .../findutils_4.4.2-1_i386.deb) ...
Selecting previously deselected package gcc-4.4-base.
Unpacking gcc-4.4-base (from .../gcc-4.4-base_4.4.1-4ubuntu8_i386.deb) ...
Selecting previously deselected package grep.
Unpacking grep (from .../archives/grep_2.5.4-4_i386.deb) ...
Selecting previously deselected package gzip.
Unpacking gzip (from .../gzip_1.3.12-8ubuntu1_i386.deb) ...
Selecting previously deselected package hostname.
dpkg: regarding .../hostname_2.95ubuntu1_i386.deb containing hostname, pre-dependency problem:
 hostname pre-depends on upstart (>= 0.6.0)
dpkg: warning: ignoring pre-dependency problem!
Unpacking hostname (from .../hostname_2.95ubuntu1_i386.deb) ...
Selecting previously deselected package initscripts.
Unpacking initscripts (from .../initscripts_2.87dsf-4ubuntu11_i386.deb) ...
Selecting previously deselected package insserv.
Unpacking insserv (from .../insserv_1.12.0-11_i386.deb) ...
Selecting previously deselected package libacl1.
Unpacking libacl1 (from .../libacl1_2.2.47-2_i386.deb) ...
Selecting previously deselected package libattr1.
Unpacking libattr1 (from .../libattr1_1%3a2.4.43-3_i386.deb) ...
Selecting previously deselected package libblkid1.
Unpacking libblkid1 (from .../libblkid1_2.16-1ubuntu5_i386.deb) ...
Selecting previously deselected package libc-bin.
Unpacking libc-bin (from .../libc-bin_2.10.1-0ubuntu15_i386.deb) ...
Preparing to replace libc6 2.10.1-0ubuntu15 (using .../libc6_2.10.1-0ubuntu15_i386.deb) ...
Unpacking replacement libc6 ...
Selecting previously deselected package libcomerr2.
Unpacking libcomerr2 (from .../libcomerr2_1.41.9-1ubuntu3_i386.deb) ...
Selecting previously deselected package libdb4.7.
Unpacking libdb4.7 (from .../libdb4.7_4.7.25-7ubuntu2_i386.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.2.16-0ubuntu9_i386.deb) ...
Selecting previously deselected package libgcc1.
Unpacking libgcc1 (from .../libgcc1_1%3a4.4.1-4ubuntu8_i386.deb) ...
Selecting previously deselected package liblocale-gettext-perl.
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.05-4build1_i386.deb) ...
Selecting previously deselected package libncurses5.
Unpacking libncurses5 (from .../libncurses5_5.7+20090803-2ubuntu2_i386.deb) ...
Selecting previously deselected package libpam-modules.
dpkg: regarding .../libpam-modules_1.1.0-2ubuntu1_i386.deb containing libpam-modules, pre-dependency problem:
 libpam-modules pre-depends on libdb4.7
  libdb4.7 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../libpam-modules_1.1.0-2ubuntu1_i386.deb containing libpam-modules, pre-dependency problem:
 libpam-modules pre-depends on libpam0g (>= 1.1.0)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../libpam-modules_1.1.0-2ubuntu1_i386.deb containing libpam-modules, pre-dependency problem:
 libpam-modules pre-depends on libselinux1 (>= 2.0.85)
dpkg: warning: ignoring pre-dependency problem!
Unpacking libpam-modules (from .../libpam-modules_1.1.0-2ubuntu1_i386.deb) ...
Selecting previously deselected package libpam-runtime.
Unpacking libpam-runtime (from .../libpam-runtime_1.1.0-2ubuntu1_all.deb) ...
Selecting previously deselected package libpam0g.
Unpacking libpam0g (from .../libpam0g_1.1.0-2ubuntu1_i386.deb) ...
Selecting previously deselected package libselinux1.
Unpacking libselinux1 (from .../libselinux1_2.0.85-2ubuntu2_i386.deb) ...
Selecting previously deselected package libsepol1.
Unpacking libsepol1 (from .../libsepol1_2.0.37-1_i386.deb) ...
Selecting previously deselected package libslang2.
Unpacking libslang2 (from .../libslang2_2.1.4-3_i386.deb) ...
Selecting previously deselected package libss2.
Unpacking libss2 (from .../libss2_1.41.9-1ubuntu3_i386.deb) ...
Selecting previously deselected package libssl0.9.8.
Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-16ubuntu3_i386.deb) ...
Selecting previously deselected package libstdc++6.
Unpacking libstdc++6 (from .../libstdc++6_4.4.1-4ubuntu8_i386.deb) ...
Selecting previously deselected package libtext-charwidth-perl.
Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-5build1_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.7-1build1_i386.deb) ...
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-7_all.deb) ...
Selecting previously deselected package libudev0.
Unpacking libudev0 (from .../libudev0_147~-6_i386.deb) ...
Selecting previously deselected package libuuid1.
Unpacking libuuid1 (from .../libuuid1_2.16-1ubuntu5_i386.deb) ...
Selecting previously deselected package locales.
Unpacking locales (from .../locales_2.9+git20090617-3_all.deb) ...
Selecting previously deselected package login.
dpkg: regarding .../login_1%3a4.1.4.1-1ubuntu2_i386.deb containing login, pre-dependency problem:
 login pre-depends on libpam0g (>= 0.99.7.1)
  libpam0g is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../login_1%3a4.1.4.1-1ubuntu2_i386.deb containing login, pre-dependency problem:
 login pre-depends on libpam-runtime
  libpam-runtime is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../login_1%3a4.1.4.1-1ubuntu2_i386.deb containing login, pre-dependency problem:
 login pre-depends on libpam-modules
  libpam-modules is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking login (from .../login_1%3a4.1.4.1-1ubuntu2_i386.deb) ...
Selecting previously deselected package lsb-base.
Unpacking lsb-base (from .../lsb-base_4.0-0ubuntu5_all.deb) ...
Selecting previously deselected package lzma.
Unpacking lzma (from .../lzma_4.43-14ubuntu1_i386.deb) ...
Selecting previously deselected package makedev.
Unpacking makedev (from .../makedev_2.3.1-88_all.deb) ...
update-rc.d: using dependency based boot sequencing
insserv: warning: script 'procps' missing LSB tags and overrides
insserv: warning: script 'hwclock' missing LSB tags and overrides
insserv: warning: script 'hwclock-save' missing LSB tags and overrides
Preparing to replace mawk 1.3.3-15ubuntu1 (using .../mawk_1.3.3-15ubuntu1_i386.deb) ...
Unpacking replacement mawk ...
Selecting previously deselected package mount.
dpkg: regarding .../mount_2.16-1ubuntu5_i386.deb containing mount, pre-dependency problem:
 mount pre-depends on libblkid1 (>= 1.37-1)
  libblkid1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../mount_2.16-1ubuntu5_i386.deb containing mount, pre-dependency problem:
 mount pre-depends on libselinux1 (>= 2.0.85)
  libselinux1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../mount_2.16-1ubuntu5_i386.deb containing mount, pre-dependency problem:
 mount pre-depends on libsepol1 (>= 2.0.31)
  libsepol1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../mount_2.16-1ubuntu5_i386.deb containing mount, pre-dependency problem:
 mount pre-depends on libuuid1 (>> 1.40.3-1)
  libuuid1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking mount (from .../mount_2.16-1ubuntu5_i386.deb) ...
Selecting previously deselected package mountall.
dpkg: regarding .../archives/mountall_1.0_i386.deb containing mountall, pre-dependency problem:
 mountall pre-depends on libdbus-1-3 (>= 1.2.16)
  libdbus-1-3 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../archives/mountall_1.0_i386.deb containing mountall, pre-dependency problem:
 mountall pre-depends on libudev0
  libudev0 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking mountall (from .../archives/mountall_1.0_i386.deb) ...
Selecting previously deselected package ncurses-base.
Unpacking ncurses-base (from .../ncurses-base_5.7+20090803-2ubuntu2_all.deb) ...
Selecting previously deselected package ncurses-bin.
dpkg: regarding .../ncurses-bin_5.7+20090803-2ubuntu2_i386.deb containing ncurses-bin, pre-dependency problem:
 ncurses-bin pre-depends on libncurses5 (>= 5.6+20071006-3)
  libncurses5 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking ncurses-bin (from .../ncurses-bin_5.7+20090803-2ubuntu2_i386.deb) ...
Selecting previously deselected package passwd.
Unpacking passwd (from .../passwd_1%3a4.1.4.1-1ubuntu2_i386.deb) ...
Preparing to replace perl-base 5.10.0-24ubuntu4 (using .../perl-base_5.10.0-24ubuntu4_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package procps.
Unpacking procps (from .../procps_1%3a3.2.8-1ubuntu3_i386.deb) ...
Selecting previously deselected package python-minimal.
Unpacking python-minimal (from .../python-minimal_2.6.4~rc1-0ubuntu1_all.deb) ...
Selecting previously deselected package python2.6-minimal.
Unpacking python2.6-minimal (from .../python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb) ...
Selecting previously deselected package sed.
dpkg: regarding .../archives/sed_4.2.1-1_i386.deb containing sed, pre-dependency problem:
 sed pre-depends on libselinux1 (>= 2.0.82)
  libselinux1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking sed (from .../archives/sed_4.2.1-1_i386.deb) ...
Selecting previously deselected package sysv-rc.
Unpacking sysv-rc (from .../sysv-rc_2.87dsf-4ubuntu11_all.deb) ...
Selecting previously deselected package sysvinit-utils.
Unpacking sysvinit-utils (from .../sysvinit-utils_2.87dsf-4ubuntu11_i386.deb) ...
Selecting previously deselected package tar.
Unpacking tar (from .../archives/tar_1.22-1_i386.deb) ...
Selecting previously deselected package tzdata.
Unpacking tzdata (from .../tzdata_2009o-1ubuntu2_all.deb) ...
Selecting previously deselected package upstart.
dpkg: regarding .../upstart_0.6.3-10_i386.deb containing upstart, pre-dependency problem:
 upstart pre-depends on libdbus-1-3 (>= 1.2.16)
  libdbus-1-3 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../upstart_0.6.3-10_i386.deb containing upstart, pre-dependency problem:
 upstart pre-depends on libudev0
  libudev0 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../upstart_0.6.3-10_i386.deb containing upstart, pre-dependency problem:
 upstart pre-depends on sysvinit-utils
  sysvinit-utils is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../upstart_0.6.3-10_i386.deb containing upstart, pre-dependency problem:
 upstart pre-depends on sysv-rc
  sysv-rc is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../upstart_0.6.3-10_i386.deb containing upstart, pre-dependency problem:
 upstart pre-depends on initscripts
  initscripts is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../upstart_0.6.3-10_i386.deb containing upstart, pre-dependency problem:
 upstart pre-depends on mountall
  mountall is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking upstart (from .../upstart_0.6.3-10_i386.deb) ...
Selecting previously deselected package util-linux.
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on libblkid1 (>= 1.37-1)
  libblkid1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on libncurses5 (>= 5.6+20071006-3)
  libncurses5 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on libselinux1 (>= 2.0.85)
  libselinux1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on libslang2 (>= 2.0.7-1)
  libslang2 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on libuuid1 (>> 1.40.3-1)
  libuuid1 is unpacked, but has never been configured.
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on zlib1g (>= 1:1.1.4)
dpkg: warning: ignoring pre-dependency problem!
dpkg: regarding .../util-linux_2.16-1ubuntu5_i386.deb containing util-linux, pre-dependency problem:
 util-linux pre-depends on upstart-job
  upstart provides upstart-job but is unpacked but not configured.
dpkg: warning: ignoring pre-dependency problem!
Unpacking util-linux (from .../util-linux_2.16-1ubuntu5_i386.deb) ...
Selecting previously deselected package zlib1g.
Unpacking zlib1g (from .../zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb) ...
Setting up libc-bin (2.10.1-0ubuntu15) ...

Setting up gcc-4.4-base (4.4.1-4ubuntu8) ...
Setting up perl-base (5.10.0-24ubuntu4) ...
Setting up libtext-iconv-perl (1.7-1build1) ...
Setting up liblocale-gettext-perl (1.05-4build1) ...
Setting up libtext-charwidth-perl (0.04-5build1) ...
Setting up libtext-wrapi18n-perl (0.06-7) ...
Setting up debconf-i18n (1.5.27ubuntu2) ...
Setting up debconf (1.5.27ubuntu2) ...

Setting up tzdata (2009o-1ubuntu2) ...

Current default time zone: 'Etc/UTC'
Local time is now:      Tue Oct 27 17:56:12 UTC 2009.
Universal Time is now:  Tue Oct 27 17:56:12 UTC 2009.
Run 'dpkg-reconfigure tzdata' if you wish to change it.


Setting up libc6 (2.10.1-0ubuntu15) ...

Setting up debianutils (2.30ubuntu3) ...

Setting up libdbus-1-3 (1.2.16-0ubuntu9) ...

Setting up libpam0g (1.1.0-2ubuntu1) ...

Setting up bsdutils (1:2.16-1ubuntu5) ...

Setting up libsepol1 (2.0.37-1) ...

Setting up libudev0 (147~-6) ...

Setting up mountall (1.0) ...
Setting up tar (1.22-1) ...
update-alternatives: using /usr/sbin/rmt-tar to provide /usr/sbin/rmt (rmt) in auto mode.

Setting up zlib1g (1:1.2.3.3.dfsg-13ubuntu3) ...

Setting up locales (2.9+git20090617-3) ...

Setting up libgcc1 (1:4.4.1-4ubuntu8) ...

Setting up libncurses5 (5.7+20090803-2ubuntu2) ...

Setting up libattr1 (1:2.4.43-3) ...

Setting up e2fslibs (1.41.9-1ubuntu3) ...

Setting up base-passwd (3.5.21) ...

Setting up libcomerr2 (1.41.9-1ubuntu3) ...

Setting up mawk (1.3.3-15ubuntu1) ...

Setting up libdb4.7 (4.7.25-7ubuntu2) ...

Setting up grep (2.5.4-4) ...
Setting up libacl1 (2.2.47-2) ...

Setting up libslang2 (2.1.4-3) ...

Setting up libss2 (1.41.9-1ubuntu3) ...

Setting up findutils (4.4.2-1) ...
install-info: warning: maintainer scripts should not call install-info anymore,
install-info: warning: this is handled now by a dpkg trigger provided by the
install-info: warning: install-info package; package findutils should be updated.

Setting up insserv (1.12.0-11) ...
Setting up gzip (1.3.12-8ubuntu1) ...
install-info: warning: maintainer scripts should not call install-info anymore,
install-info: warning: this is handled now by a dpkg trigger provided by the
install-info: warning: install-info package; package gzip should be updated.

Setting up diff (2.8.1-13) ...
Setting up libselinux1 (2.0.85-2ubuntu2) ...

Setting up libstdc++6 (4.4.1-4ubuntu8) ...

Setting up dash (0.5.5.1-2ubuntu3) ...
Adding `diversion of /bin/sh to /bin/sh.distrib by dash'
Adding `diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash'

Setting up coreutils (7.4-2ubuntu1) ...
Setting up makedev (2.3.1-88) ...

Setting up lzma (4.43-14ubuntu1) ...
Setting up ncurses-base (5.7+20090803-2ubuntu2) ...
Setting up libssl0.9.8 (0.9.8g-16ubuntu3) ...

Setting up ncurses-bin (5.7+20090803-2ubuntu2) ...
Setting up libpam-modules (1.1.0-2ubuntu1) ...

Setting up base-files (5.0.0ubuntu7) ...

Setting up sed (4.2.1-1) ...
Setting up passwd (1:4.1.4.1-1ubuntu2) ...
Shadow passwords are now on.

Setting up python2.6-minimal (2.6.4~rc2-0ubuntu1) ...

Setting up libpam-runtime (1.1.0-2ubuntu1) ...

Setting up dpkg (1.15.4ubuntu2) ...

Setting up sysvinit-utils (2.87dsf-4ubuntu11) ...
Setting up bash (4.0-5ubuntu2) ...
update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode.

Setting up login (1:4.1.4.1-1ubuntu2) ...

Setting up libuuid1 (2.16-1ubuntu5) ...

Setting up lsb-base (4.0-0ubuntu5) ...
Setting up python-minimal (2.6.4~rc1-0ubuntu1) ...
Setting up sysv-rc (2.87dsf-4ubuntu11) ...

Setting up libblkid1 (2.16-1ubuntu5) ...

Setting up e2fsprogs (1.41.9-1ubuntu3) ...
Setting up mount (2.16-1ubuntu5) ...

Setting up initscripts (2.87dsf-4ubuntu11) ...

Setting up upstart (0.6.3-10) ...

Setting up hostname (2.95ubuntu1) ...
Setting up util-linux (2.16-1ubuntu5) ...
install-info: warning: maintainer scripts should not call install-info anymore,
install-info: warning: this is handled now by a dpkg trigger provided by the
install-info: warning: install-info package; package util-linux should be updated.
update-alternatives: using /bin/more to provide /usr/bin/pager (pager) in auto mode.

Setting up procps (1:3.2.8-1ubuntu3) ...
update-alternatives: using /usr/bin/w.procps to provide /usr/bin/w (w) in auto mode.

Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
(Reading database ... 5998 files and directories currently installed.)
Unpacking adduser (from .../adduser_3.110ubuntu6_all.deb) ...
Unpacking apt (from .../apt_0.7.23.1ubuntu2_i386.deb) ...
Unpacking apt-utils (from .../apt-utils_0.7.23.1ubuntu2_i386.deb) ...
Unpacking aptitude (from .../aptitude_0.4.11.11-1ubuntu6_i386.deb) ...
Unpacking busybox-initramfs (from .../busybox-initramfs_1%3a1.13.3-1ubuntu7_i386.deb) ...
Unpacking bzip2 (from .../bzip2_1.0.5-3_i386.deb) ...
Unpacking ca-certificates (from .../ca-certificates_20090814_all.deb) ...
Unpacking console-setup (from .../console-setup_1.34ubuntu4_all.deb) ...
Unpacking console-terminus (from .../console-terminus_4.28-1_all.deb) ...
Unpacking cpio (from .../cpio_2.10-1ubuntu1_i386.deb) ...
Unpacking dhcp3-client (from .../dhcp3-client_3.1.2-1ubuntu7_i386.deb) ...
Unpacking dhcp3-common (from .../dhcp3-common_3.1.2-1ubuntu7_i386.deb) ...
Unpacking dmidecode (from .../dmidecode_2.9-1ubuntu2_i386.deb) ...
Unpacking dmsetup (from .../dmsetup_2%3a1.02.27-4ubuntu7_i386.deb) ...
Unpacking eject (from .../eject_2.1.5+deb1+cvs20081104-6_i386.deb) ...
Unpacking file (from .../file_5.03-1ubuntu1_i386.deb) ...
Unpacking gnupg (from .../gnupg_1.4.9-4ubuntu7_i386.deb) ...
Unpacking gpgv (from .../gpgv_1.4.9-4ubuntu7_i386.deb) ...
Unpacking ifupdown (from .../ifupdown_0.6.8ubuntu21_i386.deb) ...
Unpacking initramfs-tools (from .../initramfs-tools_0.92bubuntu53_all.deb) ...
Unpacking iproute (from .../iproute_20090324-1_i386.deb) ...
Unpacking iputils-ping (from .../iputils-ping_3%3a20071127-1build1_i386.deb) ...
Unpacking kbd (from .../kbd_1.15-1ubuntu1_i386.deb) ...
Unpacking klibc-utils (from .../klibc-utils_1.5.15-1ubuntu2_i386.deb) ...
Unpacking laptop-detect (from .../laptop-detect_0.13.7ubuntu1_i386.deb) ...
Unpacking less (from .../archives/less_429-2_i386.deb) ...
Unpacking libatm1 (from .../libatm1_2.4.1-17.2_i386.deb) ...
Unpacking libbz2-1.0 (from .../libbz2-1.0_1.0.5-3_i386.deb) ...
Unpacking libc6-i686 (from .../libc6-i686_2.10.1-0ubuntu15_i386.deb) ...
Unpacking libcap2 (from .../libcap2_1%3a2.16-5ubuntu1_i386.deb) ...
Unpacking libclass-accessor-perl (from .../libclass-accessor-perl_0.33-1_all.deb) ...
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb) ...
Unpacking libcwidget3 (from .../libcwidget3_0.5.12-4ubuntu4_i386.deb) ...
Unpacking libdevmapper1.02.1 (from .../libdevmapper1.02.1_2%3a1.02.27-4ubuntu7_i386.deb) ...
Unpacking libept0 (from .../libept0_0.5.26ubuntu3_i386.deb) ...
Unpacking libfribidi0 (from .../libfribidi0_0.10.9-1build1_i386.deb) ...
Unpacking libgcrypt11 (from .../libgcrypt11_1.4.4-2ubuntu2_i386.deb) ...
Unpacking libgdbm3 (from .../libgdbm3_1.8.3-4_i386.deb) ...
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-0ubuntu1_i386.deb) ...
Unpacking libglib2.0-data (from .../libglib2.0-data_2.22.2-0ubuntu1_all.deb) ...
Unpacking libgnutls26 (from .../libgnutls26_2.8.3-2_i386.deb) ...
Unpacking libgpg-error0 (from .../libgpg-error0_1.6-1ubuntu1_i386.deb) ...
Unpacking libgpm2 (from .../libgpm2_1.20.4-3.2ubuntu1_i386.deb) ...
Unpacking libgssapi-krb5-2 (from .../libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb) ...
Unpacking libidn11 (from .../libidn11_1.15-1_i386.deb) ...
Unpacking libio-string-perl (from .../libio-string-perl_1.08-2_all.deb) ...
Unpacking libk5crypto3 (from .../libk5crypto3_1.7dfsg~beta3-1_i386.deb) ...
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-10_i386.deb) ...
Unpacking libklibc (from .../libklibc_1.5.15-1ubuntu2_i386.deb) ...
Unpacking libkrb5-3 (from .../libkrb5-3_1.7dfsg~beta3-1_i386.deb) ...
Unpacking libkrb5support0 (from .../libkrb5support0_1.7dfsg~beta3-1_i386.deb) ...
Unpacking libldap-2.4-2 (from .../libldap-2.4-2_2.4.18-0ubuntu1_i386.deb) ...
Unpacking liblockfile1 (from .../liblockfile1_1.08-3_i386.deb) ...
Unpacking libmagic1 (from .../libmagic1_5.03-1ubuntu1_i386.deb) ...
Unpacking libncursesw5 (from .../libncursesw5_5.7+20090803-2ubuntu2_i386.deb) ...
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4ubuntu1_i386.deb) ...
Unpacking libparse-debianchangelog-perl (from .../libparse-debianchangelog-perl_1.1.1-2ubuntu1_all.deb) ...
Unpacking libpcre3 (from .../libpcre3_7.8-3_i386.deb) ...
Unpacking libpopt0 (from .../libpopt0_1.14-4_i386.deb) ...
Unpacking libreadline6 (from .../libreadline6_6.0-5_i386.deb) ...
Unpacking libsasl2-2 (from .../libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb) ...
Unpacking libsasl2-modules (from .../libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb) ...
Unpacking libsigc++-2.0-0c2a (from .../libsigc++-2.0-0c2a_2.0.18-2_i386.deb) ...
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.16-1ubuntu1_i386.deb) ...
Unpacking libsub-name-perl (from .../libsub-name-perl_0.04-1_i386.deb) ...
Unpacking libtasn1-3 (from .../libtasn1-3_2.2-1_i386.deb) ...
Unpacking libtimedate-perl (from .../libtimedate-perl_1.1600-9_all.deb) ...
Unpacking libusb-0.1-4 (from .../libusb-0.1-4_2%3a0.1.12-13_i386.deb) ...
Unpacking libxapian15 (from .../libxapian15_1.0.15-2ubuntu2_i386.deb) ...
Unpacking libxml2 (from .../libxml2_2.7.5.dfsg-1ubuntu1_i386.deb) ...
Unpacking lockfile-progs (from .../lockfile-progs_0.1.13_i386.deb) ...
Unpacking lsb-release (from .../lsb-release_4.0-0ubuntu5_all.deb) ...
Unpacking make (from .../archives/make_3.81-6_i386.deb) ...
Unpacking mime-support (from .../mime-support_3.46-1ubuntu1_all.deb) ...
Unpacking module-init-tools (from .../module-init-tools_3.10-3_i386.deb) ...
Unpacking net-tools (from .../net-tools_1.60-23ubuntu1_i386.deb) ...
Unpacking netbase (from .../netbase_4.35ubuntu2_all.deb) ...
Unpacking netcat (from .../netcat_1.10-38_all.deb) ...
Unpacking netcat-traditional (from .../netcat-traditional_1.10-38_i386.deb) ...
Unpacking ntpdate (from .../ntpdate_1%3a4.2.4p6+dfsg-1ubuntu5_i386.deb) ...
Unpacking openssl (from .../openssl_0.9.8g-16ubuntu3_i386.deb) ...
Unpacking perl (from .../perl_5.10.0-24ubuntu4_i386.deb) ...
Unpacking perl-modules (from .../perl-modules_5.10.0-24ubuntu4_all.deb) ...
Unpacking python (from .../python_2.6.4~rc1-0ubuntu1_all.deb) ...
Unpacking python-central (from .../python-central_0.6.11ubuntu9_all.deb) ...
Unpacking python2.6 (from .../python2.6_2.6.4~rc2-0ubuntu1_i386.deb) ...
Unpacking readline-common (from .../readline-common_6.0-5_all.deb) ...
Unpacking rsyslog (from .../rsyslog_4.2.0-2ubuntu5_i386.deb) ...
Unpacking sgml-base (from .../sgml-base_1.26_all.deb) ...
Unpacking shared-mime-info (from .../shared-mime-info_0.70-0ubuntu1_i386.deb) ...
Unpacking sudo (from .../sudo_1.7.0-1ubuntu2_i386.deb) ...
Unpacking tasksel (from .../tasksel_2.73ubuntu23_all.deb) ...
Unpacking tasksel-data (from .../tasksel-data_2.73ubuntu23_all.deb) ...
Unpacking ubuntu-keyring (from .../ubuntu-keyring_2009.08.28_all.deb) ...
Unpacking ubuntu-minimal (from .../ubuntu-minimal_1.175_i386.deb) ...
Unpacking ucf (from .../ucf_3.0018ubuntu1_all.deb) ...
Moving old data out of the way
Unpacking udev (from .../archives/udev_147~-6_i386.deb) ...
Adding `local diversion of /sbin/udevadm to /sbin/udevadm.upgrade'
Unpacking vim-common (from .../vim-common_2%3a7.2.245-2ubuntu2_i386.deb) ...
Unpacking vim-tiny (from .../vim-tiny_2%3a7.2.245-2ubuntu2_i386.deb) ...
Unpacking whiptail (from .../whiptail_0.52.10-4ubuntu1_i386.deb) ...
Unpacking xkb-data (from .../xkb-data_1.6-1ubuntu5_all.deb) ...
Unpacking xml-core (from .../archives/xml-core_0.12_all.deb) ...
Setting up sudo (1.7.0-1ubuntu2) ...
No /etc/sudoers found... creating one for you.

Setting up libxml2 (2.7.5.dfsg-1ubuntu1) ...

Setting up module-init-tools (3.10-3) ...

Setting up libgdbm3 (1.8.3-4) ...

Setting up libtasn1-3 (2.2-1) ...

Setting up libpopt0 (1.14-4) ...

Setting up libusb-0.1-4 (2:0.1.12-13) ...

Setting up libgpg-error0 (1.6-1ubuntu1) ...

Setting up ucf (3.0018ubuntu1) ...

Setting up vim-common (2:7.2.245-2ubuntu2) ...

Setting up openssl (0.9.8g-16ubuntu3) ...

Setting up apt (0.7.23.1ubuntu2) ...

Setting up netbase (4.35ubuntu2) ...

Setting up libmagic1 (5.03-1ubuntu1) ...

Setting up libxapian15 (1.0.15-2ubuntu2) ...

Setting up dmidecode (2.9-1ubuntu2) ...
Setting up file (5.03-1ubuntu1) ...
Setting up libfribidi0 (0.10.9-1build1) ...

Setting up adduser (3.110ubuntu6) ...

Setting up libklibc (1.5.15-1ubuntu2) ...
Setting up libsqlite3-0 (3.6.16-1ubuntu1) ...

Setting up libkeyutils1 (1.2-10) ...

Setting up iproute (20090324-1) ...
Setting up libdevmapper1.02.1 (2:1.02.27-4ubuntu7) ...

Setting up libidn11 (1.15-1) ...

Setting up libatm1 (2.4.1-17.2) ...

Setting up klibc-utils (1.5.15-1ubuntu2) ...
Setting up libkrb5support0 (1.7dfsg~beta3-1) ...

Setting up libnewt0.52 (0.52.10-4ubuntu1) ...

Setting up net-tools (1.60-23ubuntu1) ...
Setting up xkb-data (1.6-1ubuntu5) ...
Setting up libsigc++-2.0-0c2a (2.0.18-2) ...

Setting up netcat-traditional (1.10-38) ...
update-alternatives: using /bin/nc.traditional to provide /bin/nc (nc) in auto mode.

Setting up libgpm2 (1.20.4-3.2ubuntu1) ...

Setting up libpcre3 (7.8-3) ...

Setting up libept0 (0.5.26ubuntu3) ...

Setting up libncursesw5 (5.7+20090803-2ubuntu2) ...

Setting up eject (2.1.5+deb1+cvs20081104-6) ...
Setting up busybox-initramfs (1:1.13.3-1ubuntu7) ...
Setting up iputils-ping (3:20071127-1build1) ...
Setting up libbz2-1.0 (1.0.5-3) ...

Setting up console-terminus (4.28-1) ...
Setting up libc6-i686 (2.10.1-0ubuntu15) ...

Setting up mime-support (3.46-1ubuntu1) ...
update-alternatives: using /usr/bin/see to provide /usr/bin/view (view) in auto mode.

Setting up dhcp3-common (3.1.2-1ubuntu7) ...
Setting up apt-utils (0.7.23.1ubuntu2) ...

Setting up make (3.81-6) ...
Setting up rsyslog (4.2.0-2ubuntu5) ...

Creating config file /etc/rsyslog.d/50-default.conf with new version

Warning: Fake initctl called, doing nothing

Setting up cpio (2.10-1ubuntu1) ...
update-alternatives: using /bin/mt-gnu to provide /bin/mt (mt) in auto mode.
install-info: warning: maintainer scripts should not call install-info anymore,
install-info: warning: this is handled now by a dpkg trigger provided by the
install-info: warning: install-info package; package cpio should be updated.

Setting up ca-certificates (20090814) ...
Updating certificates in /etc/ssl/certs... WARNING: Skipping duplicate certificate ca-certificates.crt
141 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.

Setting up vim-tiny (2:7.2.245-2ubuntu2) ...
update-alternatives: using /usr/bin/vim.tiny to provide /usr/bin/rview (rview) in auto mode.
update-alternatives: using /usr/bin/vim.tiny to provide /usr/bin/vi (vi) in auto mode.
update-alternatives: using /usr/bin/vim.tiny to provide /usr/bin/view (view) in auto mode.
update-alternatives: using /usr/bin/vim.tiny to provide /usr/bin/ex (ex) in auto mode.
update-alternatives: using /usr/bin/vim.tiny to provide /usr/bin/editor (editor) in auto mode.

Setting up less (429-2) ...

Setting up libglib2.0-0 (2.22.2-0ubuntu1) ...

Setting up readline-common (6.0-5) ...

Setting up libcap2 (1:2.16-5ubuntu1) ...

Setting up netcat (1.10-38) ...
Setting up liblockfile1 (1.08-3) ...

Setting up shared-mime-info (0.70-0ubuntu1) ...

Setting up laptop-detect (0.13.7ubuntu1) ...
Setting up libgcrypt11 (1.4.4-2ubuntu2) ...

Setting up bzip2 (1.0.5-3) ...

Setting up libglib2.0-data (2.22.2-0ubuntu1) ...
Setting up libk5crypto3 (1.7dfsg~beta3-1) ...

Setting up whiptail (0.52.10-4ubuntu1) ...
Setting up ifupdown (0.6.8ubuntu21) ...
ifupdown.postinst: Warning: No 'iface lo' definition found in /etc/network/interfaces
ifupdown.postinst: Warning: No 'auto lo' statement found in /etc/network/interfaces

Setting up dhcp3-client (3.1.2-1ubuntu7) ...

Setting up libreadline6 (6.0-5) ...

Setting up lockfile-progs (0.1.13) ...
Setting up libcwidget3 (0.5.12-4ubuntu4) ...

Setting up libgnutls26 (2.8.3-2) ...

Setting up aptitude (0.4.11.11-1ubuntu6) ...

Setting up ntpdate (1:4.2.4p6+dfsg-1ubuntu5) ...
Setting up libkrb5-3 (1.7dfsg~beta3-1) ...

Setting up gpgv (1.4.9-4ubuntu7) ...
Setting up libgssapi-krb5-2 (1.7dfsg~beta3-1) ...

Setting up python2.6 (2.6.4~rc2-0ubuntu1) ...

Setting up python (2.6.4~rc1-0ubuntu1) ...

Setting up python-central (0.6.11ubuntu9) ...

Setting up lsb-release (4.0-0ubuntu5) ...

Setting up udev (147~-6) ...

Warning: Fake initctl called, doing nothing
Removing `local diversion of /sbin/udevadm to /sbin/udevadm.upgrade'
update-initramfs: deferring update (trigger activated)

Setting up initramfs-tools (0.92bubuntu53) ...
update-initramfs: deferring update (trigger activated)

Setting up perl-modules (5.10.0-24ubuntu4) ...
Setting up console-setup (1.34ubuntu4) ...
 * Setting up console font and keymap...
   ...done.
update-initramfs: deferring update (trigger activated)

Setting up tasksel-data (2.73ubuntu23) ...
Setting up kbd (1.15-1ubuntu1) ...
 Removing any system startup links for /etc/init.d/console-screen.kbd.sh ...
update-initramfs: deferring update (trigger activated)

Setting up libsasl2-modules (2.1.23.dfsg1-1ubuntu3) ...
Setting up libsasl2-2 (2.1.23.dfsg1-1ubuntu3) ...

Setting up dmsetup (2:1.02.27-4ubuntu7) ...
update-initramfs: deferring update (trigger activated)

Setting up perl (5.10.0-24ubuntu4) ...
update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode.

Setting up libsub-name-perl (0.04-1) ...
Setting up libldap-2.4-2 (2.4.18-0ubuntu1) ...

Setting up libio-string-perl (1.08-2) ...
Setting up libclass-accessor-perl (0.33-1) ...
Setting up libcurl3-gnutls (7.19.5-1ubuntu2) ...

Setting up libtimedate-perl (1.1600-9) ...
Setting up sgml-base (1.26) ...

Setting up tasksel (2.73ubuntu23) ...

Setting up gnupg (1.4.9-4ubuntu7) ...

Setting up ubuntu-keyring (2009.08.28) ...
gpg: /etc/apt/trustdb.gpg: trustdb created
gpg: key 437D05B5: "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" 17 new signatures
gpg: key FBB75451: public key "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" imported
gpg: Total number processed: 2
gpg:               imported: 1
gpg:         new signatures: 17
gpg: no ultimately trusted keys found

Setting up xml-core (0.12) ...

Setting up libparse-debianchangelog-perl (1.1.1-2ubuntu1) ...
Setting up ubuntu-minimal (1.175) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
Processing triggers for initramfs-tools ...
hope this helps
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

sir_robert007 wrote:0.109520] HPET not enabled in BIOS. You might try hpet=force boot option
This might be the problem, there's an existing bug https://bugs.launchpad.net/ubuntu/+sour ... bug/270798 relating to hpet. A BIOS update may possibly be the answer, but you could try adding the various boot options mentioned in post 59 on, to see if they help. As you can't use the keyboard at the grub menu, you will have to boot into the livecd and edit the /etc/default/grub file on the hard drive. You will need to do this as root and update the grub afterwards.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

remoulder wrote:
sir_robert007 wrote:0.109520] HPET not enabled in BIOS. You might try hpet=force boot option
This might be the problem, there's an existing bug https://bugs.launchpad.net/ubuntu/+sour ... bug/270798 relating to hpet. A BIOS update may possibly be the answer, but you could try adding the various boot options mentioned in post 59 on, to see if they help. As you can't use the keyboard at the grub menu, you will have to boot into the livecd and edit the /etc/default/grub file on the hard drive. You will need to do this as root and update the grub afterwards.
I tried the options you suggested in the grub.cfg file. "Clockwise=jiffies" and "hpet=disable" didn't work. I then tried the option in post #60 "nolapic apci=off" and that fixed the problem. Mint booted up and the keyboard and mouse work now. I just have one other problem which may have resulted from me editing the grub.cfg file (although its not really a major problem, just a minor inconvenience). When I shut down the computer the screen goes blank, then I get a message saying "Caught signal 15, shutting down. Init: Disconnected from system bus. System halted." Since the system has been halted I just push the power button on the computer and it turns off but I would like to get this computer working to how it was before any of this happened
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

sir_robert007 wrote:I tried the options you suggested in the grub.cfg file
You shouldn't edit the grub.cfg file directly, changes should be put in the /etc/default/grub file and sudo update-grub run as I already said.
sir_robert007 wrote:I get a message saying "Caught signal 15, shutting down
This could be a direct result of using the nolapic option. Did you not try the hpet=force option as suggested in the error message?
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

remoulder wrote:You shouldn't edit the grub.cfg file directly, changes should be put in the /etc/default/grub file and sudo update-grub run as I already said.
Oops sorry i didn't really didn't understand what you meant by editing the /etc/default/grub file. Fortunately I made a backup copy of the grub.cfg file before I edited it.
remoulder wrote:This could be a direct result of using the nolapic option. Did you not try the hpet=force option as suggested in the error message?
I tried the hpet=force option using the method you described and that fixed the problem. The PC now works exactly like it did before this problem occurred. Now that it is fixed, what i would like to know is what would cause such a problem? As I said in my first post the computer was working just fine. Then when I turned it on one day the keyboard and mouse failed to work and it was stuck at the grub menu. So what would have caused this problem in the first place?
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

sir_robert007 wrote:So what would have caused this problem in the first place?
Glad you're back up and running. As for what caused it, my best guess would be an update. HPET stands for High Precision Event Timer and is a BIOS hardware function. If you did a kernel or hal update around that time, this may have been the cause.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
sir_robert007

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by sir_robert007 »

remoulder wrote: Glad you're back up and running. As for what caused it, my best guess would be an update. HPET stands for High Precision Event Timer and is a BIOS hardware function. If you did a kernel or hal update around that time, this may have been the cause.
Ah ok. I do recall performing an update around the same time this problem occurred. Oh also I thought one could only configure BIOS hardware functions by entering the BIOS setup. This would be the first time ive ever heard of configuring BIOS functions via the grub files. Anyway thanks remoulder for the help!
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Keyboard and Mouse Unresponsive when booting up computer

Post by remoulder »

sir_robert007 wrote:This would be the first time ive ever heard of configuring BIOS functions via the grub files
This is quite common, there are many kernel parameters that interact directly with BIOS functions. There are even applications that allow you to set (some) BIOS settings from the desktop, certainly for Windows and though I don't of any, I imagine for Linux also.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
Locked

Return to “Hardware Support”