PDA

View Full Version : [ubuntu] neither kickstart nor preseed fully working.



enxer
January 15th, 2013, 09:19 PM
I've begun testing deployment options via PXE for Ubuntu after successfully deploying Kickstart for CentOS, however not KS or preseed fully build out Ubuntu 12.04LTS server edition. I'm hoping someone can shed light as to why. The system boots then just sits at the configuration section with only these options: Choose Language, configure the keyboard, detect network hardware, configure the network, Choose a mirror of the ubuntu archive, change debconf priority, save debug logs, execute a shell, abort the installation.

default

label ubuntu-install
menu label ^Ubuntu install
kernel /Linux/Ubuntu/12.04/isolinux/linux
APPEND ks=http://10.10.10.3/Kickstart/Ubuntu_base.txt vga=normal initrd=/Linux/Ubuntu/12.04/isolinux/initrd.gz --

label ubuntu-install2
menu label ^Ubuntu install 2
kernel /Linux/Ubuntu/12.04/isolinux/linux
APPEND preseed/url=http://10.10.10.3/Kickstart/Ubuntu12.04.seed vga=normal initrd=/Linux/Ubuntu/12.04/isolinux/initrd.gz --

Ubuntu_base.txt Kickstart File:


#Generated by Kickstart Configurator
#platform=AMD64 or Intel EM64T

#System language
lang en_US
#Language modules to install
langsupport en_US
#System keyboard
keyboard us
#System mouse
mouse
#System timezone
timezone America/New_York
#Root password
rootpw --disabled
#Initial user
user ubuntuadmin --fullname "Ubuntu Administrator" --iscrypted --password $asdf.
#Install OS instead of upgrade
install
#Use Web installation
url --url http://10.10.10.3/Ubuntu/12.04/
#System bootloader configuration
bootloader --location=mbr
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel
#Disk partitioning information
part /boot --fstype ext4 --size 512
part swap --size 2048
part / --fstype ext4 --size 1 --grow
#System authorization infomation
auth --useshadow
#Network information
network --bootproto=dhcp --device=eth0
#Firewall configuration
firewall --disabled
#Do not configure the X Window System
skipx
%packages # comment out needed packages, or add new
openssh-server

Ubuntu12.04.seed


d-i debian-installer/locale string en_US
d-i debian-installer/language string en

# Keyboard selection.
# Disable automatic (interactive) keymap detection.
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string us

### Network configuration
# netcfg will choose an interface that has link if possible. This makes it
# skip displaying a list if there is more than one interface.
d-i netcfg/choose_interface select auto

# Any hostname and domain names assigned from dhcp take precedence over
# values set here. However, setting the values still prevents the questions
# from being shown, even if values come from dhcp.
d-i netcfg/get_hostname string ubuntu1
d-i netcfg/get_domain string archergroup.local

### Mirror settings
# If you select ftp, the mirror/country string does not need to be set.
d-i mirror/protocol string http
d-i mirror/country string manual
d-i mirror/http/hostname string 10.10.10.3
d-i mirror/http/directory string /Ubuntu/12.04
d-i mirror/http/proxy string

# Suite to install.
d-i mirror/suite string precise

### Clock and time zone setup
# Controls whether or not the hardware clock is set to UTC.
d-i clock-setup/utc boolean true

# You may set this to any valid setting for $TZ; see the contents of
# /usr/share/zoneinfo/ for valid values.
d-i time/zone string US/Eastern

# Controls whether to use NTP to set the clock during the install
d-i clock-setup/ntp boolean true
# NTP server to use. The default is almost always fine here.
#d-i clock-setup/ntp-server string 10.10.10.10

### Partitioning
## Partitioning example
# If the system has free space you can choose to only partition that space.
# This is only honoured if partman-auto/method (below) is not set.
# Alternatives: custom, some_device, some_device_crypto, some_device_lvm.
#d-i partman-auto/init_automatically_partition select biggest_free

# Alternatively, you may specify a disk to partition. If the system has only
# one disk the installer will default to using that, but otherwise the device
# name must be given in traditional, non-devfs format (so e.g. /dev/hda or
# /dev/sda, and not e.g. /dev/discs/disc0/disc).
# For example, to use the first SCSI/SATA hard disk:
# d-i partman-auto/disk string /dev/sda
# In addition, you'll need to specify the method to use.
# The presently available methods are:
# - regular: use the usual partition types for your architecture
# - lvm: use LVM to partition the disk
# - crypto: use LVM within an encrypted partition
d-i partman-auto/method string regular

# If one of the disks that are going to be automatically partitioned
# contains an old LVM configuration, the user will normally receive a
# warning. This can be preseeded away...
d-i partman-lvm/device_remove_lvm boolean true
# The same applies to pre-existing software RAID array:
d-i partman-md/device_remove_md boolean true
# And the same goes for the confirmation to write the lvm partitions.
d-i partman-lvm/confirm boolean true

# You can choose one of the three predefined partitioning recipes:
# - atomic: all files in one partition
# - home: separate /home partition
# - multi: separate /home, /usr, /var, and /tmp partitions
d-i partman-auto/choose_recipe select atomic

# If not, you can put an entire recipe into the preconfiguration file in one
# (logical) line. This example creates a small /boot partition, suitable
# swap, and uses the rest of the space for the root partition:
d-i partman-auto/expert_recipe string \
boot-root :: \
40 512 512 ext4 \
$primary{ } $bootable{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /boot } \
. \
500 10000 1000000000 ext4 \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ / } \
. \
64 2048 2048 linux-swap \
method{ swap } format{ } \
.

# If you just want to change the default filesystem from ext3 to something
# else, you can do that without providing a full recipe.
#d-i partman/default_filesystem string ext4

# This makes partman automatically partition without confirmation, provided
# that you told it what to do using one of the methods above.
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true

### Base system installation
# Configure APT to not install recommended packages by default. Use of this
# option can result in an incomplete system and should only be used by very
# experienced users.
#d-i base-installer/install-recommends boolean false

# The kernel image (meta) package to be installed; "none" can be used if no
# kernel is to be installed.
d-i base-installer/kernel/image string linux-generic

### Account setup
# Skip creation of a root account (normal user account will be able to
# use sudo). The default is false; preseed this to true if you want to set
# a root password.
#d-i passwd/root-login boolean false
# Alternatively, to skip creation of a normal user account.
#d-i passwd/make-user boolean false

# Root password, either in clear text
#d-i passwd/root-password password r00tme
#d-i passwd/root-password-again password r00tme
# or encrypted using an MD5 hash.
#d-i passwd/root-password-crypted password [MD5 hash]

# To create a normal user account.
d-i passwd/user-fullname string Ubuntu Admin
d-i passwd/username string ubuntuadmin
# Normal user's password, either in clear text
# or encrypted using an MD5 hash.
d-i passwd/user-password-crypted password a62cc971c13f90ea38d14b9ca3a6e8cb
# Create the first user with the specified UID instead of the default.
#d-i passwd/user-uid string 1010
# The installer will warn about weak passwords. If you are sure you know
# what you're doing and want to override it, uncomment this.
d-i user-setup/allow-password-weak boolean true

# The user account will be added to some standard initial groups. To
# override that, use this.
#d-i passwd/user-default-groups string audio cdrom video

# Set to true if you want to encrypt the first user's home directory.
d-i user-setup/encrypt-home boolean false

### Apt setup
# You can choose to install restricted and universe software, or to install
# software from the backports repository.
d-i apt-setup/restricted boolean true
d-i apt-setup/universe boolean true
d-i apt-setup/backports boolean true
# Uncomment this if you don't want to use a network mirror.
d-i apt-setup/use_mirror boolean false
# Select which update services to use; define the mirrors to be used.
# Values shown below are the normal defaults.
#d-i apt-setup/services-select multiselect security
#d-i apt-setup/security_host string security.ubuntu.com
#d-i apt-setup/security_path string /ubuntu



### Package selection
tasksel tasksel/first multiselect standard
#tasksel tasksel/first multiselect lamp-server, print-server
#tasksel tasksel/first multiselect kubuntu-desktop

# Individual additional packages to install
d-i pkgsel/include string openssh-server build-essential winbind rsync wget
# Whether to upgrade packages after debootstrap.
# Allowed values: none, safe-upgrade, full-upgrade
d-i pkgsel/upgrade select none

# Language pack selection
#d-i pkgsel/language-packs multiselect de, en, zh

# Policy for applying updates. May be "none" (no automatic updates),
# "unattended-upgrades" (install security updates automatically), or
# "landscape" (manage system with Landscape).
d-i pkgsel/update-policy select none

