Corporate Home Open Source Home
Syndicate content
Eucalyptus

Join us at engage.eucalyptus.com

5 replies [Last post]
chris.l
Offline
Joined: 01/11/2010

Is there any way to make eucalyptus run a script on a VM after starting it with the euca-run-instances command, such as a script to automatically download and install a package?

graziano
Offline
Joined: 01/14/2010
Re: Startup scripts for VMs

Hello,

I don't think that eucalyptus itself should do anything to your images. But you could solve this in few ways: one is to write your own rc.local script and upload such an image. If you need more flexibility, you could use some script and the user data when you run the instance. This is the standard way to customize instances in EC2. To use user data you need to have Eucalyptus in either MANAGED mode or MANAGED_NOVLAN mode: you can then use the -d option to euca-run-instances to pass in the user data and you can retrieve it from within the instance(s) at http://169.154.169.254/latest/user-data. There are quite a few example out there, but if you need more help let us know and we can try to be more specific.

cheers
graziano

chris.l
Offline
Joined: 01/11/2010
Re: Startup scripts for VMs

I found here http://alestic.com/2009/06/ec2-user-data-scripts how to run scripts on vms using -d (or --user-data-file or -f) as you suggested, and tried running a new instance using this command euca-run-instance -k mykey -g mygroup -f install-hello emi-52391290 with the contents of install-hello as the following #!/bin/bash
ifconfig > /tmp/foobaaar
apt-get install hello
However, when I ssh into the vm and check the /tmp/ folder there is nothing, also no hello is installed. I check the syslog in /var/log/syslog and found this: root@ubuntu:/var/log# cat syslog
Jan 12 19:03:17 ubuntu syslogd 1.5.0#5ubuntu3: restart.
Jan 12 19:03:17 ubuntu kernel: Cannot find map file.
Jan 12 19:03:17 ubuntu kernel: Loaded 48149 symbols from 18 modules.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS EBDA/lowmem at: 0009fc00/0009fc00
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Initializing cgroup subsys cpuset
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Initializing cgroup subsys cpu
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Linux version 2.6.28-11-server (buildd@palmer) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 02:48:10 UTC 2009 (Ubuntu 2.6.28-11.42-server)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] KERNEL supported cpus:
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Intel GenuineIntel
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] AMD AuthenticAMD
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] NSC Geode by NSC
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Cyrix CyrixInstead
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Centaur CentaurHauls
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Transmeta GenuineTMx86
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Transmeta TransmetaCPU
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] UMC UMC UMC UMC
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-provided physical RAM map:
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 0000000007ff0000 (usable)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-e820: 0000000007ff0000 - 0000000008000000 (ACPI data)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] BIOS-e820: 00000000fffbc000 - 0000000100000000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] DMI 2.4 present.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] last_pfn = 0x7ff0 max_arch_pfn = 0x1000000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Scanning 2 areas for low memory corruption
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified physical RAM map:
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000000006000 - 0000000000007000 (usable)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000000007000 - 0000000000010000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000000010000 - 0000000000092000 (usable)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 000000000009f000 - 00000000000a0000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000000100000 - 0000000007ff0000 (usable)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 0000000007ff0000 - 0000000008000000 (ACPI data)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] modified: 00000000fffbc000 - 0000000100000000 (reserved)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] kernel direct mapping tables up to 7ff0000 @ 10000-16000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] NX (Execute Disable) protection: active
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] RAMDISK: 078d6000 - 07fef1b5
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: RSDP 000FBDB0, 0014 (r0 QEMU )
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: RSDT 07FF0000, 0034 (r1 QEMU QEMURSDT 1 QEMU 1)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: FACP 07FF01B4, 0074 (r1 QEMU QEMUFACP 1 QEMU 1)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: DSDT 07FF0280, 1DD4 (r1 BXPC BXDSDT 1 INTL 20090521)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: FACS 07FF0240, 0040
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: SSDT 07FF2054, 09E3 (r1 BXPC BXSSDT 1 INTL 20090521)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: APIC 07FF2A38, 00EA (r1 QEMU QEMUAPIC 1 QEMU 1)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: HPET 07FF2B90, 0038 (r1 QEMU QEMUHPET 1 QEMU 1)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] 0MB HIGHMEM available.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] 127MB LOWMEM available.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] mapped low ram: 0 - 07ff0000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] low ram: 00000000 - 07ff0000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] bootmap 00013000 - 00014000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 0007ff0000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #3 [0000100000 - 00008aae2c] TEXT DATA BSS ==> [0000100000 - 00008aae2c]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #4 [00078d6000 - 0007fef1b5] RAMDISK ==> [00078d6000 - 0007fef1b5]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #5 [00008ab000 - 00008b4000] INIT_PG_TABLE ==> [00008ab000 - 00008b4000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #6 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #7 [0000010000 - 0000013000] PGTABLE ==> [0000010000 - 0000013000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] #8 [0000013000 - 0000014000] BOOTMAP ==> [0000013000 - 0000014000]
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] found SMP MP-table at [c00fbc90] 000fbc90
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] kvm-clock: cpu 0, msr 0:7d9281, boot clock
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Zone PFN ranges:
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Normal 0x00001000 -> 0x00007ff0
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] HighMem 0x00007ff0 -> 0x00007ff0
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Movable zone start PFN for each node
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] early_node_map[4] active PFN ranges
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] 0: 0x00000006 -> 0x00000007
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] 0: 0x00000010 -> 0x00000092
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] 0: 0x00000100 -> 0x00007ff0
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] On node 0 totalpages: 32629
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] free_area_init_node: node 0, pgdat c06e5480, node_mem_map c1000000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] DMA zone: 0 pages reserved
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] DMA zone: 3941 pages, LIFO batch:0
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Normal zone: 224 pages used for memmap
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Normal zone: 28432 pages, LIFO batch:7
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] HighMem zone: 0 pages used for memmap
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Movable zone: 0 pages used for memmap
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xb008
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IRQ0 used by override.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IRQ2 used by override.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IRQ5 used by override.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IRQ9 used by override.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IRQ10 used by override.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: IRQ11 used by override.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] SMP: Allowing 16 CPUs, 15 hotplug CPUs
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PM: Registered nosave memory: 0000000000007000 - 0000000000010000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PM: Registered nosave memory: 0000000000092000 - 000000000009f000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Allocating PCI resources starting at 10000000 (gap: 8000000:f7fbc000)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PERCPU: Allocating 49152 bytes of per cpu data
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] NR_CPUS: 64, nr_cpu_ids: 16, nr_node_ids 1
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] kvm-clock: cpu 0, msr 0:110a281, primary cpu clock
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32373
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Kernel command line: root=/dev/sda1 console=ttyS0
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Enabling fast FPU save and restore... done.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done.
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Initializing CPU#0
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] PID hash table entries: 512 (order: 9, 2048 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.000000] Detected 26648.380 MHz processor.
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] Console: colour VGA+ 80x25
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] console [ttyS0] enabled
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] allocated 655040 bytes of page_cgroup
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] please try cgroup_disable=memory option if you don't want
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] Scanning for low memory corruption every 60 seconds
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] Memory: 112664k/131008k available (4180k kernel code, 17740k reserved, 2255k data, 548k init, 0k highmem)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] virtual kernel memory layout:
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] fixmap : 0xffc78000 - 0xfffff000 (3612 kB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] pkmap : 0xff800000 - 0xffa00000 (2048 kB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] vmalloc : 0xc87f0000 - 0xff7fe000 ( 880 MB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] lowmem : 0xc0000000 - 0xc7ff0000 ( 127 MB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] .init : 0xc0751000 - 0xc07da000 ( 548 kB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] .data : 0xc0515003 - 0xc0748fc0 (2255 kB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] .text : 0xc0100000 - 0xc0515003 (4180 kB)
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Jan 12 19:03:17 ubuntu kernel: [ 0.010000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Jan 12 19:03:17 ubuntu kernel: [ 0.010007] Calibrating delay loop (skipped) preset value.. 5329.67 BogoMIPS (lpj=26648380)
Jan 12 19:03:17 ubuntu kernel: [ 0.010783] Security Framework initialized
Jan 12 19:03:17 ubuntu kernel: [ 0.011156] SELinux: Disabled at boot.
Jan 12 19:03:17 ubuntu kernel: [ 0.011526] AppArmor: AppArmor initialized
Jan 12 19:03:17 ubuntu kernel: [ 0.011895] Mount-cache hash table entries: 512
Jan 12 19:03:17 ubuntu kernel: [ 0.012476] Initializing cgroup subsys ns
Jan 12 19:03:17 ubuntu kernel: [ 0.012838] Initializing cgroup subsys cpuacct
Jan 12 19:03:17 ubuntu kernel: [ 0.013230] Initializing cgroup subsys memory
Jan 12 19:03:17 ubuntu kernel: [ 0.013612] Initializing cgroup subsys freezer
Jan 12 19:03:17 ubuntu kernel: [ 0.014022] CPU: L1 I cache: 32K, L1 D cache: 32K
Jan 12 19:03:17 ubuntu kernel: [ 0.014443] CPU: L2 cache: 2048K
Jan 12 19:03:17 ubuntu kernel: [ 0.017760] SMP alternatives: switching to UP code
Jan 12 19:03:17 ubuntu kernel: [ 0.080010] ACPI: Core revision 20080926
Jan 12 19:03:17 ubuntu kernel: [ 0.080625] ACPI: Checking initramfs for custom DSDT
Jan 12 19:03:17 ubuntu kernel: [ 0.279869] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 12 19:03:17 ubuntu kernel: [ 0.380556] CPU0: Intel QEMU Virtual CPU version 0.11.0 stepping 03
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] Brought up 1 CPUs
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] Total of 1 processors activated (5329.67 BogoMIPS).
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] CPU0 attaching NULL sched-domain.
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] net_namespace: 776 bytes
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] Booting paravirtualized kernel on KVM
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] Time: 19:03:06 Date: 01/12/10
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] regulator: core version 0.5
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] NET: Registered protocol family 16
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] EISA bus registered
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] ACPI: bus type pci registered
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] PCI: PCI BIOS revision 2.10 entry at 0xfb490, last bus=0
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] PCI: Using configuration type 1 for base access
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] ACPI: EC: Look up EC in DSDT
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] ACPI: Interpreter enabled
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] ACPI: (supports S0 S3 S4 S5)
Jan 12 19:03:17 ubuntu kernel: [ 0.390000] ACPI: Using IOAPIC for interrupt routing
Jan 12 19:03:17 ubuntu kernel: [ 0.391597] ACPI: No dock devices found.
Jan 12 19:03:17 ubuntu kernel: [ 0.392004] ACPI: PCI Root Bridge [PCI0] (0000:00)
Jan 12 19:03:17 ubuntu kernel: [ 0.392874] pci 0000:00:01.1: reg 20 io port: [0xc000-0xc00f]
Jan 12 19:03:17 ubuntu kernel: [ 0.393022] pci 0000:00:01.2: reg 20 io port: [0xc020-0xc03f]
Jan 12 19:03:17 ubuntu kernel: [ 0.393209] pci 0000:00:01.3: quirk: region b000-b03f claimed by PIIX4 ACPI
Jan 12 19:03:17 ubuntu kernel: [ 0.393903] pci 0000:00:01.3: quirk: region b100-b10f claimed by PIIX4 SMB
Jan 12 19:03:17 ubuntu kernel: [ 0.395511] pci 0000:00:02.0: reg 10 32bit mmio: [0xf0000000-0xf1ffffff]
Jan 12 19:03:17 ubuntu kernel: [ 0.395754] pci 0000:00:02.0: reg 14 32bit mmio: [0xf2000000-0xf2000fff]
Jan 12 19:03:17 ubuntu kernel: [ 0.396908] pci 0000:00:03.0: reg 10 32bit mmio: [0xf2020000-0xf203ffff]
Jan 12 19:03:17 ubuntu kernel: [ 0.396929] pci 0000:00:03.0: reg 14 io port: [0xc040-0xc07f]
Jan 12 19:03:17 ubuntu kernel: [ 0.397076] pci 0000:00:04.0: reg 10 io port: [0xc100-0xc1ff]
Jan 12 19:03:17 ubuntu kernel: [ 0.397143] pci 0000:00:04.0: reg 14 32bit mmio: [0xf2040000-0xf20403ff]
Jan 12 19:03:17 ubuntu kernel: [ 0.397166] pci 0000:00:04.0: reg 18 32bit mmio: [0xf2042000-0xf2043fff]
Jan 12 19:03:17 ubuntu kernel: [ 0.397286] pci 0000:00:05.0: reg 10 io port: [0xc200-0xc21f]
Jan 12 19:03:17 ubuntu kernel: [ 0.397485] bus 00 -> node 0
Jan 12 19:03:17 ubuntu kernel: [ 0.397534] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Jan 12 19:03:17 ubuntu kernel: [ 0.399240] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
Jan 12 19:03:17 ubuntu kernel: [ 0.400163] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
Jan 12 19:03:17 ubuntu kernel: [ 0.400823] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
Jan 12 19:03:17 ubuntu kernel: [ 0.401478] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
Jan 12 19:03:17 ubuntu kernel: [ 0.402201] ACPI: WMI: Mapper loaded
Jan 12 19:03:17 ubuntu kernel: [ 0.402838] SCSI subsystem initialized
Jan 12 19:03:17 ubuntu kernel: [ 0.403272] libata version 3.00 loaded.
Jan 12 19:03:17 ubuntu kernel: [ 0.403323] usbcore: registered new interface driver usbfs
Jan 12 19:03:17 ubuntu kernel: [ 0.403895] usbcore: registered new interface driver hub
Jan 12 19:03:17 ubuntu kernel: [ 0.404450] usbcore: registered new device driver usb
Jan 12 19:03:17 ubuntu kernel: [ 0.405054] PCI: Using ACPI for IRQ routing
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] Bluetooth: Core ver 2.13
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NET: Registered protocol family 31
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] Bluetooth: HCI device and connection manager initialized
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] Bluetooth: HCI socket layer initialized
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NET: Registered protocol family 8
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NET: Registered protocol family 20
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NetLabel: Initializing
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NetLabel: domain hash size = 128
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NetLabel: protocols = UNLABELED CIPSOv4
Jan 12 19:03:17 ubuntu kernel: [ 0.405634] NetLabel: unlabeled traffic allowed by default
Jan 12 19:03:17 ubuntu kernel: [ 0.410119] AppArmor: AppArmor Filesystem Enabled
Jan 12 19:03:17 ubuntu kernel: [ 0.410596] pnp: PnP ACPI init
Jan 12 19:03:17 ubuntu kernel: [ 0.410596] ACPI: bus type pnp registered
Jan 12 19:03:17 ubuntu kernel: [ 0.411180] pnp: PnP ACPI: found 6 devices
Jan 12 19:03:17 ubuntu kernel: [ 0.411600] ACPI: ACPI bus type pnp unregistered
Jan 12 19:03:17 ubuntu kernel: [ 0.412061] PnPBIOS: Disabled
Jan 12 19:03:17 ubuntu kernel: [ 0.420022] Switched to high resolution mode on CPU 0
Jan 12 19:03:17 ubuntu kernel: [ 0.448107] bus: 00 index 0 io port: [0x00-0xffff]
Jan 12 19:03:17 ubuntu kernel: [ 0.448594] bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff]
Jan 12 19:03:17 ubuntu kernel: [ 0.449190] NET: Registered protocol family 2
Jan 12 19:03:17 ubuntu kernel: [ 0.449765] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.450638] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.451375] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.452041] TCP: Hash tables configured (established 4096 bind 4096)
Jan 12 19:03:17 ubuntu kernel: [ 0.452672] TCP reno registered
Jan 12 19:03:17 ubuntu kernel: [ 0.453131] NET: Registered protocol family 1
Jan 12 19:03:17 ubuntu kernel: [ 0.453662] checking if image is initramfs... it is
Jan 12 19:03:17 ubuntu kernel: [ 0.856830] Freeing initrd memory: 7268k freed
Jan 12 19:03:17 ubuntu kernel: [ 0.857351] cpufreq: No nForce2 chipset.
Jan 12 19:03:17 ubuntu kernel: [ 0.857860] audit: initializing netlink socket (disabled)
Jan 12 19:03:17 ubuntu kernel: [ 0.858416] type=2000 audit(1263322986.850:1): initialized
Jan 12 19:03:17 ubuntu kernel: [ 0.864087] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jan 12 19:03:17 ubuntu kernel: [ 0.865365] VFS: Disk quotas dquot_6.5.1
Jan 12 19:03:17 ubuntu kernel: [ 0.865808] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Jan 12 19:03:17 ubuntu kernel: [ 0.866863] fuse init (API version 7.10)
Jan 12 19:03:17 ubuntu kernel: [ 0.867315] msgmni has been set to 234
Jan 12 19:03:17 ubuntu kernel: [ 0.867869] alg: No test for stdrng (krng)
Jan 12 19:03:17 ubuntu kernel: [ 0.868295] io scheduler noop registered
Jan 12 19:03:17 ubuntu kernel: [ 0.868690] io scheduler anticipatory registered
Jan 12 19:03:17 ubuntu kernel: [ 0.869151] io scheduler deadline registered (default)
Jan 12 19:03:17 ubuntu kernel: [ 0.869670] io scheduler cfq registered
Jan 12 19:03:17 ubuntu kernel: [ 0.870100] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Jan 12 19:03:17 ubuntu kernel: [ 0.870703] pci 0000:00:01.0: PIIX3: Enabling Passive Release
Jan 12 19:03:17 ubuntu kernel: [ 0.871284] pci 0000:00:01.0: Activating ISA DMA hang workarounds
Jan 12 19:03:17 ubuntu kernel: [ 0.871924] pci 0000:00:02.0: Boot video device
Jan 12 19:03:17 ubuntu kernel: [ 0.872381] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jan 12 19:03:17 ubuntu kernel: [ 0.872950] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jan 12 19:03:17 ubuntu kernel: [ 0.873698] input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Jan 12 19:03:17 ubuntu kernel: [ 0.874471] ACPI: Power Button (FF) [PWRF]
Jan 12 19:03:17 ubuntu kernel: [ 0.875119] processor ACPI_CPU:00: registered as cooling_device0
Jan 12 19:03:17 ubuntu kernel: [ 0.876789] isapnp: Scanning for PnP cards...
Jan 12 19:03:17 ubuntu kernel: [ 1.000017] Clocksource tsc unstable (delta = -450001673 ns)
Jan 12 19:03:17 ubuntu kernel: [ 1.235019] isapnp: No Plug & Play device found
Jan 12 19:03:17 ubuntu kernel: [ 1.236130] Serial: 8250/16550 driver4 ports, IRQ sharing enabled
Jan 12 19:03:17 ubuntu kernel: [ 1.236870] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jan 12 19:03:17 ubuntu kernel: [ 1.237718] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jan 12 19:03:17 ubuntu kernel: [ 1.238736] brd: module loaded
Jan 12 19:03:17 ubuntu kernel: [ 1.239281] loop: module loaded
Jan 12 19:03:17 ubuntu kernel: [ 1.239652] Fixed MDIO Bus: probed
Jan 12 19:03:17 ubuntu kernel: [ 1.240020] PPP generic driver version 2.4.2
Jan 12 19:03:17 ubuntu kernel: [ 1.240485] input: Macintosh mouse button emulation as /devices/virtual/input/input1
Jan 12 19:03:17 ubuntu kernel: [ 1.241282] Driver 'sd' needs updating - please use bus_type methods
Jan 12 19:03:17 ubuntu kernel: [ 1.241927] Driver 'sr' needs updating - please use bus_type methods
Jan 12 19:03:17 ubuntu kernel: [ 1.242606] ata_piix 0000:00:01.1: version 2.12
Jan 12 19:03:17 ubuntu kernel: [ 1.242671] ata_piix 0000:00:01.1: setting latency timer to 64
Jan 12 19:03:17 ubuntu kernel: [ 1.242798] scsi0 : ata_piix
Jan 12 19:03:17 ubuntu kernel: [ 1.243167] scsi1 : ata_piix
Jan 12 19:03:17 ubuntu kernel: [ 1.243485] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc000 irq 14
Jan 12 19:03:17 ubuntu kernel: [ 1.244158] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc008 irq 15
Jan 12 19:03:17 ubuntu kernel: [ 1.560431] ata2.01: NODEV after polling detection
Jan 12 19:03:17 ubuntu kernel: [ 1.560607] ata2.00: ATAPI: QEMU DVD-ROM, 0.11.0, max UDMA/100
Jan 12 19:03:17 ubuntu kernel: [ 1.561496] ata2.00: configured for MWDMA2
Jan 12 19:03:17 ubuntu kernel: [ 1.562250] scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 0.11 PQ: 0 ANSI: 5
Jan 12 19:03:17 ubuntu kernel: [ 1.564018] sr0: scsi3-mmc drive: 4x/4x xa/form2 tray
Jan 12 19:03:17 ubuntu kernel: [ 1.564530] Uniform CD-ROM driver Revision: 3.20
Jan 12 19:03:17 ubuntu kernel: [ 1.565038] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jan 12 19:03:17 ubuntu kernel: [ 1.565083] sr 1:0:0:0: Attached scsi generic sg0 type 5
Jan 12 19:03:17 ubuntu kernel: [ 1.565897] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 12 19:03:17 ubuntu kernel: [ 1.566557] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 12 19:03:17 ubuntu kernel: [ 1.567178] uhci_hcd: USB Universal Host Controller Interface driver
Jan 12 19:03:17 ubuntu kernel: [ 1.567916] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Jan 12 19:03:17 ubuntu kernel: [ 1.568500] uhci_hcd 0000:00:01.2: PCI INT D -> Link[LNKD] -> GSI 11 (level, high) -> IRQ 11
Jan 12 19:03:17 ubuntu kernel: [ 1.569339] uhci_hcd 0000:00:01.2: setting latency timer to 64
Jan 12 19:03:17 ubuntu kernel: [ 1.569347] uhci_hcd 0000:00:01.2: UHCI Host Controller
Jan 12 19:03:17 ubuntu kernel: [ 1.569945] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
Jan 12 19:03:17 ubuntu kernel: [ 1.570744] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c020
Jan 12 19:03:17 ubuntu kernel: [ 1.571396] usb usb1: configuration #1 chosen from 1 choice
Jan 12 19:03:17 ubuntu kernel: [ 1.572643] hub 1-0:1.0: USB hub found
Jan 12 19:03:17 ubuntu kernel: [ 1.573742] hub 1-0:1.0: 2 ports detected
Jan 12 19:03:17 ubuntu kernel: [ 1.575099] usbcore: registered new interface driver libusual
Jan 12 19:03:17 ubuntu kernel: [ 1.576825] usbcore: registered new interface driver usbserial
Jan 12 19:03:17 ubuntu kernel: [ 1.578502] USB Serial support registered for generic
Jan 12 19:03:17 ubuntu kernel: [ 1.580090] usbcore: registered new interface driver usbserial_generic
Jan 12 19:03:17 ubuntu kernel: [ 1.581205] usbserial: USB Serial Driver core
Jan 12 19:03:17 ubuntu kernel: [ 1.581793] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jan 12 19:03:17 ubuntu kernel: [ 1.583112] serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 12 19:03:17 ubuntu kernel: [ 1.583612] serio: i8042 AUX port at 0x60,0x64 irq 12
Jan 12 19:03:17 ubuntu kernel: [ 1.584417] mice: PS/2 mouse device common for all mice
Jan 12 19:03:17 ubuntu kernel: [ 1.585252] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
Jan 12 19:03:17 ubuntu kernel: [ 1.586035] rtc0: alarms up to one day, 114 bytes nvram
Jan 12 19:03:17 ubuntu kernel: [ 1.586715] device-mapper: uevent: version 1.0.3
Jan 12 19:03:17 ubuntu kernel: [ 1.587620] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Jan 12 19:03:17 ubuntu kernel: [ 1.588742] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
Jan 12 19:03:17 ubuntu kernel: [ 1.589892] device-mapper: multipath: version 1.0.5 loaded
Jan 12 19:03:17 ubuntu kernel: [ 1.590489] device-mapper: multipath round-robin: version 1.0.0 loaded
Jan 12 19:03:17 ubuntu kernel: [ 1.591313] EISA: Probing bus 0 at eisa.0
Jan 12 19:03:17 ubuntu kernel: [ 1.591907] EISA: Detected 0 cards.
Jan 12 19:03:17 ubuntu kernel: [ 1.592285] cpuidle: using governor ladder
Jan 12 19:03:17 ubuntu kernel: [ 1.592934] cpuidle: using governor menu
Jan 12 19:03:17 ubuntu kernel: [ 1.593625] TCP cubic registered
Jan 12 19:03:17 ubuntu kernel: [ 1.594141] NET: Registered protocol family 10
Jan 12 19:03:17 ubuntu kernel: [ 1.595105] lo: Disabled Privacy Extensions
Jan 12 19:03:17 ubuntu kernel: [ 1.595693] NET: Registered protocol family 17
Jan 12 19:03:17 ubuntu kernel: [ 1.596279] Bluetooth: L2CAP ver 2.11
Jan 12 19:03:17 ubuntu kernel: [ 1.596648] Bluetooth: L2CAP socket layer initialized
Jan 12 19:03:17 ubuntu kernel: [ 1.597388] Bluetooth: SCO (Voice Link) ver 0.6
Jan 12 19:03:17 ubuntu kernel: [ 1.597960] Bluetooth: SCO socket layer initialized
Jan 12 19:03:17 ubuntu kernel: [ 1.598614] Bluetooth: RFCOMM socket layer initialized
Jan 12 19:03:17 ubuntu kernel: [ 1.599371] Bluetooth: RFCOMM TTY layer initialized
Jan 12 19:03:17 ubuntu kernel: [ 1.599856] Bluetooth: RFCOMM ver 1.10
Jan 12 19:03:17 ubuntu kernel: [ 1.600540] Using IPI No-Shortcut mode
Jan 12 19:03:17 ubuntu kernel: [ 1.600958] registered taskstats version 1
Jan 12 19:03:17 ubuntu kernel: [ 1.601685] Magic number: 10:398:91
Jan 12 19:03:17 ubuntu kernel: [ 1.602097] rtc_cmos 00:01: setting system clock to 2010-01-12 19:03:07 UTC (1263322987)
Jan 12 19:03:17 ubuntu kernel: [ 1.603122] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jan 12 19:03:17 ubuntu kernel: [ 1.603948] EDD information not available.
Jan 12 19:03:17 ubuntu kernel: [ 1.604675] Freeing unused kernel memory: 548k freed
Jan 12 19:03:17 ubuntu kernel: [ 1.605233] Write protecting the kernel text: 4184k
Jan 12 19:03:17 ubuntu kernel: [ 1.605984] Write protecting the kernel read-only data: 1552k
Jan 12 19:03:17 ubuntu kernel: [ 1.786970] Intel(R) PRO/1000 Network Driver - version 7.3.21-k3-NAPI
Jan 12 19:03:17 ubuntu kernel: [ 1.787762] Copyright (c) 1999-2006 Intel Corporation.
Jan 12 19:03:17 ubuntu kernel: [ 1.788696] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
Jan 12 19:03:17 ubuntu kernel: [ 1.789400] e1000 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, high) -> IRQ 10
Jan 12 19:03:17 ubuntu kernel: [ 1.790411] e1000 0000:00:03.0: setting latency timer to 64
Jan 12 19:03:17 ubuntu kernel: [ 1.790816] FDC 0 is a S82078B
Jan 12 19:03:17 ubuntu kernel: [ 2.081543] e1000: 0000:00:03.0: e1000_probe: (PCI:33MHz:32-bit) d0:0d:59:c6:09:aa
Jan 12 19:03:17 ubuntu kernel: [ 2.145093] e1000: eth0: e1000_probe: Intel(R) PRO/1000 Network Connection
Jan 12 19:03:17 ubuntu kernel: [ 2.146859] sym53c8xx 0000:00:04.0: PCI INT A -> Link[LNKD] -> GSI 11 (level, high) -> IRQ 11
Jan 12 19:03:17 ubuntu kernel: [ 2.150707] sym0: <895a> rev 0x0 at pci 0000:00:04.0 irq 11
Jan 12 19:03:17 ubuntu kernel: [ 2.153835] sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
Jan 12 19:03:17 ubuntu kernel: [ 2.160025] sym0: SCSI BUS has been reset.
Jan 12 19:03:17 ubuntu kernel: [ 2.164240] scsi2 : sym-2.2.3
Jan 12 19:03:17 ubuntu kernel: [ 2.164737] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
Jan 12 19:03:17 ubuntu kernel: [ 2.165311] virtio-pci 0000:00:05.0: PCI INT A -> Link[LNKA] -> GSI 10 (level, high) -> IRQ 10
Jan 12 19:03:17 ubuntu kernel: [ 5.160318] scsi 2:0:0:0: Direct-Access QEMU QEMU HARDDISK 0.11 PQ: 0 ANSI: 3
Jan 12 19:03:17 ubuntu kernel: [ 5.162394] scsi target2:0:0: tagged command queuing enabled, command queue depth 16.
Jan 12 19:03:17 ubuntu kernel: [ 5.164341] scsi target2:0:0: Beginning Domain Validation
Jan 12 19:03:17 ubuntu kernel: [ 5.166209] scsi target2:0:0: Domain Validation skipping write tests
Jan 12 19:03:17 ubuntu kernel: [ 5.167750] scsi target2:0:0: Ending Domain Validation
Jan 12 19:03:17 ubuntu kernel: [ 5.172845] sd 2:0:0:0: [sda] 4225024 512-byte hardware sectors: (2.16 GB/2.01 GiB)
Jan 12 19:03:17 ubuntu kernel: [ 5.174794] sd 2:0:0:0: [sda] Write Protect is off
Jan 12 19:03:17 ubuntu kernel: [ 5.175971] sd 2:0:0:0: [sda] Mode Sense: 14 00 00 00
Jan 12 19:03:17 ubuntu kernel: [ 5.176144] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 12 19:03:17 ubuntu kernel: [ 5.178558] sd 2:0:0:0: [sda] 4225024 512-byte hardware sectors: (2.16 GB/2.01 GiB)
Jan 12 19:03:17 ubuntu kernel: [ 5.180570] sd 2:0:0:0: [sda] Write Protect is off
Jan 12 19:03:17 ubuntu kernel: [ 5.181115] sd 2:0:0:0: [sda] Mode Sense: 14 00 00 00
Jan 12 19:03:17 ubuntu kernel: [ 5.181183] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 12 19:03:17 ubuntu kernel: [ 5.182075] sda: sda1 sda2 sda3
Jan 12 19:03:17 ubuntu kernel: [ 5.183003] sd 2:0:0:0: [sda] Attached SCSI disk
Jan 12 19:03:17 ubuntu kernel: [ 5.183501] sd 2:0:0:0: Attached scsi generic sg1 type 0
Jan 12 19:03:17 ubuntu kernel: [ 10.301988] kjournald starting. Commit interval 5 seconds
Jan 12 19:03:17 ubuntu kernel: [ 10.303500] EXT3-fs: mounted filesystem with ordered data mode.
Jan 12 19:03:17 ubuntu kernel: [ 10.447492] udev: starting version 141
Jan 12 19:03:17 ubuntu kernel: [ 10.511428] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0
Jan 12 19:03:17 ubuntu kernel: [ 10.545631] ADDRCONF(NETDEV_UP): eth0: link is not ready
Jan 12 19:03:17 ubuntu kernel: [ 10.550448] e1000: eth0: e1000_watchdog: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
Jan 12 19:03:17 ubuntu kernel: [ 10.552252] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jan 12 19:03:17 ubuntu kernel: [ 10.575658] synaptics was reset on resume, see synaptics_resume_reset if you have trouble on resume
Jan 12 19:03:17 ubuntu kernel: [ 10.577280] psmouse serio1: ID: 10 00 64<6>input: PC Speaker as /devices/platform/pcspkr/input/input3
Jan 12 19:03:17 ubuntu kernel: [ 10.770642] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
Jan 12 19:03:17 ubuntu kernel: [ 10.906664] EXT3-fs warning: checktime reached, running e2fsck is recommended
Jan 12 19:03:17 ubuntu kernel: [ 10.907269] EXT3 FS on sda1, internal journal
Jan 12 19:03:17 ubuntu dhclient: Listening on LPF/eth0/d0:0d:59:c6:09:aa
Jan 12 19:03:17 ubuntu dhclient: Sending on LPF/eth0/d0:0d:59:c6:09:aa
Jan 12 19:03:17 ubuntu dhclient: Sending on Socket/fallback
Jan 12 19:03:18 ubuntu dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
Jan 12 19:03:18 ubuntu dhclient: DHCPOFFER of 172.19.1.34 from 169.254.169.254
Jan 12 19:03:18 ubuntu dhclient: DHCPREQUEST of 172.19.1.34 on eth0 to 255.255.255.255 port 67
Jan 12 19:03:18 ubuntu dhclient: DHCPACK of 172.19.1.34 from 169.254.169.254
Jan 12 19:03:19 ubuntu dhclient: bound to 172.19.1.34 -- renewal in 560 seconds.
Jan 12 19:03:20 ubuntu kernel: [ 14.114469] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 12 19:03:20 ubuntu kernel: [ 14.114880] acpiphp_glue: can't get bus number, assuming 0
Jan 12 19:03:20 ubuntu kernel: [ 14.114891] decode_hpp: Could not get hotplug parameters. Use defaults
Jan 12 19:03:20 ubuntu kernel: [ 14.114909] acpiphp: Slot [1] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114921] acpiphp: Slot [2] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114931] acpiphp: Slot [3] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114938] acpiphp: Slot [4] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114945] acpiphp: Slot [5] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114954] acpiphp: Slot [6] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114963] acpiphp: Slot [7] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114969] acpiphp: Slot [8] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114976] acpiphp: Slot [9] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114984] acpiphp: Slot [10] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114992] acpiphp: Slot [11] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.114999] acpiphp: Slot [12] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115005] acpiphp: Slot [13] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115012] acpiphp: Slot [14] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115018] acpiphp: Slot [15] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115025] acpiphp: Slot [16] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115032] acpiphp: Slot [17] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115039] acpiphp: Slot [18] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115046] acpiphp: Slot [19] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115052] acpiphp: Slot [20] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115061] acpiphp: Slot [21] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115067] acpiphp: Slot [22] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115074] acpiphp: Slot [23] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115081] acpiphp: Slot [24] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115088] acpiphp: Slot [25] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115094] acpiphp: Slot [26] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115101] acpiphp: Slot [27] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115108] acpiphp: Slot [28] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115115] acpiphp: Slot [29] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115122] acpiphp: Slot [30] registered
Jan 12 19:03:20 ubuntu kernel: [ 14.115128] acpiphp: Slot [31] registered
Jan 12 19:03:25 ubuntu ntpdate[1830]: step time server 91.189.94.4 offset 2.358355 sec
Jan 12 19:03:29 ubuntu kernel: [ 21.540160] eth0: no IPv6 routers present
Jan 12 19:03:32 ubuntu init: xvc0 main process (1878) terminated with status 1
Jan 12 19:03:32 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:03:42 ubuntu init: xvc0 main process (1884) terminated with status 1
Jan 12 19:03:42 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:03:52 ubuntu init: xvc0 main process (1885) terminated with status 1
Jan 12 19:03:52 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:04:02 ubuntu init: xvc0 main process (1886) terminated with status 1
Jan 12 19:04:02 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:04:12 ubuntu init: xvc0 main process (1887) terminated with status 1
Jan 12 19:04:12 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:04:22 ubuntu init: xvc0 main process (1888) terminated with status 1
Jan 12 19:04:22 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:04:32 ubuntu init: xvc0 main process (1889) terminated with status 1
Jan 12 19:04:32 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:04:42 ubuntu init: xvc0 main process (1890) terminated with status 1
Jan 12 19:04:42 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:04:52 ubuntu init: xvc0 main process (1891) terminated with status 1
Jan 12 19:04:52 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:05:02 ubuntu init: xvc0 main process (1892) terminated with status 1
Jan 12 19:05:02 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:05:12 ubuntu init: xvc0 main process (1893) terminated with status 1
Jan 12 19:05:12 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:05:22 ubuntu init: xvc0 main process (1896) terminated with status 1
Jan 12 19:05:22 ubuntu init: xvc0 main process ended, respawning
Jan 12 19:05:32 ubuntu init: xvc0 main process (1909) terminated with status 1
Jan 12 19:05:32 ubuntu init: xvc0 main process ended, respawning
It appears that ubuntu is failing xvc0 over and over again. I don't know whether or not this is related to the user data script or not.

graziano
Offline
Joined: 01/14/2010
Re: Startup scripts for VMs

Did you use aelastic images? They modified the rc.local to execute the user-data if they see #! as the first 2 characters. If you use our images we don't do that.

The error you see seems related to the console: I'm not fully sure why you see it, but is should not be related to it.

cheers
graziano

chris.l
Offline
Joined: 01/11/2010
Re: Startup scripts for VMs

Hi graziano,

I used the images from eucalyptus. Any idea if the images from aelastic are publicly available for download? I went to their website but there are no download links.

Thanks,
Chris

graziano
Offline
Joined: 01/14/2010
Re: Startup scripts for VMs

Hello,

I think they are only in EC2. If you have access to EC2 you could check them out.

cheers
graziano