FAQ Search Today's Posts Mark Forums Read
» Video Reviews

» Linux Archive

Linux-archive is a website aiming to archive linux email lists and to make them easily accessible for linux users/developers.


» Sponsor

» Partners

» Sponsor


 
 
LinkBack Thread Tools
 
Old 01-01-2010, 10:31 PM
"Wayne
 
Default

Stan Hoeppner wrote:

Wayne <linuxtwo@gmail.com> put forth on 1/1/2010 2:57 PM:


I think I am missing something but don't know what other then a missing
route statement.


It's not a route issue because the PCs are all on the same class C subnet (or
should be). I looked at a previous route table you posted and it was fine.
Speaking of which, what is your subnet mask for the ath0 interface?


That is in the Wcid2 file the ifconfig at the bottom 255.255.255.0

For that

matter, what is the subnet mask on all the machines' wireless ethernet
interfaces?


My wife is busy on her XP box but I found the Xp routing buy using
'route print'


0x2 ..02 0d 60 36 6f 27 ......MAC Bridge Miniport - Packet Scheduler
Miniport
0s10004 ...00 ie 2a 22 60 3c Netgear WG111v2 54Mbps Wileless USB 2.0
Adapter - Packet Scheduler Miniport
================================================== ===================
================================================== ===================
Active Routes:
Network Destination Netmask Gateway Interface
0.0.0.0 0.0.0.1 192.168.1.1 192.168.1.2
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1
169.254.0.0 255.255.0.0 169.254.37.19 169.254.37.19
169.254.37.19 255.255.255.255 127.0.0.1 127.0.0.1
169.254.255.255 255.255.255.255 169.254.37.19 169.254.37.19
192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2
192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1
192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2
224.0.0.0 240.0.0.0 169.254.37.19 169.254.37.19
224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2
255.255.255.255 255.255.255.255 169.254.37.19 169.254.37.19
255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2
Default Gateway 192.168.1.1
~



And, most importantly, what is the subnet mask on the wireless
ethernet interface on the MiFi 2200?


MiFi Internet Connection

IP Address: 75.195.36.90
Mask: 255.255.255.0
Gateway: 75.195.36.90
DNS: 66.174.95.44

MiFi WLAN
IP Address: 192.168.1.1
Mask: 255.255.255.0

They all need to be correct and they

should all match. I would "assume" the subnet mask programmed into the MiFi
2200 is the correct one, and should thus be used on all the PCs.


I would 'think' that the Wife's XP will be the same.

Hope this helps!!

Wayne





--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
 
Old 01-02-2010, 03:01 AM
Steve Holmes
 
Default

-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160

I think I am in much better shape now. I managed to upgrade all
kernel packages and speakup but had to modify my grub.cfg so all boots
now with latest packages. What I have been using is kernel parameters
to give me the 128x160 console but then my system stopped booting with
the latest kernel upgrade. I will paste in my grub.cfg entries below
so you can see what I had to comment out. Basically i stopped the
insmod of the vbe module and removed the vga parms in the kernel
entry.

* Loading of modules
#insmod vbe

# Timeout for menu
set timeout=15

# Set default boot entry as Entry 0
set default=0
# (0) Arch Linux
menuentry "Arch Linux" {
set root=(hd1,1)
#linux /boot/vmlinuz26 root=/dev/sdb1 ro video=vesafb:mode=1024x768-32 vga=790
linux /boot/vmlinuz26 root=/dev/sdb1 ro
initrd /boot/kernel26.img
}

You can see, I just commented out the entries that gave me the nice
screen but at least I can boot now. Any ideas? Did something change
with the 2.6.32 kernel in the VESA frame buffer department?

On Thu, Dec 31, 2009 at 06:32:57PM +0100, Heiko Baums wrote:
> Am Thu, 31 Dec 2009 15:49:51 +0100
> schrieb Heiko Baums <lists@baums-on-web.de>:
>
> > Forgot to say that the kernel panic happened with
> > kernel26-fallback.img, too. And the fallback image hasn't
> > autodetection.
> >
> > I'm currently downgrading to [core] each package one by one and see if
> > and when the kernel panic reappears.
> >
> > Another possibility is that something was broken before, wrong file
> > permission of a file, a file was overwritten or whatever which hadn't
> > had an impact before and that this was fixed by reinstalling/updating
> > the appropriate package. Probably just reinstalling the appropriate
> > package from [core], whatever package it was, would have helped, too.
>
> I don't know what was going on here but now I downgraded my system to
> [core] again each package one by one and the system booted every time
> without a kernel panic. There was likely something broken but I can't
> imagine what, maybe some file permissions have been change or some
> files have been changed or deleted by whatever and these files were
> overwritten by the reinstalling/updating. Probably a reinstall of the
> involved package from [core] had been sufficient.
>
> Greetings,
> Heiko
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEAREDAAYFAks+xQMACgkQWSjv55S0LfHahACgl1lQ84dWis IKC6vK2utI8DLB
JrsAniODlmxdGzTwxEfwPqHM6l02fP+j
=hc87
-----END PGP SIGNATURE-----
 
Old 01-02-2010, 03:26 AM
Heiko Baums
 
Default

Am Fri, 1 Jan 2010 21:01:07 -0700
schrieb Steve Holmes <steve.holmes88@gmail.com>:

> I think I am in much better shape now. I managed to upgrade all
> kernel packages and speakup but had to modify my grub.cfg so all boots
> now with latest packages. What I have been using is kernel parameters
> to give me the 128x160 console but then my system stopped booting with
> the latest kernel upgrade. I will paste in my grub.cfg entries below
> so you can see what I had to comment out. Basically i stopped the
> insmod of the vbe module and removed the vga parms in the kernel
> entry.
>
> * Loading of modules
> #insmod vbe
>
> # Timeout for menu
> set timeout=15
>
> # Set default boot entry as Entry 0
> set default=0
> # (0) Arch Linux
> menuentry "Arch Linux" {
> set root=(hd1,1)
> #linux /boot/vmlinuz26 root=/dev/sdb1 ro
> video=vesafb:mode=1024x768-32 vga=790 linux /boot/vmlinuz26
> root=/dev/sdb1 ro initrd /boot/kernel26.img
> }
>
> You can see, I just commented out the entries that gave me the nice
> screen but at least I can boot now. Any ideas? Did something change
> with the 2.6.32 kernel in the VESA frame buffer department?

This has nothing to do with my kernel panics which were fixed by just
upgrading to [testing] and didn't came back when downgrading back to
[core].

I don't know what vbe is for but the video and vga parameters may
conflict each other because both set the framebuffer resolution but set
different framebuffer modes/devices. So you should either use the video
or the vga parameter. For me the vga parameter is sufficient.

As far as I know is vga for vesafb and video for vesafb-tng (if this
still exists) and other framebuffer devices like radeonfb etc.

And as far as I read is video with only the resolution necessary for
KMS if KMS doesn't set the correct screen resolution automatically.

Greetings,
Heiko
 
Old 01-02-2010, 04:14 AM
Steve Holmes
 
Default

-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160

On Sat, Jan 02, 2010 at 05:26:38AM +0100, Heiko Baums wrote:
> This has nothing to do with my kernel panics which were fixed by just
> upgrading to [testing] and didn't came back when downgrading back to
> [core].
>
> I don't know what vbe is for but the video and vga parameters may
> conflict each other because both set the framebuffer resolution but set
> different framebuffer modes/devices. So you should either use the video
> or the vga parameter. For me the vga parameter is sufficient.
>
> As far as I know is vga for vesafb and video for vesafb-tng (if this
> still exists) and other framebuffer devices like radeonfb etc.
>
> And as far as I read is video with only the resolution necessary for
> KMS if KMS doesn't set the correct screen resolution automatically.

Well, I tried to remove all the video mode stuff and just leave the
'vga=790' in the line and then it's back to the crash as noted
before. True enough, no panic, just a blank screen! Something has
obviously changed with the kernel upgrade from 2.6.31.6 to 2.6.32.2 as
far as frame buffer support is concerned. I got the suggested video
mode configuration stuff from a grub2 item on the arch wiki. At least
now I can experiment with different grub entries and keep a good
stable one available with the latest kernels. I'm just trying to get
my big screen back <sigh>. See how spoiled we get when something
breaks?

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEAREDAAYFAks+1jYACgkQWSjv55S0LfFr6ACfSY4kNZz5CL JlwRgHURdj8k6z
r/EAoISmrL2TXwIWuFqVHIbr6eU90nK1
=h1pJ
-----END PGP SIGNATURE-----
 