# Some versions of the installer can report back on what software you have
# installed, and what software you use. The default is not to report back,
# but sending reports helps the project determine what software is most
# popular and include it on CDs.
popularity-contest popularity-contest/participate boolean false

# By default, the system's locate database will be updated after the
# installer has finished installing most packages. This may take a while, so
# if you don't want it, you can set this to "false" to turn it off.
#d-i pkgsel/updatedb boolean true

### Boot loader installation
# This is fairly safe to set, it makes grub install automatically to the MBR
# if no other operating system is detected on the machine.
d-i grub-installer/only_debian boolean true

# This one makes grub-installer install to the MBR if it also finds some other
# OS, which is less safe as it might not be able to boot that other OS.
d-i grub-installer/with_other_os boolean true

# Alternatively, if you want to install to a location other than the mbr,
# uncomment and edit these lines:
#d-i grub-installer/only_debian boolean false
#d-i grub-installer/with_other_os boolean false
#d-i grub-installer/bootdev string (hd0,0)
# To install grub to multiple disks:
#d-i grub-installer/bootdev string (hd0,0) (hd1,0) (hd2,0)

# Optional password for grub, either in clear text
#d-i grub-installer/password password r00tme
#d-i grub-installer/password-again password r00tme
# or encrypted using an MD5 hash, see grub-md5-crypt(8).
#d-i grub-installer/password-crypted password [MD5 hash]

# Use the following option to add additional boot parameters for the
# installed system (if supported by the bootloader installer).
# Note: options passed to the installer will be added automatically.
#d-i debian-installer/add-kernel-opts string nousb

### Finishing up the installation
# During installations from serial console, the regular virtual consoles
# (VT1-VT6) are normally disabled in /etc/inittab. Uncomment the next
# line to prevent this.
#d-i finish-install/keep-consoles boolean true

# Avoid that last message about the install being complete.
# d-i finish-install/reboot_in_progress note

# This will prevent the installer from ejecting the CD during the reboot,
# which is useful in some situations.
#d-i cdrom-detect/eject boolean false

# This is how to make the installer shutdown when finished, but not
# reboot into the installed system.
#d-i debian-installer/exit/halt boolean true
# This will power off the machine instead of just halting it.
#d-i debian-installer/exit/poweroff boolean true


### Preseeding other packages
# Depending on what software you choose to install, or if things go wrong
# during the installation process, it's possible that other questions may
# be asked. You can preseed those too, of course. To get a list of every
# possible question that could be asked during an install, do an
# installation, and then run these commands:
# debconf-get-selections --installer > file
# debconf-get-selections >> file


#### Advanced options
### Running custom commands during the installation
# d-i preseeding is inherently not secure. Nothing in the installer checks
# for attempts at buffer overflows or other exploits of the values of a
# preconfiguration file like this one. Only use preconfiguration files from
# trusted locations! To drive that home, and because it's generally useful,
# here's a way to run any shell command you'd like inside the installer,
# automatically.

# This first command is run as early as possible, just after
# preseeding is read.
#d-i preseed/early_command string anna-install some-udeb
# This command is run immediately before the partitioner starts. It may be
# useful to apply dynamic partitioner preseeding that depends on the state
# of the disks (which may not be visible when preseed/early_command runs).
#d-i partman/early_command \
# string debconf-set partman-auto/disk "$(list-devices disk | head -n1)"
# This command is run just before the install finishes, but when there is
# still a usable /target directory. You can chroot to /target and use it
# directly, or use the apt-install and in-target commands to easily install
# packages and run commands in the target system.
d-i preseed/late_command string apt-install bash; in-target chsh -s /bin/bash