Old 01-02-2010, 10:59 AM
Stan Hoeppner
 
Default

Wayne <linuxtwo@gmail.com> put forth on 1/1/2010 5:31 PM:

> Hope this helps!!

Best I can tell all the subnet masks are correct.

I was just thinking... (smoke rises). dmesg shows a small amount of packet
traffic to/from the MiFi WLAN interface, basically the DHCP setup handshake
packets, and nothing more. Yet, you are unable to ping or telnet or www to that
interface on the MiFi, but you can ping your local WiFi interface.

What I'm thinking here is that your network stack is active, but something is
preventing your user space applications from accessing the network stack. If
you have SELinux enabled, disable it. Check to make sure you have no iptables
rules in place that might be causing problems. If you don't know what iptables
is, disable or clear out any "firewall" software front end you have installed,
such as those listed here:

http://wiki.debian.org/Firewalls

To do it manually, first, from a bash shell, do an "iptables -S" and reply here
with the output (this is merely informational for those following this thread).
Immediately afterward, without waiting for my response, execute "iptables -F"
to flush the current rules. You should now be working.

I should have thought of this earlier, because of this:

ping: sendmsg: Operation not permitted
ping: sendmsg: Operation not permitted
ping: sendmsg: Operation not permitted

I've never seen that error before. "Operation not permitted" is obviously a
policy error, not a network error.

Read this thread for more background. Same error as you. Disabling ShoreWall
fixed his problem instantly:

http://www.linuxquestions.org/questions/linux-networking-3/ping-sendmsg-operation-not-permitted-307848/

Note the networking guru helping the guy took him through almost identical steps
I've taken you through? lol. I should have been up on Google this whole time,
as well you should have Wayne. The answers are almost always indexed in
Google et al, if you know what to search for. Hope this solves it, finally.

--
Stan


--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
 
Old 01-02-2010, 12:56 PM
Dale Konsevitch
 
Default

Please remove my name from your mailing lists.
*
Thank you.
*--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 01-02-2010, 12:59 PM
Bhavani Shankar R
 
Default

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Sat, Jan 2, 2010 at 7:26 PM, Dale Konsevitch wrote:
> Please remove my name from your mailing lists.
>
> Thank you.

Please look at the footer of your mail

> --
> ubuntu-users mailing list
> ubuntu-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
>
>



- --
Bhavani Shankar.R
https://launchpad.net/~bhavi, a proud ubuntu community member.
What matters in life is application of mind!,
It makes great sense to have some common sense..!



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Use GnuPG with Firefox : http://getfiregpg.org (Version: 0.7.10)

iD8DBQFLP1E7L+KnYRaooWIRApLcAJsFb+YxxRg9Tnl9m4/s86fDsRI+YwCZAUSX
hYKKJI/i9ZniRFFuxEdhEIU=
=OY2V
-----END PGP SIGNATURE-----

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 01-02-2010, 01:15 PM
"TopBot ."
 
Default

lol

On Sat, Jan 2, 2010 at 6:59 PM, Bhavani Shankar R <bhavi@ubuntu.com> wrote:

-----BEGIN PGP SIGNED MESSAGE-----

Hash: SHA1



On Sat, Jan 2, 2010 at 7:26 PM, Dale Konsevitch *wrote:

> Please remove my name from your mailing lists.

>

> Thank you.



Please look at the footer of your mail



> --

> ubuntu-users mailing list

> ubuntu-users@lists.ubuntu.com

> Modify settings or unsubscribe at:

> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users

>

>







- --

Bhavani Shankar.R

https://launchpad.net/~bhavi, a proud ubuntu community *member.

What matters in life is application of mind!,

It makes great sense to have some common sense..!







-----BEGIN PGP SIGNATURE-----

Version: GnuPG v1.4.6 (GNU/Linux)

Comment: Use GnuPG with Firefox : http://getfiregpg.org (Version: 0.7.10)



iD8DBQFLP1E7L+KnYRaooWIRApLcAJsFb+YxxRg9Tnl9m4/s86fDsRI+YwCZAUSX

hYKKJI/i9ZniRFFuxEdhEIU=

=OY2V

-----END PGP SIGNATURE-----



--

ubuntu-users mailing list

ubuntu-users@lists.ubuntu.com

Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users



--
TopBot.

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 01-02-2010, 01:37 PM
Michael Sullivan
 
Default

I guess I should have checked before I sent that last post because
now /dev/sda is there. Now, how do I make it be there when I first boot
into Linux?

On Sat, 2010-01-02 at 08:35 -0600, Michael Sullivan wrote:
> On Fri, 2010-01-01 at 11:37 -0800, walt wrote:
> > On 01/01/2010 05:48 AM, Michael Sullivan wrote:
> > > Hello
> > >
> > > My wife's computer is pretty slow, so I've attached and old hard drive
> > > into a hard drive enclosure and hooked it into her USB port for
> > > additional swap space. It used to work. The swap space is supposed to
> > > be /dev/sda1. The problem is that for some reason when I rebooted this
> > > morning with a new kernel, /dev/sda does not exist anymore...
> >
> > Hm. So the only thing you changed was the new kernel? Might help to
> > know why you built the new kernel. What problem were you solving by
> > doing it?
> >
> OK here goes. I built the new kernel because with the old one /dev/sda
> didn't seem to exist when I know it should. And besides, there was a
> newer kernel marked as stable and aren't we always supposed to use the
> newest stable kernel for security reasons, unless there's something that
> we need done that the new kernel doesn't do?
>
> > I would try booting the machine without the USB swap disk and then
> > hotplug it when the machine is already running. What does dmesg say
> > then? Can be simpler to interpret when you know exactly which lines
> > were printed in response to the newly connected drive.
>
>
> I rebooted the machine with the drive unplugged and ran dmesg:
>
> catherine ~ # cat dmesg.txt
> Initializing cgroup subsys cpuset
> Linux version 2.6.31-gentoo-r6 (root@catherine) (gcc version 4.3.4
> (Gentoo 4.3.4 p1.0, pie-10.1.5) ) #1 SMP Thu Dec 31 19:13:07 CST 2009
> KERNEL supported cpus:
> Intel GenuineIntel
> AMD AuthenticAMD
> NSC Geode by NSC
> Cyrix CyrixInstead
> Centaur CentaurHauls
> Transmeta GenuineTMx86
> Transmeta TransmetaCPU
> UMC UMC UMC UMC
> BIOS-provided physical RAM map:
> BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
> BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
> BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> BIOS-e820: 0000000000100000 - 000000000dff0000 (usable)
> BIOS-e820: 000000000dff0000 - 000000000dff3000 (ACPI NVS)
> BIOS-e820: 000000000dff3000 - 000000000e000000 (ACPI data)
> BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
> BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
> BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
> DMI 2.2 present.
> Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
> e820 update range: 0000000000000000 - 0000000000010000 (usable) ==>
> (reserved)
> last_pfn = 0xdff0 max_arch_pfn = 0x100000
> MTRR default type: uncachable
> MTRR fixed ranges enabled:
> 00000-9FFFF write-back
> A0000-BFFFF uncachable
> C0000-C7FFF write-protect
> C8000-EFFFF uncachable
> F0000-FFFFF write-protect
> MTRR variable ranges enabled:
> 0 base 000000000 mask FF0000000 write-back
> 1 base 00E000000 mask FFE000000 uncachable
> 2 base 0D0000000 mask FF8000000 write-combining
> 3 disabled
> 4 disabled
> 5 disabled
> 6 disabled
> 7 disabled
> initial memory mapped : 0 - 00800000
> init_memory_mapping: 0000000000000000-000000000dff0000
> 0000000000 - 0000400000 page 4k
> 0000400000 - 000dc00000 page 2M
> 000dc00000 - 000dff0000 page 4k
> kernel direct mapping tables up to dff0000 @ 10000-15000
> RAMDISK: 0dcc5000 - 0dfdf8aa
> ACPI: RSDP 000f7170 00014 (v00 AWARD )
> ACPI: RSDT 0dff3000 0002C (v01 AWARD AWRDACPI 42302E31 AWRD 00000000)
> ACPI: FACP 0dff3040 00074 (v01 AWARD AWRDACPI 42302E31 AWRD 00000000)
> ACPI: DSDT 0dff30c0 038FA (v01 AWARD AWRDACPI 00001000 MSFT 0100000E)
> ACPI: FACS 0dff0000 00040
> ACPI: APIC 0dff69c0 0005A (v01 AWARD AWRDACPI 42302E31 AWRD 00000000)
> ACPI: Local APIC address 0xfee00000
> 0MB HIGHMEM available.
> 223MB LOWMEM available.
> mapped low ram: 0 - 0dff0000
> low ram: 0 - 0dff0000
> node 0 low ram: 00000000 - 0dff0000
> node 0 bootmap 00011000 - 00012c00
> (9 early reservations) ==> bootmem [0000000000 - 000dff0000]
> #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 -
> 0000001000]
> #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 -
> 0000002000]
> #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 -
> 0000007000]
> #3 [0000100000 - 0000637f00] TEXT DATA BSS ==> [0000100000 -
> 0000637f00]
> #4 [000dcc5000 - 000dfdf8aa] RAMDISK ==> [000dcc5000 -
> 000dfdf8aa]
> #5 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 -
> 0000100000]
> #6 [0000638000 - 000063a06a] BRK ==> [0000638000 -
> 000063a06a]
> #7 [0000010000 - 0000011000] PGTABLE ==> [0000010000 -
> 0000011000]
> #8 [0000011000 - 0000013000] BOOTMAP ==> [0000011000 -
> 0000013000]
> found SMP MP-table at [c00f57a0] f57a0
> Zone PFN ranges:
> DMA 0x00000010 -> 0x00001000
> Normal 0x00001000 -> 0x0000dff0
> HighMem 0x0000dff0 -> 0x0000dff0
> Movable zone start PFN for each node
> early_node_map[2] active PFN ranges
> 0: 0x00000010 -> 0x0000009f
> 0: 0x00000100 -> 0x0000dff0
> On node 0 totalpages: 57215
> free_area_init_node: node 0, pgdat c0561da0, node_mem_map c1000200
> DMA zone: 32 pages used for memmap
> DMA zone: 0 pages reserved
> DMA zone: 3951 pages, LIFO batch:0
> Normal zone: 416 pages used for memmap
> Normal zone: 52816 pages, LIFO batch:15
> Using APIC driver default
> ACPI: PM-Timer IO Port: 0x1008
> ACPI: Local APIC address 0xfee00000
> ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
> ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
> IOAPIC[0]: apic_id 2, version 20, address 0xfec00000, GSI 0-23
> ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 dfl dfl)
> ACPI: IRQ0 used by override.
> ACPI: IRQ2 used by override.
> ACPI: IRQ9 used by override.
> Enabling APIC mode: Flat. Using 1 I/O APICs
> Using ACPI (MADT) for SMP configuration information
> SMP: Allowing 1 CPUs, 0 hotplug CPUs
> nr_irqs_gsi: 24
> PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
> PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
> PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
> Allocating PCI resources starting at e000000 (gap: e000000:f0c00000)
> NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
> PERCPU: Embedded 15 pages at c11c2000, static data 38684 bytes
> Built 1 zonelists in Zone order, mobility grouping on. Total pages:
> 56767
> Kernel command line: real_root=/dev/hdc6 udev
> PID hash table entries: 1024 (order: 10, 4096 bytes)
> Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
> Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
> Enabling fast FPU save and restore... done.
> Enabling unmasked SIMD FPU exception support... done.
> Initializing CPU#0
> Initializing HighMem for node 0 (00000000:00000000)
> Memory: 218040k/229312k available (3005k kernel code, 10620k reserved,
> 1508k data, 428k init, 0k highmem)
> virtual kernel memory layout:
> fixmap : 0xfff1e000 - 0xfffff000 ( 900 kB)
> pkmap : 0xff800000 - 0xffc00000 (4096 kB)
> vmalloc : 0xce7f0000 - 0xff7fe000 ( 784 MB)
> lowmem : 0xc0000000 - 0xcdff0000 ( 223 MB)
> .init : 0xc0569000 - 0xc05d4000 ( 428 kB)
> .data : 0xc03ef6c0 - 0xc05688a8 (1508 kB)
> .text : 0xc0100000 - 0xc03ef6c0 (3005 kB)
> Checking if this processor honours the WP bit even in supervisor
> mode...Ok.
> Hierarchical RCU implementation.
> NR_IRQS:512
> CPU 0 irqstacks, hard=c11c2000 soft=c11c3000
> Fast TSC calibration using PIT
> Detected 1662.338 MHz processor.
> Console: colour VGA+ 80x25
> console [tty0] enabled
> Calibrating delay loop (skipped), value calculated using timer
> frequency.. 3324.67 BogoMIPS (lpj=16623380)
> Security Framework initialized
> Mount-cache hash table entries: 512
> Initializing cgroup subsys ns
> Initializing cgroup subsys cpuacct
> CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
> CPU: L2 Cache: 256K (64 bytes/line)
> mce: CPU supports 4 MCE banks
> Performance Counters: AMD PMU driver.
> ... version: 0
> ... bit width: 48
> ... generic counters: 4
> ... value mask: 0000ffffffffffff
> ... max period: 00007fffffffffff
> ... fixed-purpose counters: 0
> ... counter mask: 000000000000000f
> Checking 'hlt' instruction... OK.
> SMP alternatives: switching to UP code
> Freeing SMP alternatives: 25k freed
> ACPI: Core revision 20090521
> ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> CPU0: AMD Sempron(tm) 2400+ stepping 01
> Brought up 1 CPUs
> Total of 1 processors activated (3324.67 BogoMIPS).
> CPU0 attaching NULL sched-domain.
> Booting paravirtualized kernel on bare hardware
> xor: automatically using best checksumming function: pIII_sse
> pIII_sse : 4598.000 MB/sec
> xor: using function: pIII_sse (4598.000 MB/sec)
> NET: Registered protocol family 16
> ACPI: bus type pci registered
> dca service started, version 1.8
> PCI: PCI BIOS revision 2.10 entry at 0xfb4e0, last bus=1
> bio: create slab <bio-0> at 0
> ACPI: EC: Look up EC in DSDT
> ACPI: Interpreter enabled
> ACPI: (supports S0 S1 S4 S5)
> ACPI: Using IOAPIC for interrupt routing
> ACPI: No dock devices found.
> ACPI: PCI Root Bridge [PCI0] (0000:00)
> pci 0000:00:00.0: reg 10 32bit mmio: [0xd0000000-0xd7ffffff]
> pci 0000:00:02.5: reg 10 io port: [0x1f0-0x1f7]
> pci 0000:00:02.5: reg 14 io port: [0x3f4-0x3f7]
> pci 0000:00:02.5: reg 18 io port: [0x170-0x177]
> pci 0000:00:02.5: reg 1c io port: [0x374-0x377]
> pci 0000:00:02.5: reg 20 io port: [0x4000-0x400f]
> pci 0000:00:02.5: PME# supported from D3cold
> pci 0000:00:02.5: PME# disabled
> pci 0000:00:02.7: reg 10 io port: [0xe000-0xe0ff]
> pci 0000:00:02.7: reg 14 io port: [0xe400-0xe47f]
> pci 0000:00:02.7: supports D1 D2
> pci 0000:00:02.7: PME# supported from D3hot D3cold
> pci 0000:00:02.7: PME# disabled
> pci 0000:00:03.0: reg 10 32bit mmio: [0xe1104000-0xe1104fff]
> pci 0000:00:03.1: reg 10 32bit mmio: [0xe1100000-0xe1100fff]
> pci 0000:00:03.2: reg 10 32bit mmio: [0xe1101000-0xe1101fff]
> pci 0000:00:03.3: reg 10 32bit mmio: [0xe1102000-0xe1102fff]
> pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
> pci 0000:00:03.3: PME# disabled
> pci 0000:00:04.0: reg 10 io port: [0xe800-0xe8ff]
> pci 0000:00:04.0: reg 14 32bit mmio: [0xe1103000-0xe1103fff]
> pci 0000:00:04.0: reg 30 32bit mmio: [0x000000-0x01ffff]
> pci 0000:00:04.0: supports D1 D2
> pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
> pci 0000:00:04.0: PME# disabled
> pci 0000:01:00.0: reg 10 32bit mmio: [0xd8000000-0xdfffffff]
> pci 0000:01:00.0: reg 14 32bit mmio: [0xe1000000-0xe101ffff]
> pci 0000:01:00.0: reg 18 io port: [0xd000-0xd07f]
> pci 0000:01:00.0: supports D1 D2
> pci 0000:00:01.0: bridge io port: [0xd000-0xdfff]
> pci 0000:00:01.0: bridge 32bit mmio: [0xe1000000-0xe10fffff]
> pci 0000:00:01.0: bridge 32bit mmio pref: [0xd8000000-0xdfffffff]
> pci_bus 0000:00: on NUMA node 0
> ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
> ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0,
> disabled.
> ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
> ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
> ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
> SCSI subsystem initialized
> libata version 3.00 loaded.
> raid6: int32x1 433 MB/s
> raid6: int32x2 652 MB/s
> raid6: int32x4 573 MB/s
> raid6: int32x8 458 MB/s
> raid6: mmxx1 1356 MB/s
> raid6: mmxx2 2433 MB/s
> raid6: sse1x1 1276 MB/s
> raid6: sse1x2 2020 MB/s
> raid6: using algorithm sse1x2 (2020 MB/s)
> PCI: Using ACPI for IRQ routing
> pnp: PnP ACPI init
> ACPI: bus type pnp registered
> pnp: PnP ACPI: found 12 devices
> ACPI: ACPI bus type pnp unregistered
> system 00:00: iomem range 0xc8000-0xcbfff has been reserved
> system 00:00: iomem range 0xf0000-0xf7fff could not be reserved
> system 00:00: iomem range 0xf8000-0xfbfff could not be reserved
> system 00:00: iomem range 0xfc000-0xfffff could not be reserved
> system 00:00: iomem range 0xdff0000-0xdffffff could not be reserved
> system 00:00: iomem range 0xffff0000-0xffffffff has been reserved
> system 00:00: iomem range 0x0-0x9ffff could not be reserved
> system 00:00: iomem range 0x100000-0xdfeffff could not be reserved
> system 00:00: iomem range 0xffee0000-0xffefffff has been reserved
> system 00:00: iomem range 0xfffe0000-0xfffeffff has been reserved
> system 00:00: iomem range 0xfec00000-0xfecfffff could not be reserved
> system 00:00: iomem range 0xfee00000-0xfeefffff could not be reserved
> system 00:02: ioport range 0x4d0-0x4d1 has been reserved
> system 00:02: ioport range 0x800-0x805 has been reserved
> system 00:02: ioport range 0x290-0x297 has been reserved
> pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
> pci 0000:00:01.0: IO window: 0xd000-0xdfff
> pci 0000:00:01.0: MEM window: 0xe1000000-0xe10fffff
> pci 0000:00:01.0: PREFETCH window: 0xd8000000-0xdfffffff
> pci_bus 0000:00: resource 0 io: [0x00-0xffff]
> pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
> pci_bus 0000:01: resource 0 io: [0xd000-0xdfff]
> pci_bus 0000:01: resource 1 mem: [0xe1000000-0xe10fffff]
> pci_bus 0000:01: resource 2 pref mem [0xd8000000-0xdfffffff]
> NET: Registered protocol family 2
> IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
> TCP established hash table entries: 8192 (order: 4, 65536 bytes)
> TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
> TCP: Hash tables configured (established 8192 bind 8192)
> TCP reno registered
> NET: Registered protocol family 1
> Trying to unpack rootfs image as initramfs...
> Freeing initrd memory: 3178k freed
> apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
> apm: overridden by ACPI.
> audit: initializing netlink socket (disabled)
> type=2000 audit(1262420890.810:1): initialized
> HugeTLB registered 4 MB page size, pre-allocated 0 pages
> VFS: Disk quotas dquot_6.5.2
> Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
> squashfs: version 4.0 (2009/01/31) Phillip Lougher
> msgmni has been set to 432
> alg: No test for stdrng (krng)
> async_tx: api initialized (async)
> Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
> io scheduler noop registered
> io scheduler anticipatory registered (default)
> io scheduler deadline registered
> io scheduler cfq registered
> pci 0000:01:00.0: Boot video device
> isapnp: Scanning for PnP cards...
> Switched to high resolution mode on CPU 0
> isapnp: No Plug & Play device found
> Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
> 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
> brd: module loaded
> loop: module loaded
> input: Macintosh mouse button emulation as /devices/virtual/input/input0
> Uniform Multi-Platform E-IDE driver
> pci 0000:00:02.5: PCI INT A -> GSI 16 (level, low) -> IRQ 16
> sis5513 0000:00:02.5: SiS 962/963 MuTIOL IDE UDMA133 controller
> sis5513 0000:00:02.5: IDE controller (0x1039:0x5513 rev 0x01)
> sis5513 0000:00:02.5: not 100% native mode: will probe irqs later
> ide0: BM-DMA at 0x4000-0x4007
> ide1: BM-DMA at 0x4008-0x400f
> Probing IDE interface ide0...
> hda: LITE-ON COMBO SOHC-5236V, ATAPI CD/DVD-ROM drive
> hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
> hda: UDMA/33 mode selected
> Probing IDE interface ide1...
> hdc: WDC WD800BB-00JHC0, ATA DISK drive
> hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
> hdc: host side 80-wire cable detection failed, limiting max speed to
> UDMA33
> hdc: UDMA/33 mode selected
> ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
> ide1 at 0x170-0x177,0x376 on irq 15
> ide_generic: please use "probe_mask=0x3f" module parameter for probing
> all legacy ISA IDE ports
> ide-gd driver 1.18
> hdc: max request size: 128KiB
> hdc: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=65535/16/63
> hdc: cache flushes supported
> hdc: hdc1 hdc3 hdc4 < hdc5 hdc6 >
> ide-cd driver 5.00
> ide-cd: hda: ATAPI 52X DVD-ROM CD-R/RW drive, 1536kB Cache
> Uniform CD-ROM driver Revision: 3.20
> Loading iSCSI transport class v2.0-870.
> iscsi: registered transport (tcp)
> PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
> serio: i8042 KBD port at 0x60,0x64 irq 1
> serio: i8042 AUX port at 0x60,0x64 irq 12
> mice: PS/2 mouse device common for all mice
> md: raid0 personality registered for level 0
> md: raid1 personality registered for level 1
> md: raid6 personality registered for level 6
> md: raid5 personality registered for level 5
> md: raid4 personality registered for level 4
> cpuidle: using governor ladder
> TCP cubic registered
> NET: Registered protocol family 17
> Using IPI No-Shortcut mode
> registered taskstats version 1
> Freeing unused kernel memory: 428k freed
> input: AT Translated Set 2 keyboard
> as /devices/platform/i8042/serio0/input/input1
> input: ImPS/2 Generic Wheel Mouse
> as /devices/platform/i8042/serio1/input/input2
> NCR53c406a: no available ports found
> scsi: <fdomain> Detection failed (no card)
> GDT-HA: Storage RAID Controller Driver. Version: 3.05
> qlogicfas: no cards were found, please specify I/O address and IRQ using
> iobase= and irq= optionsFailed initialization of WD-7000 SCSI card!
> NCR53c406a: no available ports found
> imm: Version 2.05 (for Linux 2.4.0)
> sym53c416.c: Version 1.0.0-ac
> Fusion MPT base driver 3.04.10
> Copyright (c) 1999-2008 LSI Corporation
> Fusion MPT SPI Host driver 3.04.10
> Fusion MPT FC Host driver 3.04.10
> Fusion MPT SAS Host driver 3.04.10
> 3ware Storage Controller device driver for Linux v1.26.02.002.
> 3ware 9000 Storage Controller device driver for Linux v2.26.02.012.
> Compaq SMART2 Driver (v 2.6.0)
> HP CISS Driver (v 3.6.20)
> Adaptec aacraid driver 1.1-5[2461]-ms
> megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
> megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
> megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008
> QLogic Fibre Channel HBA Driver: 8.03.01-k4
> Emulex LightPulse Fibre Channel SCSI driver 8.3.3
> Copyright(c) 2004-2009 Emulex. All rights reserved.
> aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
> usbcore: registered new interface driver usbfs
> usbcore: registered new interface driver hub
> usbcore: registered new device driver usb
> ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
> ehci_hcd 0000:00:03.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
> ehci_hcd 0000:00:03.3: EHCI Host Controller
> ehci_hcd 0000:00:03.3: new USB bus registered, assigned bus number 1
> ehci_hcd 0000:00:03.3: cache line size of 64 is not supported
> ehci_hcd 0000:00:03.3: irq 23, io mem 0xe1102000
> ehci_hcd 0000:00:03.3: USB 2.0 started, EHCI 1.00
> usb usb1: configuration #1 chosen from 1 choice
> hub 1-0:1.0: USB hub found
> hub 1-0:1.0: 8 ports detected
> Initializing USB Mass Storage driver...
> usbcore: registered new interface driver usb-storage
> USB Mass Storage support registered.
> uhci_hcd: USB Universal Host Controller Interface driver
> ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
> ohci_hcd 0000:00:03.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
> ohci_hcd 0000:00:03.0: OHCI Host Controller
> ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
> ohci_hcd 0000:00:03.0: irq 20, io mem 0xe1104000
> usb usb2: configuration #1 chosen from 1 choice
> hub 2-0:1.0: USB hub found
> hub 2-0:1.0: 3 ports detected
> ohci_hcd 0000:00:03.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
> ohci_hcd 0000:00:03.1: OHCI Host Controller
> ohci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3
> ohci_hcd 0000:00:03.1: irq 21, io mem 0xe1100000
> usb usb3: configuration #1 chosen from 1 choice
> hub 3-0:1.0: USB hub found
> hub 3-0:1.0: 3 ports detected
> ohci_hcd 0000:00:03.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
> ohci_hcd 0000:00:03.2: OHCI Host Controller
> ohci_hcd 0000:00:03.2: new USB bus registered, assigned bus number 4
> ohci_hcd 0000:00:03.2: irq 22, io mem 0xe1101000
> usb usb4: configuration #1 chosen from 1 choice
> hub 4-0:1.0: USB hub found
> hub 4-0:1.0: 2 ports detected
> usbcore: registered new interface driver hiddev
> usbcore: registered new interface driver usbhid
> usbhid: v2.6:USB HID core driver
> sl811: driver sl811-hcd, 19 May 2005
> device-mapper: uevent: version 1.0.3
> device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised:
> dm-devel@redhat.com
> md: raid10 personality registered for level 10
> JFS: nTxBlock = 1733, nTxLock = 13867
> RPC: Registered udp transport module.
> RPC: Registered tcp transport module.
> SGI XFS with ACLs, security attributes, realtime, large block/inode
> numbers, no debug enabled
> SGI XFS Quota Management subsystem
> fuse init (API version 7.12)
> Intel(R) PRO/1000 Network Driver - version 7.3.21-k3-NAPI
> Copyright (c) 1999-2006 Intel Corporation.
> kjournald starting. Commit interval 5 seconds
> EXT3-fs: mounted filesystem with writeback data mode.
> udev: starting version 146
> IT8705 SuperIO detected.
> parport_pc 00:09: reported by Plug and Play ACPI
> parport0: PC-style at 0x378 (0x778), irq 7, dma 3
> [PCSPP,TRISTATE,COMPAT,ECP,DMA]
> FDC 0 is a post-1991 82077
> input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
> ACPI: Power Button [PWRF]
> input: Power Button
> as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
> ACPI: Power Button [PWRB]
> input: Sleep Button
> as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
> ACPI: Sleep Button [FUTS]
> Linux agpgart interface v0.103
> thermal LNXTHERM:01: registered as thermal_zone0
> ACPI: Thermal Zone [THRM] (40 C)
> fan PNP0C0B:00: registered as cooling_device0
> ACPI: Fan [FAN] (on)
> agpgart-sis 0000:00:00.0: SiS chipset [1039/0741]
> agpgart-sis 0000:00:00.0: AGP aperture is 128M @ 0xd0000000
> processor LNXCPU:00: registered as cooling_device1
> pci_hotplug: PCI Hot Plug PCI Core version: 0.5
> input: PC Speaker as /devices/platform/pcspkr/input/input6
> shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> ppdev: user-space parallel port driver
> Intel ICH 0000:00:02.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
> sis900.c: v1.08.10 Apr. 2 2006
> rtc_cmos 00:04: RTC can wake from S4
> rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
> rtc0: alarms up to one year, 242 bytes nvram
> intel8x0_measure_ac97_clock: measured 59902 usecs (2881 samples)
> intel8x0: clocking to 48000
> sis900 0000:00:04.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
> 0000:00:04.0: Realtek RTL8201 PHY transceiver found at address 1.
> 0000:00:04.0: Using transceiver found at address 1 as default
> eth0: SiS 900 PCI Fast Ethernet at 0xe800, IRQ 19, 00:11:5b:84:60:3b
> EXT3 FS on hdc6, internal journal
> lp0: using parport0 (interrupt-driven).
> Adding 248968k swap on /dev/hdc5. Priority:-1 extents:1 across:248968k
> eth0: Media Link On 100mbps full-duplex
> warning: `named' uses 32-bit capabilities (legacy support in use)
> NET: Registered protocol family 10
> lo: Disabled Privacy Extensions
> ip_tables: (C) 2000-2006 Netfilter Core Team
> nf_conntrack version 0.5.0 (3583 buckets, 14332 max)
> CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
> nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option
> or
> sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
> Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
> svc: failed to register lockdv1 RPC service (errno 97).
> NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery
> directory
> NFSD: starting 90-second grace period
> eth0: no IPv6 routers present
> catherine ~ #
>
> and then plugged in:
>
> catherine ~ # cat dmesg-new.txt
> Initializing cgroup subsys cpuset
> Linux version 2.6.31-gentoo-r6 (root@catherine) (gcc version 4.3.4
> (Gentoo 4.3.4 p1.0, pie-10.1.5) ) #1 SMP Thu Dec 31 19:13:07 CST 2009
> KERNEL supported cpus:
> Intel GenuineIntel
> AMD AuthenticAMD
> NSC Geode by NSC
> Cyrix CyrixInstead
> Centaur CentaurHauls
> Transmeta GenuineTMx86
> Transmeta TransmetaCPU
> UMC UMC UMC UMC
> BIOS-provided physical RAM map:
> BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
> BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
> BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> BIOS-e820: 0000000000100000 - 000000000dff0000 (usable)
> BIOS-e820: 000000000dff0000 - 000000000dff3000 (ACPI NVS)
> BIOS-e820: 000000000dff3000 - 000000000e000000 (ACPI data)
> BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
> BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
> BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
> DMI 2.2 present.
> Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
> e820 update range: 0000000000000000 - 0000000000010000 (usable) ==>
> (reserved)
> last_pfn = 0xdff0 max_arch_pfn = 0x100000
> MTRR default type: uncachable
> MTRR fixed ranges enabled:
> 00000-9FFFF write-back
> A0000-BFFFF uncachable
> C0000-C7FFF write-protect
> C8000-EFFFF uncachable
> F0000-FFFFF write-protect
> MTRR variable ranges enabled:
> 0 base 000000000 mask FF0000000 write-back
> 1 base 00E000000 mask FFE000000 uncachable
> 2 base 0D0000000 mask FF8000000 write-combining
> 3 disabled
> 4 disabled
> 5 disabled
> 6 disabled
> 7 disabled
> initial memory mapped : 0 - 00800000
> init_memory_mapping: 0000000000000000-000000000dff0000
> 0000000000 - 0000400000 page 4k
> 0000400000 - 000dc00000 page 2M
> 000dc00000 - 000dff0000 page 4k
> kernel direct mapping tables up to dff0000 @ 10000-15000
> RAMDISK: 0dcc5000 - 0dfdf8aa
> ACPI: RSDP 000f7170 00014 (v00 AWARD )
> ACPI: RSDT 0dff3000 0002C (v01 AWARD AWRDACPI 42302E31 AWRD 00000000)
> ACPI: FACP 0dff3040 00074 (v01 AWARD AWRDACPI 42302E31 AWRD 00000000)
> ACPI: DSDT 0dff30c0 038FA (v01 AWARD AWRDACPI 00001000 MSFT 0100000E)
> ACPI: FACS 0dff0000 00040
> ACPI: APIC 0dff69c0 0005A (v01 AWARD AWRDACPI 42302E31 AWRD 00000000)
> ACPI: Local APIC address 0xfee00000
> 0MB HIGHMEM available.
> 223MB LOWMEM available.
> mapped low ram: 0 - 0dff0000
> low ram: 0 - 0dff0000
> node 0 low ram: 00000000 - 0dff0000
> node 0 bootmap 00011000 - 00012c00
> (9 early reservations) ==> bootmem [0000000000 - 000dff0000]
> #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 -
> 0000001000]
> #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 -
> 0000002000]
> #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 -
> 0000007000]
> #3 [0000100000 - 0000637f00] TEXT DATA BSS ==> [0000100000 -
> 0000637f00]
> #4 [000dcc5000 - 000dfdf8aa] RAMDISK ==> [000dcc5000 -
> 000dfdf8aa]
> #5 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 -
> 0000100000]
> #6 [0000638000 - 000063a06a] BRK ==> [0000638000 -
> 000063a06a]
> #7 [0000010000 - 0000011000] PGTABLE ==> [0000010000 -
> 0000011000]
> #8 [0000011000 - 0000013000] BOOTMAP ==> [0000011000 -
> 0000013000]
> found SMP MP-table at [c00f57a0] f57a0
> Zone PFN ranges:
> DMA 0x00000010 -> 0x00001000
> Normal 0x00001000 -> 0x0000dff0
> HighMem 0x0000dff0 -> 0x0000dff0
> Movable zone start PFN for each node
> early_node_map[2] active PFN ranges
> 0: 0x00000010 -> 0x0000009f
> 0: 0x00000100 -> 0x0000dff0
> On node 0 totalpages: 57215
> free_area_init_node: node 0, pgdat c0561da0, node_mem_map c1000200
> DMA zone: 32 pages used for memmap
> DMA zone: 0 pages reserved
> DMA zone: 3951 pages, LIFO batch:0
> Normal zone: 416 pages used for memmap
> Normal zone: 52816 pages, LIFO batch:15
> Using APIC driver default
> ACPI: PM-Timer IO Port: 0x1008
> ACPI: Local APIC address 0xfee00000
> ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
> ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
> IOAPIC[0]: apic_id 2, version 20, address 0xfec00000, GSI 0-23
> ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 dfl dfl)
> ACPI: IRQ0 used by override.
> ACPI: IRQ2 used by override.
> ACPI: IRQ9 used by override.
> Enabling APIC mode: Flat. Using 1 I/O APICs
> Using ACPI (MADT) for SMP configuration information
> SMP: Allowing 1 CPUs, 0 hotplug CPUs
> nr_irqs_gsi: 24
> PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
> PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
> PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
> Allocating PCI resources starting at e000000 (gap: e000000:f0c00000)
> NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
> PERCPU: Embedded 15 pages at c11c2000, static data 38684 bytes
> Built 1 zonelists in Zone order, mobility grouping on. Total pages:
> 56767
> Kernel command line: real_root=/dev/hdc6 udev
> PID hash table entries: 1024 (order: 10, 4096 bytes)
> Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
> Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
> Enabling fast FPU save and restore... done.
> Enabling unmasked SIMD FPU exception support... done.
> Initializing CPU#0
> Initializing HighMem for node 0 (00000000:00000000)
> Memory: 218040k/229312k available (3005k kernel code, 10620k reserved,
> 1508k data, 428k init, 0k highmem)
> virtual kernel memory layout:
> fixmap : 0xfff1e000 - 0xfffff000 ( 900 kB)
> pkmap : 0xff800000 - 0xffc00000 (4096 kB)
> vmalloc : 0xce7f0000 - 0xff7fe000 ( 784 MB)
> lowmem : 0xc0000000 - 0xcdff0000 ( 223 MB)
> .init : 0xc0569000 - 0xc05d4000 ( 428 kB)
> .data : 0xc03ef6c0 - 0xc05688a8 (1508 kB)
> .text : 0xc0100000 - 0xc03ef6c0 (3005 kB)
> Checking if this processor honours the WP bit even in supervisor
> mode...Ok.
> Hierarchical RCU implementation.
> NR_IRQS:512
> CPU 0 irqstacks, hard=c11c2000 soft=c11c3000
> Fast TSC calibration using PIT
> Detected 1662.338 MHz processor.
> Console: colour VGA+ 80x25
> console [tty0] enabled
> Calibrating delay loop (skipped), value calculated using timer
> frequency.. 3324.67 BogoMIPS (lpj=16623380)
> Security Framework initialized
> Mount-cache hash table entries: 512
> Initializing cgroup subsys ns
> Initializing cgroup subsys cpuacct
> CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
> CPU: L2 Cache: 256K (64 bytes/line)
> mce: CPU supports 4 MCE banks
> Performance Counters: AMD PMU driver.
> ... version: 0
> ... bit width: 48
> ... generic counters: 4
> ... value mask: 0000ffffffffffff
> ... max period: 00007fffffffffff
> ... fixed-purpose counters: 0
> ... counter mask: 000000000000000f
> Checking 'hlt' instruction... OK.
> SMP alternatives: switching to UP code
> Freeing SMP alternatives: 25k freed
> ACPI: Core revision 20090521
> ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> CPU0: AMD Sempron(tm) 2400+ stepping 01
> Brought up 1 CPUs
> Total of 1 processors activated (3324.67 BogoMIPS).
> CPU0 attaching NULL sched-domain.
> Booting paravirtualized kernel on bare hardware
> xor: automatically using best checksumming function: pIII_sse
> pIII_sse : 4598.000 MB/sec
> xor: using function: pIII_sse (4598.000 MB/sec)
> NET: Registered protocol family 16
> ACPI: bus type pci registered
> dca service started, version 1.8
> PCI: PCI BIOS revision 2.10 entry at 0xfb4e0, last bus=1
> bio: create slab <bio-0> at 0
> ACPI: EC: Look up EC in DSDT
> ACPI: Interpreter enabled
> ACPI: (supports S0 S1 S4 S5)
> ACPI: Using IOAPIC for interrupt routing
> ACPI: No dock devices found.
> ACPI: PCI Root Bridge [PCI0] (0000:00)
> pci 0000:00:00.0: reg 10 32bit mmio: [0xd0000000-0xd7ffffff]
> pci 0000:00:02.5: reg 10 io port: [0x1f0-0x1f7]
> pci 0000:00:02.5: reg 14 io port: [0x3f4-0x3f7]
> pci 0000:00:02.5: reg 18 io port: [0x170-0x177]
> pci 0000:00:02.5: reg 1c io port: [0x374-0x377]
> pci 0000:00:02.5: reg 20 io port: [0x4000-0x400f]
> pci 0000:00:02.5: PME# supported from D3cold
> pci 0000:00:02.5: PME# disabled
> pci 0000:00:02.7: reg 10 io port: [0xe000-0xe0ff]
> pci 0000:00:02.7: reg 14 io port: [0xe400-0xe47f]
> pci 0000:00:02.7: supports D1 D2
> pci 0000:00:02.7: PME# supported from D3hot D3cold
> pci 0000:00:02.7: PME# disabled
> pci 0000:00:03.0: reg 10 32bit mmio: [0xe1104000-0xe1104fff]
> pci 0000:00:03.1: reg 10 32bit mmio: [0xe1100000-0xe1100fff]
> pci 0000:00:03.2: reg 10 32bit mmio: [0xe1101000-0xe1101fff]
> pci 0000:00:03.3: reg 10 32bit mmio: [0xe1102000-0xe1102fff]
> pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
> pci 0000:00:03.3: PME# disabled
> pci 0000:00:04.0: reg 10 io port: [0xe800-0xe8ff]
> pci 0000:00:04.0: reg 14 32bit mmio: [0xe1103000-0xe1103fff]
> pci 0000:00:04.0: reg 30 32bit mmio: [0x000000-0x01ffff]
> pci 0000:00:04.0: supports D1 D2
> pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
> pci 0000:00:04.0: PME# disabled
> pci 0000:01:00.0: reg 10 32bit mmio: [0xd8000000-0xdfffffff]
> pci 0000:01:00.0: reg 14 32bit mmio: [0xe1000000-0xe101ffff]
> pci 0000:01:00.0: reg 18 io port: [0xd000-0xd07f]
> pci 0000:01:00.0: supports D1 D2
> pci 0000:00:01.0: bridge io port: [0xd000-0xdfff]
> pci 0000:00:01.0: bridge 32bit mmio: [0xe1000000-0xe10fffff]
> pci 0000:00:01.0: bridge 32bit mmio pref: [0xd8000000-0xdfffffff]
> pci_bus 0000:00: on NUMA node 0
> ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
> ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0,
> disabled.
> ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
> ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
> ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
> ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
> SCSI subsystem initialized
> libata version 3.00 loaded.
> raid6: int32x1 433 MB/s
> raid6: int32x2 652 MB/s
> raid6: int32x4 573 MB/s
> raid6: int32x8 458 MB/s
> raid6: mmxx1 1356 MB/s
> raid6: mmxx2 2433 MB/s
> raid6: sse1x1 1276 MB/s
> raid6: sse1x2 2020 MB/s
> raid6: using algorithm sse1x2 (2020 MB/s)
> PCI: Using ACPI for IRQ routing
> pnp: PnP ACPI init
> ACPI: bus type pnp registered
> pnp: PnP ACPI: found 12 devices
> ACPI: ACPI bus type pnp unregistered
> system 00:00: iomem range 0xc8000-0xcbfff has been reserved
> system 00:00: iomem range 0xf0000-0xf7fff could not be reserved
> system 00:00: iomem range 0xf8000-0xfbfff could not be reserved
> system 00:00: iomem range 0xfc000-0xfffff could not be reserved
> system 00:00: iomem range 0xdff0000-0xdffffff could not be reserved
> system 00:00: iomem range 0xffff0000-0xffffffff has been reserved
> system 00:00: iomem range 0x0-0x9ffff could not be reserved
> system 00:00: iomem range 0x100000-0xdfeffff could not be reserved
> system 00:00: iomem range 0xffee0000-0xffefffff has been reserved
> system 00:00: iomem range 0xfffe0000-0xfffeffff has been reserved
> system 00:00: iomem range 0xfec00000-0xfecfffff could not be reserved
> system 00:00: iomem range 0xfee00000-0xfeefffff could not be reserved
> system 00:02: ioport range 0x4d0-0x4d1 has been reserved
> system 00:02: ioport range 0x800-0x805 has been reserved
> system 00:02: ioport range 0x290-0x297 has been reserved
> pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
> pci 0000:00:01.0: IO window: 0xd000-0xdfff
> pci 0000:00:01.0: MEM window: 0xe1000000-0xe10fffff
> pci 0000:00:01.0: PREFETCH window: 0xd8000000-0xdfffffff
> pci_bus 0000:00: resource 0 io: [0x00-0xffff]
> pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
> pci_bus 0000:01: resource 0 io: [0xd000-0xdfff]
> pci_bus 0000:01: resource 1 mem: [0xe1000000-0xe10fffff]
> pci_bus 0000:01: resource 2 pref mem [0xd8000000-0xdfffffff]
> NET: Registered protocol family 2
> IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
> TCP established hash table entries: 8192 (order: 4, 65536 bytes)
> TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
> TCP: Hash tables configured (established 8192 bind 8192)
> TCP reno registered
> NET: Registered protocol family 1
> Trying to unpack rootfs image as initramfs...
> Freeing initrd memory: 3178k freed
> apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
> apm: overridden by ACPI.
> audit: initializing netlink socket (disabled)
> type=2000 audit(1262420890.810:1): initialized
> HugeTLB registered 4 MB page size, pre-allocated 0 pages
> VFS: Disk quotas dquot_6.5.2
> Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
> squashfs: version 4.0 (2009/01/31) Phillip Lougher
> msgmni has been set to 432
> alg: No test for stdrng (krng)
> async_tx: api initialized (async)
> Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
> io scheduler noop registered
> io scheduler anticipatory registered (default)
> io scheduler deadline registered
> io scheduler cfq registered
> pci 0000:01:00.0: Boot video device
> isapnp: Scanning for PnP cards...
> Switched to high resolution mode on CPU 0
> isapnp: No Plug & Play device found
> Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
> 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
> brd: module loaded
> loop: module loaded
> input: Macintosh mouse button emulation as /devices/virtual/input/input0
> Uniform Multi-Platform E-IDE driver
> pci 0000:00:02.5: PCI INT A -> GSI 16 (level, low) -> IRQ 16
> sis5513 0000:00:02.5: SiS 962/963 MuTIOL IDE UDMA133 controller
> sis5513 0000:00:02.5: IDE controller (0x1039:0x5513 rev 0x01)
> sis5513 0000:00:02.5: not 100% native mode: will probe irqs later
> ide0: BM-DMA at 0x4000-0x4007
> ide1: BM-DMA at 0x4008-0x400f
> Probing IDE interface ide0...
> hda: LITE-ON COMBO SOHC-5236V, ATAPI CD/DVD-ROM drive
> hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
> hda: UDMA/33 mode selected
> Probing IDE interface ide1...
> hdc: WDC WD800BB-00JHC0, ATA DISK drive
> hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
> hdc: host side 80-wire cable detection failed, limiting max speed to
> UDMA33
> hdc: UDMA/33 mode selected
> ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
> ide1 at 0x170-0x177,0x376 on irq 15
> ide_generic: please use "probe_mask=0x3f" module parameter for probing
> all legacy ISA IDE ports
> ide-gd driver 1.18
> hdc: max request size: 128KiB
> hdc: 156301488 sectors (80026 MB) w/2048KiB Cache, CHS=65535/16/63
> hdc: cache flushes supported
> hdc: hdc1 hdc3 hdc4 < hdc5 hdc6 >
> ide-cd driver 5.00
> ide-cd: hda: ATAPI 52X DVD-ROM CD-R/RW drive, 1536kB Cache
> Uniform CD-ROM driver Revision: 3.20
> Loading iSCSI transport class v2.0-870.
> iscsi: registered transport (tcp)
> PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
> serio: i8042 KBD port at 0x60,0x64 irq 1
> serio: i8042 AUX port at 0x60,0x64 irq 12
> mice: PS/2 mouse device common for all mice
> md: raid0 personality registered for level 0
> md: raid1 personality registered for level 1
> md: raid6 personality registered for level 6
> md: raid5 personality registered for level 5
> md: raid4 personality registered for level 4
> cpuidle: using governor ladder
> TCP cubic registered
> NET: Registered protocol family 17
> Using IPI No-Shortcut mode
> registered taskstats version 1
> Freeing unused kernel memory: 428k freed
> input: AT Translated Set 2 keyboard
> as /devices/platform/i8042/serio0/input/input1
> input: ImPS/2 Generic Wheel Mouse
> as /devices/platform/i8042/serio1/input/input2
> NCR53c406a: no available ports found
> scsi: <fdomain> Detection failed (no card)
> GDT-HA: Storage RAID Controller Driver. Version: 3.05
> qlogicfas: no cards were found, please specify I/O address and IRQ using
> iobase= and irq= optionsFailed initialization of WD-7000 SCSI card!
> NCR53c406a: no available ports found
> imm: Version 2.05 (for Linux 2.4.0)
> sym53c416.c: Version 1.0.0-ac
> Fusion MPT base driver 3.04.10
> Copyright (c) 1999-2008 LSI Corporation
> Fusion MPT SPI Host driver 3.04.10
> Fusion MPT FC Host driver 3.04.10
> Fusion MPT SAS Host driver 3.04.10
> 3ware Storage Controller device driver for Linux v1.26.02.002.
> 3ware 9000 Storage Controller device driver for Linux v2.26.02.012.
> Compaq SMART2 Driver (v 2.6.0)
> HP CISS Driver (v 3.6.20)
> Adaptec aacraid driver 1.1-5[2461]-ms
> megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
> megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
> megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008
> QLogic Fibre Channel HBA Driver: 8.03.01-k4
> Emulex LightPulse Fibre Channel SCSI driver 8.3.3
> Copyright(c) 2004-2009 Emulex. All rights reserved.
> aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
> usbcore: registered new interface driver usbfs
> usbcore: registered new interface driver hub
> usbcore: registered new device driver usb
> ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
> ehci_hcd 0000:00:03.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
> ehci_hcd 0000:00:03.3: EHCI Host Controller
> ehci_hcd 0000:00:03.3: new USB bus registered, assigned bus number 1
> ehci_hcd 0000:00:03.3: cache line size of 64 is not supported
> ehci_hcd 0000:00:03.3: irq 23, io mem 0xe1102000
> ehci_hcd 0000:00:03.3: USB 2.0 started, EHCI 1.00
> usb usb1: configuration #1 chosen from 1 choice
> hub 1-0:1.0: USB hub found
> hub 1-0:1.0: 8 ports detected
> Initializing USB Mass Storage driver...
> usbcore: registered new interface driver usb-storage
> USB Mass Storage support registered.
> uhci_hcd: USB Universal Host Controller Interface driver
> ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
> ohci_hcd 0000:00:03.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
> ohci_hcd 0000:00:03.0: OHCI Host Controller
> ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
> ohci_hcd 0000:00:03.0: irq 20, io mem 0xe1104000
> usb usb2: configuration #1 chosen from 1 choice
> hub 2-0:1.0: USB hub found
> hub 2-0:1.0: 3 ports detected
> ohci_hcd 0000:00:03.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
> ohci_hcd 0000:00:03.1: OHCI Host Controller
> ohci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3
> ohci_hcd 0000:00:03.1: irq 21, io mem 0xe1100000
> usb usb3: configuration #1 chosen from 1 choice
> hub 3-0:1.0: USB hub found
> hub 3-0:1.0: 3 ports detected
> ohci_hcd 0000:00:03.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
> ohci_hcd 0000:00:03.2: OHCI Host Controller
> ohci_hcd 0000:00:03.2: new USB bus registered, assigned bus number 4
> ohci_hcd 0000:00:03.2: irq 22, io mem 0xe1101000
> usb usb4: configuration #1 chosen from 1 choice
> hub 4-0:1.0: USB hub found
> hub 4-0:1.0: 2 ports detected
> usbcore: registered new interface driver hiddev
> usbcore: registered new interface driver usbhid
> usbhid: v2.6:USB HID core driver
> sl811: driver sl811-hcd, 19 May 2005
> device-mapper: uevent: version 1.0.3
> device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised:
> dm-devel@redhat.com
> md: raid10 personality registered for level 10
> JFS: nTxBlock = 1733, nTxLock = 13867
> RPC: Registered udp transport module.
> RPC: Registered tcp transport module.
> SGI XFS with ACLs, security attributes, realtime, large block/inode
> numbers, no debug enabled
> SGI XFS Quota Management subsystem
> fuse init (API version 7.12)
> Intel(R) PRO/1000 Network Driver - version 7.3.21-k3-NAPI
> Copyright (c) 1999-2006 Intel Corporation.
> kjournald starting. Commit interval 5 seconds
> EXT3-fs: mounted filesystem with writeback data mode.
> udev: starting version 146
> IT8705 SuperIO detected.
> parport_pc 00:09: reported by Plug and Play ACPI
> parport0: PC-style at 0x378 (0x778), irq 7, dma 3
> [PCSPP,TRISTATE,COMPAT,ECP,DMA]
> FDC 0 is a post-1991 82077
> input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
> ACPI: Power Button [PWRF]
> input: Power Button
> as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
> ACPI: Power Button [PWRB]
> input: Sleep Button
> as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
> ACPI: Sleep Button [FUTS]
> Linux agpgart interface v0.103
> thermal LNXTHERM:01: registered as thermal_zone0
> ACPI: Thermal Zone [THRM] (40 C)
> fan PNP0C0B:00: registered as cooling_device0
> ACPI: Fan [FAN] (on)
> agpgart-sis 0000:00:00.0: SiS chipset [1039/0741]
> agpgart-sis 0000:00:00.0: AGP aperture is 128M @ 0xd0000000
> processor LNXCPU:00: registered as cooling_device1
> pci_hotplug: PCI Hot Plug PCI Core version: 0.5
> input: PC Speaker as /devices/platform/pcspkr/input/input6
> shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> ppdev: user-space parallel port driver
> Intel ICH 0000:00:02.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
> sis900.c: v1.08.10 Apr. 2 2006
> rtc_cmos 00:04: RTC can wake from S4
> rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
> rtc0: alarms up to one year, 242 bytes nvram
> intel8x0_measure_ac97_clock: measured 59902 usecs (2881 samples)
> intel8x0: clocking to 48000
> sis900 0000:00:04.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
> 0000:00:04.0: Realtek RTL8201 PHY transceiver found at address 1.
> 0000:00:04.0: Using transceiver found at address 1 as default
> eth0: SiS 900 PCI Fast Ethernet at 0xe800, IRQ 19, 00:11:5b:84:60:3b
> EXT3 FS on hdc6, internal journal
> lp0: using parport0 (interrupt-driven).
> Adding 248968k swap on /dev/hdc5. Priority:-1 extents:1 across:248968k
> eth0: Media Link On 100mbps full-duplex
> warning: `named' uses 32-bit capabilities (legacy support in use)
> NET: Registered protocol family 10
> lo: Disabled Privacy Extensions
> ip_tables: (C) 2000-2006 Netfilter Core Team
> nf_conntrack version 0.5.0 (3583 buckets, 14332 max)
> CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
> nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option
> or
> sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
> Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
> svc: failed to register lockdv1 RPC service (errno 97).
> NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery
> directory
> NFSD: starting 90-second grace period
> eth0: no IPv6 routers present
> usb 1-6: new high speed USB device using ehci_hcd and address 2
> usb 1-6: configuration #1 chosen from 1 choice
> scsi2 : SCSI emulation for USB Mass Storage devices
> usb-storage: device found at 2
> usb-storage: waiting for device to settle before scanning
> IPKF INPUT Catch-all: IN=eth0 OUT=
> MAC=ff:ff:ff:ff:ff:ff:00:1f:3a:15:c1:0d:08:00 SRC=192.168.1.104
> DST=192.168.1.255 LEN=242 TOS=0x00 PREC=0x00 TTL=128 ID=25546 PROTO=UDP
> SPT=138 DPT=138 LEN=222
> usb-storage: device scan complete
> scsi 2:0:0:0: Direct-Access WDC WD80 0JB-00JJC0 0811 PQ: 0
> ANSI: 0
> sd 2:0:0:0: Attached scsi generic sg0 type 0
> sd 2:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
> sd 2:0:0:0: [sda] Test WP failed, assume Write Enabled
> sd 2:0:0:0: [sda] Assuming drive cache: write through
> sd 2:0:0:0: [sda] Test WP failed, assume Write Enabled
> sd 2:0:0:0: [sda] Assuming drive cache: write through
> sda: sda1
> sd 2:0:0:0: [sda] Test WP failed, assume Write Enabled
> sd 2:0:0:0: [sda] Assuming drive cache: write through
> sd 2:0:0:0: [sda] Attached SCSI disk
> IPKF INPUT Catch-all: IN=eth0 OUT=
> MAC=ff:ff:ff:ff:ff:ff:00:24:1e:5b:3b:c7:08:00 SRC=0.0.0.0
> DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=64 ID=12332 PROTO=UDP
> SPT=68 DPT=67 LEN=308
> IPKF INPUT Catch-all: IN=eth0 OUT=
> MAC=01:00:5e:00:00:01:00:23:69:85:2f:40:08:00 SRC=192.168.1.1
> DST=224.0.0.1 LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
> catherine ~ #
>
>
> All I know is that at one time, the external drive was recognized
> on /dev/sda and at that time I formatted the drive for swap space and
> ran swapon /dev/sda1 Now for some reason it doesn't work. I want it to
> work.
 
Old 01-02-2010, 04:14 PM
Robert Bridge
 
Default

On Sat, Jan 2, 2010 at 2:37 PM, Michael Sullivan <msulli1355@gmail.com> wrote:
> I guess I should have checked before I sent that last post because
> now /dev/sda is there. *Now, how do I make it be there when I first boot
> into Linux?

If your / filesystem is on the USB drive, you need to insert a delay
before mounting it to allow the USB system to stabilise. This is
either done using an initrd or by passing a command line option to the
kernel in the boot loader. Essentially, there is a race condition
between USB initialisation and mounting /.

Appending "rootdelay=10" to the kernel line in your bootloader should solve it.

http://www.reactivated.net/weblog/archives/2005/11/booting-linux-userland-from-an-external-usb-flash-disk/
has more details of the problem.
 

Thread Tools




All times are GMT. The time now is 10:23 AM.

VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2007 - 2008, www.linux-archive.org