Jan 15 14:26:06 syslogd started: BusyBox v1.18.5
Jan 15 14:26:06 kernel: klogd started: BusyBox v1.18.5 (Ubuntu 1:1.18.5-1ubuntu4)
Jan 15 14:26:06 kernel: [ 0.000000] Initializing cgroup subsys cpuset
Jan 15 14:26:06 kernel: [ 0.000000] Initializing cgroup subsys cpu
Jan 15 14:26:06 kernel: [ 0.000000] Linux version 3.2.0-29-generic (buildd@allspice) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #46-Ubuntu SMP Fri Jul 27 17:03:23 UTC 2012 (Ubuntu 3.2.0-29.46-generic 3.2.24)
Jan 15 14:26:06 kernel: [ 0.000000] Command line: /Linux/Ubuntu/12.04/isolinux/linux /Linux/Ubuntu/12.04/isolinux/linux ks=http://10.10.10.3/Kickstart/Ubuntu_base.txt vga=normal initrd=/Linux/Ubuntu/12.04/isolinux/initrd.gz --
Jan 15 14:26:06 kernel: [ 0.000000] KERNEL supported cpus:
Jan 15 14:26:06 kernel: [ 0.000000] Intel GenuineIntel
Jan 15 14:26:06 kernel: [ 0.000000] AMD AuthenticAMD
Jan 15 14:26:06 kernel: [ 0.000000] Centaur CentaurHauls
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-provided physical RAM map:
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-e820: 000000003fff0000 - 0000000040000000 (ACPI data)
Jan 15 14:26:06 kernel: [ 0.000000] BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
Jan 15 14:26:06 kernel: [ 0.000000] NX (Execute Disable) protection: active
Jan 15 14:26:06 kernel: [ 0.000000] DMI 2.5 present.
Jan 15 14:26:06 kernel: [ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
Jan 15 14:26:06 kernel: [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Jan 15 14:26:06 kernel: [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Jan 15 14:26:06 kernel: [ 0.000000] No AGP bridge found
Jan 15 14:26:06 kernel: [ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x400000000
Jan 15 14:26:06 kernel: [ 0.000000] MTRR default type: uncachable
Jan 15 14:26:06 kernel: [ 0.000000] MTRR variable ranges disabled:
Jan 15 14:26:06 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jan 15 14:26:06 kernel: [ 0.000000] CPU MTRRs all blank - virtualized system.
Jan 15 14:26:06 kernel: [ 0.000000] found SMP MP-table at [ffff88000009fff0] 9fff0
Jan 15 14:26:06 kernel: [ 0.000000] initial memory mapped : 0 - 20000000
Jan 15 14:26:06 kernel: [ 0.000000] Base memory trampoline at [ffff88000008b000] 8b000 size 20480
Jan 15 14:26:06 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-000000003fff0000
Jan 15 14:26:06 kernel: [ 0.000000] 0000000000 - 003fe00000 page 2M
Jan 15 14:26:06 kernel: [ 0.000000] 003fe00000 - 003fff0000 page 4k
Jan 15 14:26:06 kernel: [ 0.000000] kernel direct mapping tables up to 3fff0000 @ 1fffd000-20000000
Jan 15 14:26:06 kernel: [ 0.000000] RAMDISK: 3ef41000 - 3fff0000
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: RSDP 00000000000e0000 00024 (v02 VBOX )
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: XSDT 000000003fff0030 0003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: FACP 000000003fff00f0 000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: DSDT 000000003fff0470 01B96 (v01 VBOX VBOXBIOS 00000002 INTL 20100528)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: FACS 000000003fff0200 00040
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: APIC 000000003fff0240 00054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: SSDT 000000003fff02a0 001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Jan 15 14:26:06 kernel: [ 0.000000] No NUMA configuration found
Jan 15 14:26:06 kernel: [ 0.000000] Faking a node at 0000000000000000-000000003fff0000
Jan 15 14:26:06 kernel: [ 0.000000] Initmem setup node 0 0000000000000000-000000003fff0000
Jan 15 14:26:06 kernel: [ 0.000000] NODE_DATA [000000003ef3c000 - 000000003ef40fff]
Jan 15 14:26:06 kernel: [ 0.000000] [ffffea0000000000-ffffea0000ffffff] PMD -> [ffff88003d600000-ffff88003e5fffff] on node 0
Jan 15 14:26:06 kernel: [ 0.000000] Zone PFN ranges:
Jan 15 14:26:06 kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
Jan 15 14:26:06 kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
Jan 15 14:26:06 kernel: [ 0.000000] Normal empty
Jan 15 14:26:06 kernel: [ 0.000000] Movable zone start PFN for each node
Jan 15 14:26:06 kernel: [ 0.000000] early_node_map[2] active PFN ranges
Jan 15 14:26:06 kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
Jan 15 14:26:06 kernel: [ 0.000000] 0: 0x00000100 -> 0x0003fff0
Jan 15 14:26:06 kernel: [ 0.000000] On node 0 totalpages: 262015
Jan 15 14:26:06 kernel: [ 0.000000] DMA zone: 64 pages used for memmap
Jan 15 14:26:06 kernel: [ 0.000000] DMA zone: 20 pages reserved
Jan 15 14:26:06 kernel: [ 0.000000] DMA zone: 3899 pages, LIFO batch:0
Jan 15 14:26:06 kernel: [ 0.000000] DMA32 zone: 4032 pages used for memmap
Jan 15 14:26:06 kernel: [ 0.000000] DMA32 zone: 254000 pages, LIFO batch:31
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
Jan 15 14:26:06 kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: IRQ0 used by override.
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: IRQ2 used by override.
Jan 15 14:26:06 kernel: [ 0.000000] ACPI: IRQ9 used by override.
Jan 15 14:26:06 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Jan 15 14:26:06 kernel: [ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
Jan 15 14:26:06 kernel: [ 0.000000] nr_irqs_gsi: 40
Jan 15 14:26:06 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Jan 15 14:26:06 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
Jan 15 14:26:06 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
Jan 15 14:26:06 kernel: [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bffc0000)
Jan 15 14:26:06 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Jan 15 14:26:06 kernel: [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:1 nr_node_ids:1
Jan 15 14:26:06 kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88003ec00000 s83072 r8192 d23424 u2097152
Jan 15 14:26:06 kernel: [ 0.000000] pcpu-alloc: s83072 r8192 d23424 u2097152 alloc=1*2097152
Jan 15 14:26:06 kernel: [ 0.000000] pcpu-alloc: [0] 0
Jan 15 14:26:06 kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 257899
Jan 15 14:26:06 kernel: [ 0.000000] Policy zone: DMA32
Jan 15 14:26:06 kernel: [ 0.000000] Kernel command line: /Linux/Ubuntu/12.04/isolinux/linux /Linux/Ubuntu/12.04/isolinux/linux ks=http://10.10.10.3/Kickstart/Ubuntu_base.txt vga=normal initrd=/Linux/Ubuntu/12.04/isolinux/initrd.gz --
Jan 15 14:26:06 kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jan 15 14:26:06 kernel: [ 0.000000] Checking aperture...
Jan 15 14:26:06 kernel: [ 0.000000] No AGP bridge found
Jan 15 14:26:06 kernel: [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jan 15 14:26:06 kernel: [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jan 15 14:26:06 kernel: [ 0.000000] Memory: 998596k/1048512k available (6555k kernel code, 452k absent, 49464k reserved, 6645k data, 920k init)
Jan 15 14:26:06 kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Jan 15 14:26:06 kernel: [ 0.000000] Hierarchical RCU implementation.
Jan 15 14:26:06 kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Jan 15 14:26:06 kernel: [ 0.000000] NR_IRQS:16640 nr_irqs:256 16
Jan 15 14:26:06 kernel: [ 0.000000] Console: colour VGA+ 80x25
Jan 15 14:26:06 kernel: [ 0.000000] console [tty0] enabled
Jan 15 14:26:06 kernel: [ 0.000000] allocated 8388608 bytes of page_cgroup
Jan 15 14:26:06 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jan 15 14:26:06 kernel: [ 0.000000] Fast TSC calibration failed
Jan 15 14:26:06 kernel: [ 0.000000] TSC: Unable to calibrate against PIT
Jan 15 14:26:06 kernel: [ 0.000000] TSC: using PMTIMER reference calibration
Jan 15 14:26:06 kernel: [ 0.000000] Detected 2306.981 MHz processor.
Jan 15 14:26:06 kernel: [ 0.016007] Calibrating delay loop (skipped), value calculated using timer frequency.. 4613.96 BogoMIPS (lpj=9227924)
Jan 15 14:26:06 kernel: [ 0.017000] pid_max: default: 32768 minimum: 301
Jan 15 14:26:06 kernel: [ 0.017470] Security Framework initialized
Jan 15 14:26:06 kernel: [ 0.018003] AppArmor: AppArmor initialized
Jan 15 14:26:06 kernel: [ 0.018494] Yama: becoming mindful.
Jan 15 14:26:06 kernel: [ 0.020138] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Jan 15 14:26:06 kernel: [ 0.020908] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Jan 15 14:26:06 kernel: [ 0.021587] Mount-cache hash table entries: 256
Jan 15 14:26:06 kernel: [ 0.022179] Initializing cgroup subsys cpuacct
Jan 15 14:26:06 kernel: [ 0.022672] Initializing cgroup subsys memory
Jan 15 14:26:06 kernel: [ 0.023154] Initializing cgroup subsys devices
Jan 15 14:26:06 kernel: [ 0.024001] Initializing cgroup subsys freezer
Jan 15 14:26:06 kernel: [ 0.024311] Initializing cgroup subsys blkio
Jan 15 14:26:06 kernel: [ 0.024884] Initializing cgroup subsys perf_event
Jan 15 14:26:06 kernel: [ 0.025655] mce: CPU supports 0 MCE banks
Jan 15 14:26:06 kernel: [ 0.026332] using mwait in idle threads.
Jan 15 14:26:06 kernel: [ 0.027117] SMP alternatives: switching to UP code
Jan 15 14:26:06 kernel: [ 0.072782] Freeing SMP alternatives: 24k freed
Jan 15 14:26:06 kernel: [ 0.073819] ACPI: Core revision 20110623
Jan 15 14:26:06 kernel: [ 0.075780] ftrace: allocating 26998 entries in 106 pages
Jan 15 14:26:06 kernel: [ 0.084475] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 15 14:26:06 kernel: [ 0.128803] CPU0: Intel(R) Core(TM) i5 CPU M 520 @ 2.40GHz stepping 02
Jan 15 14:26:06 kernel: [ 0.132007] Performance Events: unsupported p6 CPU model 37 no PMU driver, software events only.
Jan 15 14:26:06 kernel: [ 0.132007] NMI watchdog disabled (cpu0): hardware events not enabled
Jan 15 14:26:06 kernel: [ 0.132007] Brought up 1 CPUs
Jan 15 14:26:06 kernel: [ 0.132007] Total of 1 processors activated (4613.96 BogoMIPS).
Jan 15 14:26:06 kernel: [ 0.132007] devtmpfs: initialized
Jan 15 14:26:06 kernel: [ 0.132007] EVM: security.selinux
Jan 15 14:26:06 kernel: [ 0.132165] EVM: security.SMACK64
Jan 15 14:26:06 kernel: [ 0.132571] EVM: security.capability
Jan 15 14:26:06 kernel: [ 0.133882] print_constraints: dummy:
Jan 15 14:26:06 kernel: [ 0.134383] RTC time: 14:26:04, date: 01/15/13
Jan 15 14:26:06 kernel: [ 0.134903] NET: Registered protocol family 16
Jan 15 14:26:06 kernel: [ 0.135496] ACPI: bus type pci registered
Jan 15 14:26:06 kernel: [ 0.136127] PCI: Using configuration type 1 for base access
Jan 15 14:26:06 kernel: [ 0.137470] bio: create slab <bio-0> at 0
Jan 15 14:26:06 kernel: [ 0.138126] ACPI: Added _OSI(Module Device)
Jan 15 14:26:06 kernel: [ 0.138596] ACPI: Added _OSI(Processor Device)
Jan 15 14:26:06 kernel: [ 0.139069] ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 15 14:26:06 kernel: [ 0.139563] ACPI: Added _OSI(Processor Aggregator Device)
Jan 15 14:26:06 kernel: [ 0.140441] ACPI: EC: Look up EC in DSDT
Jan 15 14:26:06 kernel: [ 0.140737] ACPI: Executed 1 blocks of module-level executable AML code
Jan 15 14:26:06 kernel: [ 0.144450] ACPI: Interpreter enabled
Jan 15 14:26:06 kernel: [ 0.144933] ACPI: (supports S0 S5)
Jan 15 14:26:06 kernel: [ 0.145574] ACPI: Using IOAPIC for interrupt routing
Jan 15 14:26:06 kernel: [ 0.147989] ACPI: No dock devices found.
Jan 15 14:26:06 kernel: [ 0.148008] HEST: Table not found.
Jan 15 14:26:06 kernel: [ 0.148008] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
Jan 15 14:26:06 kernel: [ 0.148367] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jan 15 14:26:06 kernel: [ 0.149354] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Jan 15 14:26:06 kernel: [ 0.149382] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
Jan 15 14:26:06 kernel: [ 0.149407] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Jan 15 14:26:06 kernel: [ 0.149432] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xffdfffff] (ignored)
Jan 15 14:26:06 kernel: [ 0.149572] pci 0000:00:00.0: [8086:1237] type 0 class 0x000600
Jan 15 14:26:06 kernel: [ 0.150002] pci 0000:00:01.0: [8086:7000] type 0 class 0x000601
Jan 15 14:26:06 kernel: [ 0.152455] pci 0000:00:01.1: [8086:7111] type 0 class 0x000101
Jan 15 14:26:06 kernel: [ 0.152936] pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f]
Jan 15 14:26:06 kernel: [ 0.153303] pci 0000:00:02.0: [80ee:beef] type 0 class 0x000300
Jan 15 14:26:06 kernel: [ 0.155225] pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe1ffffff pref]
Jan 15 14:26:06 kernel: [ 0.165498] pci 0000:00:03.0: [8086:100e] type 0 class 0x000200
Jan 15 14:26:06 kernel: [ 0.166749] pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff]
Jan 15 14:26:06 kernel: [ 0.169595] pci 0000:00:03.0: reg 18: [io 0xd010-0xd017]
Jan 15 14:26:06 kernel: [ 0.176553] pci 0000:00:04.0: [80ee:cafe] type 0 class 0x000880
Jan 15 14:26:06 kernel: [ 0.177727] pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f]
Jan 15 14:26:06 kernel: [ 0.178971] pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff]
Jan 15 14:26:06 kernel: [ 0.180133] pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref]
Jan 15 14:26:06 kernel: [ 0.184373] pci 0000:00:05.0: [8086:2668] type 0 class 0x000403
Jan 15 14:26:06 kernel: [ 0.185843] pci 0000:00:05.0: reg 10: [mem 0xf0804000-0xf0807fff]
Jan 15 14:26:06 kernel: [ 0.192634] pci 0000:00:06.0: [106b:003f] type 0 class 0x000c03
Jan 15 14:26:06 kernel: [ 0.193844] pci 0000:00:06.0: reg 10: [mem 0xf0808000-0xf0808fff]
Jan 15 14:26:06 kernel: [ 0.201653] pci 0000:00:07.0: [8086:7113] type 0 class 0x000680
Jan 15 14:26:06 kernel: [ 0.202543] pci 0000:00:0b.0: [8086:265c] type 0 class 0x000c03
Jan 15 14:26:06 kernel: [ 0.203830] pci 0000:00:0b.0: reg 10: [mem 0xf0809000-0xf0809fff]
Jan 15 14:26:06 kernel: [ 0.210744] pci 0000:00:0d.0: [8086:2829] type 0 class 0x000106
Jan 15 14:26:06 kernel: [ 0.212140] pci 0000:00:0d.0: reg 10: [io 0xd040-0xd047]
Jan 15 14:26:06 kernel: [ 0.214428] pci 0000:00:0d.0: reg 18: [io 0xd050-0xd057]
Jan 15 14:26:06 kernel: [ 0.216548] pci 0000:00:0d.0: reg 20: [io 0xd060-0xd06f]
Jan 15 14:26:06 kernel: [ 0.218074] pci 0000:00:0d.0: reg 24: [mem 0xf080a000-0xf080bfff]
Jan 15 14:26:06 kernel: [ 0.220569] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Jan 15 14:26:06 kernel: [ 0.221384] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
Jan 15 14:26:06 kernel: [ 0.227254] ACPI: PCI Interrupt Link [LNKA] (IRQs *5 9 10 11)
Jan 15 14:26:06 kernel: [ 0.228013] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
Jan 15 14:26:06 kernel: [ 0.228762] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
Jan 15 14:26:06 kernel: [ 0.229982] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
Jan 15 14:26:06 kernel: [ 0.231355] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks= none
Jan 15 14:26:06 kernel: [ 0.232013] vgaarb: loaded
Jan 15 14:26:06 kernel: [ 0.232057] vgaarb: bridge control possible 0000:00:02.0
Jan 15 14:26:06 kernel: [ 0.232909] i2c-core: driver [aat2870] using legacy suspend method
Jan 15 14:26:06 kernel: [ 0.233652] i2c-core: driver [aat2870] using legacy resume method
Jan 15 14:26:06 kernel: [ 0.236014] SCSI subsystem initialized
Jan 15 14:26:06 kernel: [ 0.236619] libata version 3.00 loaded.
Jan 15 14:26:06 kernel: [ 0.236704] usbcore: registered new interface driver usbfs
Jan 15 14:26:06 kernel: [ 0.237203] usbcore: registered new interface driver hub
Jan 15 14:26:06 kernel: [ 0.237743] usbcore: registered new device driver usb
Jan 15 14:26:06 kernel: [ 0.238411] PCI: Using ACPI for IRQ routing
Jan 15 14:26:06 kernel: [ 0.238935] PCI: pci_cache_line_size set to 64 bytes
Jan 15 14:26:06 kernel: [ 0.239167] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
Jan 15 14:26:06 kernel: [ 0.239175] reserve RAM buffer: 000000003fff0000 - 000000003fffffff
Jan 15 14:26:06 kernel: [ 0.239297] NetLabel: Initializing
Jan 15 14:26:06 kernel: [ 0.239749] NetLabel: domain hash size = 128
Jan 15 14:26:06 kernel: [ 0.240129] NetLabel: protocols = UNLABELED CIPSOv4
Jan 15 14:26:06 kernel: [ 0.240701] NetLabel: unlabeled traffic allowed by default
Jan 15 14:26:06 kernel: [ 0.248811] AppArmor: AppArmor Filesystem Enabled
Jan 15 14:26:06 kernel: [ 0.249355] pnp: PnP ACPI init
Jan 15 14:26:06 kernel: [ 0.249830] ACPI: bus type pnp registered
Jan 15 14:26:06 kernel: [ 0.250982] pnp 00:00: [bus 00-ff]
Jan 15 14:26:06 kernel: [ 0.250985] pnp 00:00: [io 0x0cf8-0x0cff]
Jan 15 14:26:06 kernel: [ 0.250987] pnp 00:00: [io 0x0000-0x0cf7 window]
Jan 15 14:26:06 kernel: [ 0.250989] pnp 00:00: [io 0x0d00-0xffff window]
Jan 15 14:26:06 kernel: [ 0.250994] pnp 00:00: [mem 0x000a0000-0x000bffff window]
Jan 15 14:26:06 kernel: [ 0.250996] pnp 00:00: [mem 0x40000000-0xffdfffff window]
Jan 15 14:26:06 kernel: [ 0.251036] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Jan 15 14:26:06 kernel: [ 0.251053] pnp 00:01: [io 0x0060]
Jan 15 14:26:06 kernel: [ 0.251054] pnp 00:01: [io 0x0064]
Jan 15 14:26:06 kernel: [ 0.251094] pnp 00:01: [irq 1]
Jan 15 14:26:06 kernel: [ 0.251116] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
Jan 15 14:26:06 kernel: [ 0.251124] pnp 00:02: [io 0x0000-0x000f]
Jan 15 14:26:06 kernel: [ 0.251126] pnp 00:02: [io 0x0080-0x008f]
Jan 15 14:26:06 kernel: [ 0.251127] pnp 00:02: [io 0x00c0-0x00df]
Jan 15 14:26:06 kernel: [ 0.251129] pnp 00:02: [dma 4]
Jan 15 14:26:06 kernel: [ 0.251146] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Jan 15 14:26:06 kernel: [ 0.251221] pnp 00:03: [irq 12]
Jan 15 14:26:06 kernel: [ 0.251253] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 (active)
Jan 15 14:26:06 kernel: [ 0.251275] pnp 00:04: [io 0x0378-0x037f]
Jan 15 14:26:06 kernel: [ 0.251278] pnp 00:04: [io 0x0778-0x077f]
Jan 15 14:26:06 kernel: [ 0.251308] pnp 00:04: [irq 7]
Jan 15 14:26:06 kernel: [ 0.251337] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
Jan 15 14:26:06 kernel: [ 0.252474] pnp: PnP ACPI: found 5 devices
Jan 15 14:26:06 kernel: [ 0.252998] ACPI: ACPI bus type pnp unregistered
Jan 15 14:26:06 kernel: [ 0.260037] Switching to clocksource acpi_pm
Jan 15 14:26:06 kernel: [ 0.260850] PCI: max bus depth: 0 pci_try_num: 1
Jan 15 14:26:06 kernel: [ 0.260867] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Jan 15 14:26:06 kernel: [ 0.260873] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
Jan 15 14:26:06 kernel: [ 0.260968] NET: Registered protocol family 2
Jan 15 14:26:06 kernel: [ 0.261787] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
Jan 15 14:26:06 kernel: [ 0.262907] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
Jan 15 14:26:06 kernel: [ 0.264293] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jan 15 14:26:06 kernel: [ 0.265143] TCP: Hash tables configured (established 131072 bind 65536)
Jan 15 14:26:06 kernel: [ 0.265784] TCP reno registered
Jan 15 14:26:06 kernel: [ 0.266296] UDP hash table entries: 512 (order: 2, 16384 bytes)
Jan 15 14:26:06 kernel: [ 0.266906] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Jan 15 14:26:06 kernel: [ 0.267740] NET: Registered protocol family 1
Jan 15 14:26:06 kernel: [ 0.270308] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Jan 15 14:26:06 kernel: [ 0.270888] pci 0000:00:01.0: Activating ISA DMA hang workarounds
Jan 15 14:26:06 kernel: [ 0.271484] pci 0000:00:02.0: Boot video device
Jan 15 14:26:06 kernel: [ 0.271582] pci 0000:00:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
Jan 15 14:26:06 kernel: [ 0.328849] pci 0000:00:06.0: PCI INT A disabled
Jan 15 14:26:06 kernel: [ 0.329681] pci 0000:00:0b.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Jan 15 14:26:06 kernel: [ 0.330351] pci 0000:00:0b.0: PCI INT A disabled
Jan 15 14:26:06 kernel: [ 0.331077] PCI: CLS 64 bytes, default 64
Jan 15 14:26:06 kernel: [ 0.331261] platform rtc_cmos: registered platform RTC device (no PNP device found)
Jan 15 14:26:06 kernel: [ 0.332372] audit: initializing netlink socket (disabled)
Jan 15 14:26:06 kernel: [ 0.332586] type=2000 audit(1358259964.328:1): initialized
Jan 15 14:26:06 kernel: [ 0.352983] Trying to unpack rootfs image as initramfs...
Jan 15 14:26:06 kernel: [ 0.385492] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jan 15 14:26:06 kernel: [ 0.405469] VFS: Disk quotas dquot_6.5.2
Jan 15 14:26:06 kernel: [ 0.405990] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 15 14:26:06 kernel: [ 0.406966] fuse init (API version 7.17)
Jan 15 14:26:06 kernel: [ 0.407504] msgmni has been set to 1950
Jan 15 14:26:06 kernel: [ 0.420353] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Jan 15 14:26:06 kernel: [ 0.425515] io scheduler noop registered
Jan 15 14:26:06 kernel: [ 0.425991] io scheduler deadline registered
Jan 15 14:26:06 kernel: [ 0.426524] io scheduler cfq registered (default)
Jan 15 14:26:06 kernel: [ 0.427782] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jan 15 14:26:06 kernel: [ 0.428335] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jan 15 14:26:06 kernel: [ 0.428335] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
Jan 15 14:26:06 kernel: [ 0.429195] ACPI: AC Adapter [AC] (on-line)
Jan 15 14:26:06 kernel: [ 0.429913] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Jan 15 14:26:06 kernel: [ 0.430723] ACPI: Power Button [PWRF]
Jan 15 14:26:06 kernel: [ 0.431284] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
Jan 15 14:26:06 kernel: [ 0.432100] ACPI: Sleep Button [SLPF]
Jan 15 14:26:06 kernel: [ 0.437870] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
Jan 15 14:26:06 kernel: [ 0.438859] ACPI: Battery Slot [BAT0] (battery present)
Jan 15 14:26:06 kernel: [ 0.439436] ERST: Table is not found!
Jan 15 14:26:06 kernel: [ 0.439881] GHES: HEST is not enabled!
Jan 15 14:26:06 kernel: [ 0.444338] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jan 15 14:26:06 kernel: [ 0.445822] ACPI: Battery Slot [BAT0] (battery present)
Jan 15 14:26:06 kernel: [ 0.447446] Linux agpgart interface v0.103
Jan 15 14:26:06 kernel: [ 0.452501] brd: module loaded
Jan 15 14:26:06 kernel: [ 0.453597] loop: module loaded
Jan 15 14:26:06 kernel: [ 0.454188] ahci 0000:00:0d.0: version 3.0
Jan 15 14:26:06 kernel: [ 0.454309] ahci 0000:00:0d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
Jan 15 14:26:06 kernel: [ 0.454966] ahci: SSS flag set, parallel bus scan disabled
Jan 15 14:26:06 kernel: [ 0.455754] ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
Jan 15 14:26:06 kernel: [ 0.457642] ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
Jan 15 14:26:06 kernel: [ 0.464075] scsi0 : ahci
Jan 15 14:26:06 kernel: [ 0.464603] ata1: SATA max UDMA/133 abar m8192@0xf080a000 port 0xf080a100 irq 21
Jan 15 14:26:06 kernel: [ 0.465516] ata_piix 0000:00:01.1: version 2.13
Jan 15 14:26:06 kernel: [ 0.466062] scsi1 : ata_piix
Jan 15 14:26:06 kernel: [ 0.472318] scsi2 : ata_piix
Jan 15 14:26:06 kernel: [ 0.472850] ata2: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
Jan 15 14:26:06 kernel: [ 0.473445] ata3: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
Jan 15 14:26:06 kernel: [ 0.474443] Fixed MDIO Bus: probed
Jan 15 14:26:06 kernel: [ 0.474932] tun: Universal TUN/TAP device driver, 1.6
Jan 15 14:26:06 kernel: [ 0.475458] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jan 15 14:26:06 kernel: [ 0.476502] PPP generic driver version 2.4.2
Jan 15 14:26:06 kernel: [ 0.477922] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 15 14:26:06 kernel: [ 0.478630] ehci_hcd 0000:00:0b.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Jan 15 14:26:06 kernel: [ 0.479246] ehci_hcd 0000:00:0b.0: EHCI Host Controller
Jan 15 14:26:06 kernel: [ 0.479808] ehci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 1
Jan 15 14:26:06 kernel: [ 0.480906] ehci_hcd 0000:00:0b.0: irq 19, io mem 0xf0809000
Jan 15 14:26:06 kernel: [ 0.492609] ehci_hcd 0000:00:0b.0: USB 2.0 started, EHCI 1.00
Jan 15 14:26:06 kernel: [ 0.493555] hub 1-0:1.0: USB hub found
Jan 15 14:26:06 kernel: [ 0.494066] hub 1-0:1.0: 8 ports detected
Jan 15 14:26:06 kernel: [ 0.494775] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 15 14:26:06 kernel: [ 0.495386] ohci_hcd 0000:00:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
Jan 15 14:26:06 kernel: [ 0.495950] ohci_hcd 0000:00:06.0: OHCI Host Controller
Jan 15 14:26:06 kernel: [ 0.500331] ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 2
Jan 15 14:26:06 kernel: [ 0.501608] ohci_hcd 0000:00:06.0: irq 22, io mem 0xf0808000
Jan 15 14:26:06 kernel: [ 0.556655] hub 2-0:1.0: USB hub found
Jan 15 14:26:06 kernel: [ 0.557156] hub 2-0:1.0: 8 ports detected
Jan 15 14:26:06 kernel: [ 0.558619] uhci_hcd: USB Universal Host Controller Interface driver
Jan 15 14:26:06 kernel: [ 0.559266] usbcore: registered new interface driver libusual
Jan 15 14:26:06 kernel: [ 0.559860] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
Jan 15 14:26:06 kernel: [ 1.120316] ata3.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
Jan 15 14:26:06 kernel: [ 1.121344] ata3.00: configured for UDMA/33
Jan 15 14:26:06 kernel: [ 1.228235] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jan 15 14:26:06 kernel: [ 1.228960] ata1.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
Jan 15 14:26:06 kernel: [ 1.229550] ata1.00: 67108864 sectors, multi 128: LBA48 NCQ (depth 31/32)
Jan 15 14:26:06 kernel: [ 1.230404] ata1.00: configured for UDMA/133
Jan 15 14:26:06 kernel: [ 1.231199] scsi 0:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
Jan 15 14:26:06 kernel: [ 1.232736] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jan 15 14:26:06 kernel: [ 1.234296] scsi 2:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
Jan 15 14:26:06 kernel: [ 1.235869] sr0: scsi3-mmc drive: 32x/32x xa/form2 tray
Jan 15 14:26:06 kernel: [ 1.236063] cdrom: Uniform CD-ROM driver Revision: 3.20
Jan 15 14:26:06 kernel: [ 1.237709] sd 0:0:0:0: [sda] 67108864 512-byte logical blocks: (34.3 GB/32.0 GiB)
Jan 15 14:26:06 kernel: [ 1.240210] sr 2:0:0:0: Attached scsi CD-ROM sr0
Jan 15 14:26:06 kernel: [ 1.240451] sr 2:0:0:0: Attached scsi generic sg1 type 5
Jan 15 14:26:06 kernel: [ 1.241096] sd 0:0:0:0: [sda] Write Protect is off
Jan 15 14:26:06 kernel: [ 1.241607] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jan 15 14:26:06 kernel: [ 1.241639] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 15 14:26:06 kernel: [ 1.252321] sda: sda1 sda2 < sda5 >
Jan 15 14:26:06 kernel: [ 1.253628] sd 0:0:0:0: [sda] Attached SCSI disk
Jan 15 14:26:06 kernel: [ 1.302707] Freeing initrd memory: 17084k freed
Jan 15 14:26:06 kernel: [ 1.307736] serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 15 14:26:06 kernel: [ 1.308104] serio: i8042 AUX port at 0x60,0x64 irq 12
Jan 15 14:26:06 kernel: [ 1.308104] mousedev: PS/2 mouse device common for all mice
Jan 15 14:26:06 kernel: [ 1.310975] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Jan 15 14:26:06 kernel: [ 1.312249] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
Jan 15 14:26:06 kernel: [ 1.312926] rtc0: alarms up to one day, 114 bytes nvram
Jan 15 14:26:06 kernel: [ 1.313530] device-mapper: uevent: version 1.0.3
Jan 15 14:26:06 kernel: [ 1.314119] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
Jan 15 14:26:06 kernel: [ 1.315082] cpuidle: using governor ladder
Jan 15 14:26:06 kernel: [ 1.315574] cpuidle: using governor menu
Jan 15 14:26:06 kernel: [ 1.316057] EFI Variables Facility v0.08 2004-May-17
Jan 15 14:26:06 kernel: [ 1.316621] TCP cubic registered
Jan 15 14:26:06 kernel: [ 1.317336] NET: Registered protocol family 10
Jan 15 14:26:06 kernel: [ 1.318242] NET: Registered protocol family 17
Jan 15 14:26:06 kernel: [ 1.318753] Registering the dns_resolver key type
Jan 15 14:26:06 kernel: [ 1.319413] PM: Hibernation image not present or could not be loaded.
Jan 15 14:26:06 kernel: [ 1.319428] registered taskstats version 1
Jan 15 14:26:06 kernel: [ 1.342539] Magic number: 13:952:434
Jan 15 14:26:06 kernel: [ 1.343183] rtc_cmos rtc_cmos: setting system clock to 2013-01-15 14:26:05 UTC (1358259965)
Jan 15 14:26:06 kernel: [ 1.345060] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jan 15 14:26:06 kernel: [ 1.345604] EDD information not available.
Jan 15 14:26:06 kernel: [ 1.347528] Freeing unused kernel memory: 920k freed
Jan 15 14:26:06 kernel: [ 1.348235] Write protecting the kernel read-only data: 12288k
Jan 15 14:26:06 kernel: [ 1.353655] Freeing unused kernel memory: 1616k freed
Jan 15 14:26:06 kernel: [ 1.354936] Refined TSC clocksource calibration: 2309.051 MHz.
Jan 15 14:26:06 kernel: [ 1.355515] Switching to clocksource tsc
Jan 15 14:26:06 kernel: [ 1.359444] Freeing unused kernel memory: 1200k freed
Jan 15 14:26:06 kernel: 0>[ 1.369074] udevd[70]: starting version 175
Jan 15 14:26:06 kernel: [ 1.425025] usb 2-1: new full-speed USB device number 2 using ohci_hcd
Jan 15 14:26:06 kernel: [ 1.475642] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
Jan 15 14:26:06 kernel: [ 1.476043] e1000: Copyright (c) 1999-2006 Intel Corporation.
Jan 15 14:26:06 kernel: [ 1.477142] e1000 0000:00:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Jan 15 14:26:06 kernel: [ 2.084640] e1000 0000:00:03.0: eth0: (PCI:33MHz:32-bit) 08:00:27:70:31:48
Jan 15 14:26:06 kernel: [ 2.085316] e1000 0000:00:03.0: eth0: Intel(R) PRO/1000 Network Connection
Jan 15 14:26:06 kernel: [ 2.115049] input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb2/2-1/2-1:1.0/input/input3
Jan 15 14:26:06 kernel: [ 2.116971] generic-usb 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
Jan 15 14:26:06 kernel: [ 2.118889] usbcore: registered new interface driver usbhid
Jan 15 14:26:06 kernel: [ 2.119512] usbhid: USB HID core driver
Jan 15 14:26:06 kernel: [ 2.578071] vga16fb: initializing
Jan 15 14:26:07 kernel: [ 2.578074] vga16fb: mapped to 0xffff8800000a0000
Jan 15 14:26:07 kernel: [ 3.151820] Console: switching to colour frame buffer device 80x30
Jan 15 14:26:07 kernel: [ 3.315104] fb0: VGA16 VGA frame buffer device
Jan 15 14:26:07 init: starting pid 321, tty '': '/sbin/reopen-console /sbin/debian-installer'
Jan 15 14:26:07 init: starting pid 325, tty '/dev/tty4': '/usr/bin/tail -f /var/log/syslog'
Jan 15 14:26:08 net/hw-detect.hotplug: Detected hotpluggable network interface eth0
Jan 15 14:26:08 net/hw-detect.hotplug: Detected hotpluggable network interface lo
Jan 15 14:26:08 hw-detect: Detected module 'usb-storage' for 'USB storage'
Jan 15 14:26:08 hw-detect: WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.
Jan 15 14:26:08 hw-detect: insmod /lib/modules/3.2.0-29-generic/kernel/drivers/usb/storage/usb-storage.ko
Jan 15 14:26:08 kernel: [ 4.548015] Initializing USB Mass Storage driver...
Jan 15 14:26:08 kernel: [ 4.548360] usbcore: registered new interface driver usb-storage
Jan 15 14:26:08 kernel: [ 4.548365] USB Mass Storage support registered.
Jan 15 14:26:08 apt-install: Queueing package udev for later installation
Jan 15 14:26:08 apt-install: Queueing package pciutils for later installation
Jan 15 14:26:08 apt-install: Queueing package usbutils for later installation
Jan 15 14:26:09 apt-install: Queueing package eject for later installation
Jan 15 14:26:10 check-missing-firmware: /dev/.udev/firmware-missing does not exist, skipping
Jan 15 14:26:10 check-missing-firmware: /run/udev/firmware-missing does not exist, skipping
Jan 15 14:26:10 check-missing-firmware: no missing firmware in /dev/.udev/firmware-missing /run/udev/firmware-missing
Jan 15 14:26:10 kernel: [ 6.020126] ADDRCONF(NETDEV_UP): eth0: link is not ready
Jan 15 14:26:10 kernel: [ 6.020717] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
Jan 15 14:26:10 kernel: [ 6.021181] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jan 15 14:26:11 check-missing-firmware: /dev/.udev/firmware-missing does not exist, skipping
Jan 15 14:26:11 check-missing-firmware: /run/udev/firmware-missing does not exist, skipping
Jan 15 14:26:11 check-missing-firmware: no missing firmware in /dev/.udev/firmware-missing /run/udev/firmware-missing
Jan 15 14:26:11 netcfg[1134]: INFO: Starting netcfg v.1.68ubuntu14 (built 20120309-1721)
Jan 15 14:26:11 netcfg[1134]: WARNING **: Couldn't read Wpasupplicant pid file, not trying to kill.
Jan 15 14:26:11 netcfg[1134]: DEBUG: Flushing addresses and routes on interface: eth0
Jan 15 14:26:11 netcfg[1134]: INFO: Could not find valid BOOTIF= entry in /proc/cmdline
Jan 15 14:26:11 netcfg[1134]: DEBUG: State is now 0
Jan 15 14:26:11 netcfg[1134]: DEBUG: Want link on eth0
Jan 15 14:26:11 kernel: [ 7.130254] ADDRCONF(NETDEV_UP): eth0: link is not ready
Jan 15 14:26:11 kernel: [ 7.355382] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
Jan 15 14:26:11 kernel: [ 7.355860] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jan 15 14:26:11 netcfg[1134]: INFO: ethtool-lite: eth0 is connected.
Jan 15 14:26:11 netcfg[1134]: DEBUG: Commencing network autoconfiguration on eth0
Jan 15 14:26:11 netcfg[1134]: DEBUG: rdnssd started; PID: 1158
Jan 15 14:26:12 netcfg[1134]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:12 netcfg[1134]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:12 netcfg[1134]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:12 netcfg[1134]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:12 netcfg[1134]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:12 netcfg[1134]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link
Jan 15 14:26:12 netcfg[1134]: DEBUG: Configured address found
Jan 15 14:26:12 netcfg[1134]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:12 netcfg[1134]: DEBUG: Running rdisc6 -1 -r 1 -w 500 -n eth0 to get IPv6 config flags
Jan 15 14:26:13 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:13 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:13 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:13 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:14 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:15 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:16 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:17 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:18 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:19 netcfg[1134]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:19 netcfg[1134]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:19 netcfg[1134]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:19 netcfg[1134]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:19 netcfg[1134]: DEBUG: Stopping rdnssd, PID 1158
Jan 15 14:26:19 netcfg[1134]: DEBUG: No RA received; attempting IPv4 autoconfig
Jan 15 14:26:19 netcfg[1134]: WARNING **: Started DHCP client; PID is 1190
Jan 15 14:26:20 dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 1
Jan 15 14:26:20 dhclient: DHCPREQUEST of 10.10.10.178 on eth0 to 255.255.255.255 port 67
Jan 15 14:26:20 dhclient: DHCPOFFER of 10.10.10.178 from 10.10.10.10
Jan 15 14:26:20 dhclient: DHCPACK of 10.10.10.178 from 10.10.10.10
Jan 15 14:26:20 dhclient: bound to 10.10.10.178 -- renewal in 32990 seconds.
Jan 15 14:26:21 kernel: [ 17.784424] eth0: no IPv6 routers present
Jan 15 14:26:23 netcfg[1134]: DEBUG: Reading domain name returned via DHCP
Jan 15 14:26:23 netcfg[1134]: DEBUG: DHCP domain name is 'archergroup.local'
Jan 15 14:26:23 netcfg[1134]: DEBUG: Reading nameservers from /etc/resolv.conf
Jan 15 14:26:23 netcfg[1134]: DEBUG: Read nameserver 10.10.10.10
Jan 15 14:26:23 netcfg[1134]: DEBUG: Read nameserver 10.10.10.11
Jan 15 14:26:23 netcfg[1134]: DEBUG: State is now 1
Jan 15 14:26:23 netcfg[1134]: DEBUG: State is now 2
Jan 15 14:26:23 netcfg[1134]: DEBUG: State is now 5
Jan 15 14:26:23 netcfg[1134]: DEBUG: Using DNS to try and obtain default hostname
Jan 15 14:26:23 netcfg[1134]: DEBUG: Getting default hostname from rDNS lookup of autoconfigured address 10.10.10.178
Jan 15 14:26:23 netcfg[1134]: DEBUG: getnameinfo() returned -2: errno 2 (No such file or directory)
Jan 15 14:26:23 netcfg[1134]: DEBUG: Getting default hostname from rDNS lookup of autoconfigured address fe80::a00:27ff:fe70:3148
Jan 15 14:26:23 netcfg[1134]: DEBUG: getnameinfo() returned -2: errno 2 (No such file or directory)
Jan 15 14:26:23 netcfg[1134]: DEBUG: State is now 6
Jan 15 14:26:23 netcfg[1134]: DEBUG: Network config complete
Jan 15 14:26:23 netcfg[1134]: DEBUG: No interface given; clearing /etc/network/interfaces
Jan 15 14:26:23 netcfg[1134]: DEBUG: Writing informative header
Jan 15 14:26:23 netcfg[1134]: DEBUG: Success!
Jan 15 14:26:23 netcfg[1134]: DEBUG: Writing loopback interface
Jan 15 14:26:23 netcfg[1134]: DEBUG: Success!
Jan 15 14:26:23 netcfg[1134]: DEBUG: Writing DHCP stanza for eth0
Jan 15 14:26:23 netcfg[1134]: DEBUG: Success!
Jan 15 14:26:24 kickseed: Downloading kickstart file from http://10.10.10.3/Kickstart/Ubuntu_base.txt
Jan 15 14:26:24 kickseed: Reading kickstart file from /var/spool/kickseed/fetch/http/10.10.10.3/Kickstart/Ubuntu_base.txt
Jan 15 14:26:25 kickseed: can't clear multiple drives; assuming just the first one
Jan 15 14:26:25 frontend: Setting debconf/priority to critical
Jan 15 14:26:25 preseed: successfully loaded preseed file from /var/spool/kickseed/parse/preseed.cfg
Jan 15 14:26:26 debconf: Setting debconf/language to en
Jan 15 14:26:26 main-menu[2580]: DEBUG: resolver (libc6-udeb): package doesn't exist (ignored)
Jan 15 14:26:26 main-menu[2580]: DEBUG: resolver (libnewt0.52): package doesn't exist (ignored)
Jan 15 14:26:26 main-menu[2580]: INFO: Menu item 'localechooser' selected
Jan 15 14:26:26 localechooser: info: debian-installer/locale preseeded to 'en_US' (seen: true)
Jan 15 14:26:26 localechooser: info: Set localechooser/languagelist = 'en'
Jan 15 14:26:26 localechooser: info: Set debian-installer/country = 'US'
Jan 15 14:26:26 debconf: Setting debconf/language to en
Jan 15 14:26:26 debconf: Setting debconf/language to
Jan 15 14:26:26 localechooser: info: Set debian-installer/country = 'US'
Jan 15 14:26:26 localechooser: info: Set debian-installer/locale = 'en_US.UTF-8'
Jan 15 14:26:26 localechooser: info: System locale (debian-installer/locale) = 'en_US.UTF-8'
Jan 15 14:26:26 localechooser: info: Set debian-installer/language = 'en_US:'
Jan 15 14:26:26 debconf: Setting debconf/language to en_US:
Jan 15 14:26:26 main-menu[2580]: DEBUG: resolver (libc6-udeb): package doesn't exist (ignored)
Jan 15 14:26:26 main-menu[2580]: DEBUG: resolver (libnewt0.52): package doesn't exist (ignored)
Jan 15 14:26:26 main-menu[2580]: INFO: Menu item 'console-setup-udeb' selected
Jan 15 14:26:26 main-menu[2580]: INFO: Falling back to the package description for console-setup-pc-ekmap
Jan 15 14:26:26 main-menu[2580]: INFO: Falling back to the package description for console-setup-pc-ekmap
Jan 15 14:26:27 main-menu[2580]: DEBUG: resolver (libc6-udeb): package doesn't exist (ignored)
Jan 15 14:26:27 main-menu[2580]: DEBUG: resolver (libnewt0.52): package doesn't exist (ignored)
Jan 15 14:26:27 main-menu[2580]: INFO: Menu item 'netcfg' selected
Jan 15 14:26:27 main-menu[2580]: INFO: Falling back to the package description for crypto-modules-3.2.0-29-generic-di
Jan 15 14:26:27 main-menu[2580]: INFO: Falling back to the package description for crypto-modules-3.2.0-29-generic-di
Jan 15 14:26:27 netcfg[3657]: INFO: Starting netcfg v.1.68ubuntu14 (built 20120309-1721)
Jan 15 14:26:27 netcfg[3657]: WARNING **: Couldn't read Wpasupplicant pid file, not trying to kill.
Jan 15 14:26:27 netcfg[3657]: DEBUG: Flushing addresses and routes on interface: eth0
Jan 15 14:26:27 netcfg[3657]: INFO: Could not find valid BOOTIF= entry in /proc/cmdline
Jan 15 14:26:27 netcfg[3657]: DEBUG: State is now 0
Jan 15 14:26:27 kernel: [ 23.664585] ADDRCONF(NETDEV_UP): eth0: link is not ready
Jan 15 14:26:27 netcfg[3657]: DEBUG: Want link on eth0
Jan 15 14:26:27 kernel: [ 23.666094] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
Jan 15 14:26:27 kernel: [ 23.666629] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jan 15 14:26:28 netcfg[3657]: INFO: ethtool-lite: eth0 is connected.
Jan 15 14:26:28 netcfg[3657]: DEBUG: Commencing network autoconfiguration on eth0
Jan 15 14:26:28 netcfg[3657]: DEBUG: rdnssd started; PID: 3680
Jan 15 14:26:28 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:28 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:28 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:28 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:28 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:28 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:28 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:29 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:29 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:29 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:29 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:29 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:29 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link tentative
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:29 netcfg[3657]: DEBUG: nc_v6_interface_configured(eth0, scope local)
Jan 15 14:26:29 netcfg[3657]: DEBUG: Running ip addr show eth0 to look for address
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: link/ether 08:00:27:70:31:48 brd ff:ff:ff:ff:ff:ff
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: inet6 fe80::a00:27ff:fe70:3148/64 scope link
Jan 15 14:26:29 netcfg[3657]: DEBUG: Configured address found
Jan 15 14:26:29 netcfg[3657]: DEBUG: ip line: valid_lft forever preferred_lft forever
Jan 15 14:26:29 netcfg[3657]: DEBUG: Running rdisc6 -1 -r 1 -w 500 -n eth0 to get IPv6 config flags
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:30 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:31 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:32 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:33 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:34 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on eth0...
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 line: Timed out.
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 line: No response.
Jan 15 14:26:35 netcfg[3657]: DEBUG: rdisc6 parsing finished
Jan 15 14:26:35 netcfg[3657]: DEBUG: Stopping rdnssd, PID 3680
Jan 15 14:26:35 netcfg[3657]: DEBUG: No RA received; attempting IPv4 autoconfig
Jan 15 14:26:35 netcfg[3657]: WARNING **: Started DHCP client; PID is 3720
Jan 15 14:26:36 dhclient: DHCPREQUEST of 10.10.10.178 on eth0 to 255.255.255.255 port 67
Jan 15 14:26:36 dhclient: DHCPACK of 10.10.10.178 from 10.10.10.10
Jan 15 14:26:36 dhclient: bound to 10.10.10.178 -- renewal in 37772 seconds.
Jan 15 14:26:38 kernel: [ 34.626271] eth0: no IPv6 routers present
Jan 15 14:26:38 netcfg[3657]: DEBUG: Reading domain name returned via DHCP
Jan 15 14:26:38 netcfg[3657]: DEBUG: DHCP domain name is 'archergroup.local'
Jan 15 14:26:38 netcfg[3657]: DEBUG: Reading nameservers from /etc/resolv.conf
Jan 15 14:26:38 netcfg[3657]: DEBUG: Read nameserver 10.10.10.10
Jan 15 14:26:38 netcfg[3657]: DEBUG: Read nameserver 10.10.10.11
Jan 15 14:26:38 netcfg[3657]: DEBUG: State is now 1
Jan 15 14:26:38 netcfg[3657]: DEBUG: State is now 2
Jan 15 14:26:38 netcfg[3657]: DEBUG: State is now 5
Jan 15 14:26:38 netcfg[3657]: INFO: DHCP hostname: "kickseed"
Jan 15 14:26:38 netcfg[3657]: DEBUG: kickseed is a valid FQDN
Jan 15 14:26:38 netcfg[3657]: DEBUG: Preseeding domain from global: archergroup.local
Jan 15 14:26:38 netcfg[3657]: DEBUG: State is now 6
Jan 15 14:26:38 netcfg[3657]: DEBUG: Network config complete
Jan 15 14:26:38 netcfg[3657]: DEBUG: No interface given; clearing /etc/network/interfaces
Jan 15 14:26:38 netcfg[3657]: DEBUG: Writing informative header
Jan 15 14:26:38 netcfg[3657]: DEBUG: Success!
Jan 15 14:26:38 netcfg[3657]: DEBUG: Writing loopback interface
Jan 15 14:26:38 netcfg[3657]: DEBUG: Success!
Jan 15 14:26:38 netcfg[3657]: DEBUG: Writing DHCP stanza for eth0
Jan 15 14:26:38 netcfg[3657]: DEBUG: Success!
Jan 15 14:26:40 main-menu[2580]: DEBUG: resolver (libc6-udeb): package doesn't exist (ignored)
Jan 15 14:26:40 main-menu[2580]: DEBUG: resolver (libnewt0.52): package doesn't exist (ignored)
Jan 15 14:26:40 main-menu[2580]: INFO: Menu item 'choose-mirror' selected
Jan 15 14:26:40 anna-install: Queueing udeb apt-mirror-setup for later installation
Jan 15 14:26:40 choose-mirror[3767]: DEBUG: command: wget -q http://10.10.10.3/Ubuntu/12.04//dists/precise/Release -O - | grep -E '^(Suite|Codename):'
Jan 15 14:26:40 choose-mirror[3767]: INFO: suite/codename set to: precise/precise
Jan 15 14:26:40 choose-mirror[3767]: DEBUG: command: wget -q http://10.10.10.3/Ubuntu/12.04//dists/precise/main/binary-amd64/Release -O - | grep ^Architecture:
Jan 15 14:26:40 anna-install: Queueing udeb precise-support for later installation
Jan 15 14:26:40 main-menu[2580]: DEBUG: resolver (libc6-udeb): package doesn't exist (ignored)
Jan 15 14:26:40 main-menu[2580]: DEBUG: resolver (libnewt0.52): package doesn't exist (ignored)
Jan 15 14:26:40 main-menu[2580]: INFO: Menu item 'download-installer' selected
Jan 15 14:26:40 net-retriever: gpgv:
Jan 15 14:26:40 net-retriever: Signature made Fri Aug 17 23:37:31 2012 UTC using DSA key ID FBB75451
Jan 15 14:26:40 net-retriever: gpgv:
Jan 15 14:26:40 net-retriever: Good signature from "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
Jan 15 14:26:40 net-retriever:
Jan 15 14:26:40 anna[3804]: wget: server returned error: HTTP/1.1 404 Not Found
Jan 15 14:26:40 net-retriever: gpgv:
Jan 15 14:26:40 net-retriever: Signature made Tue Jan 15 01:37:10 2013 UTC using DSA key ID 437D05B5
Jan 15 14:26:40 net-retriever: gpgv:
Jan 15 14:26:40 net-retriever: Good signature from "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
Jan 15 14:26:40 net-retriever:
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving block-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving firewire-core-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving fs-core-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving fs-secondary-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving ipmi-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving irda-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:49 anna[3804]: DEBUG: retrieving md-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving message-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving parport-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving pata-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving pcmcia-storage-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving plip-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving ppp-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving sata-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving scsi-modules-3.2.0-29-generic-di 3.2.0-29.46
Jan 15 14:26:50 anna[3804]: DEBUG: retrieving updates-modules-3.2.0-29-generic-di 3.2.0-29.14
Jan 15 14:26:50 main-menu[2580]: DEBUG: resolver (libc6-udeb): package doesn't exist (ignored)
Jan 15 14:26:50 main-menu[2580]: DEBUG: resolver (libnewt0.52): package doesn't exist (ignored)
Jan 15 14:26:50 main-menu[2580]: INFO: no default menu item
Jan 15 14:26:50 main-menu[2580]: INFO: Modifying debconf priority limit from 'critical' to 'high'
Jan 15 14:26:50 debconf: Setting debconf/priority to high
Jan 15 14:27:41 main-menu[2580]: INFO: Menu item 'save-logs' selected

flipybcn
March 11th, 2013, 06:44 PM
Any luck with it?

armen2
September 9th, 2013, 07:23 AM
@enxer, flipybcn,

Guys, I'm facing the same issue. I tried both: nfs as well as http. But none of them is working. I looked at the packets exchanged between the server and the client machine. The result is what i was expecting: the client is not even querying the server for ks.cfg, i.e., the ks.cfg file is not getting downloaded to the client machine. It seems like the "ks=" parameter inside "pxelinux.cfg/default" is not getting recognized by the bootloader/kernel on the client machine. I seem to agree with your comments that something is broken in Ubuntu 12.04 KS support.

Just before jumping into ubuntu, I did a kickstart installation of RHEL 6.4 (both x86 and x64) using nfs method. it worked smoothly.

If someone has tried, please share your views.

thanks,
armen2.

rajesh6
September 28th, 2013, 09:28 AM
I too tried the kickstart installation in ubuntu. I found the client system doesnt recognise my kickstart file.
I did kickstart installation of Centos6.4 and it moved on without any problem?

i have given the file=/cdrom/preseed/ubuntu.seed initrd=/install/initrd.gz ks=/myip/ks.cfg

Is it possible to do kickstart for Ubuntu or Lubuntu??
Help me in this ....!!!