diff --git a/Vagrantfile b/Vagrantfile
index 27ea262..a2efebd 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -61,25 +61,25 @@ Vagrant.configure("2") do |config|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<~SHELL
- if ! apt list ruby2.5 | grep installed; then
- apt-add-repository ppa:brightbox/ruby-ng -y
- apt-get update
- sudo apt-get install -y build-essential resolvconf ruby2.5 ruby2.5-dev gem
- fi
+ # if ! apt list ruby2.5 | grep installed; then
+ # apt-add-repository ppa:brightbox/ruby-ng -y
+ # apt-get update
+ # sudo apt-get install -y build-essential resolvconf ruby2.5 ruby2.5-dev gem
+ # fi
- if ! which berks >/dev/null; then
- gem install berkshelf --no-ri --no-rdoc
- # ln -s /opt/chef/embedded/bin/berks /usr/local/bin/berks
- fi
+ # if ! which berks >/dev/null; then
+ # gem install berkshelf --no-ri --no-rdoc
+ # # ln -s /opt/chef/embedded/bin/berks /usr/local/bin/berks
+ # fi
- cd /vagrant
- git submodule update --init --recursive
+ # cd /vagrant
+ # git submodule update --init --recursive
- cd /vagrant/ops/cookbooks
- rm -rf vendor
- rm -rf $HOME/.berksfile
- berks update
- berks vendor vendor
+ # cd /vagrant/ops/cookbooks
+ # rm -rf vendor
+ # rm -rf $HOME/.berksfile
+ # berks update
+ # berks vendor vendor
SHELL
config.vm.provision 'chef_solo' do |chef|
diff --git a/ops/cookbooks/app/recipes/mysql_seed.rb b/ops/cookbooks/app/recipes/mysql_seed.rb
index 5f194ff..55e200b 100644
--- a/ops/cookbooks/app/recipes/mysql_seed.rb
+++ b/ops/cookbooks/app/recipes/mysql_seed.rb
@@ -3,6 +3,6 @@ cookbook_file '/tmp/datacom_abc.sql' do
end
execute 'Seed MySQL DB' do
- command "mysql -h localhost -u\"#{node['db']['user']}\" -p\"#{node['db']['password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
- not_if "$(mysql -h 127.0.0.1 -uroot -p\"#{node['db']['root_password']}\" \"#{node['db']['name']}\" -sse \"select count(*) from test_dec;\") -gt 0"
+ command "mysql -h 127.0.0.1 -u\"#{node['db']['user']}\" -p\"#{node['db']['password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
+ not_if "$(mysql -h 127.0.0.1 -u\"#{node['db']['user']}\" -p\"#{node['db']['password']}\" \"#{node['db']['name']}\" -sse \"select count(*) from test_dec;\") -gt 0"
end
diff --git a/ops/cookbooks/vendor/app/recipes/mysql_seed.rb b/ops/cookbooks/vendor/app/recipes/mysql_seed.rb
index 5f194ff..abff05f 100644
--- a/ops/cookbooks/vendor/app/recipes/mysql_seed.rb
+++ b/ops/cookbooks/vendor/app/recipes/mysql_seed.rb
@@ -3,6 +3,6 @@ cookbook_file '/tmp/datacom_abc.sql' do
end
execute 'Seed MySQL DB' do
- command "mysql -h localhost -u\"#{node['db']['user']}\" -p\"#{node['db']['password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
+ command "mysql -h localhost -uroot -p\"#{node['db']['root_password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
not_if "$(mysql -h 127.0.0.1 -uroot -p\"#{node['db']['root_password']}\" \"#{node['db']['name']}\" -sse \"select count(*) from test_dec;\") -gt 0"
end
diff --git a/ops/cookbooks/vendor/change-me/app/recipes/mysql_seed.rb b/ops/cookbooks/vendor/change-me/app/recipes/mysql_seed.rb
index 5f194ff..abff05f 100644
--- a/ops/cookbooks/vendor/change-me/app/recipes/mysql_seed.rb
+++ b/ops/cookbooks/vendor/change-me/app/recipes/mysql_seed.rb
@@ -3,6 +3,6 @@ cookbook_file '/tmp/datacom_abc.sql' do
end
execute 'Seed MySQL DB' do
- command "mysql -h localhost -u\"#{node['db']['user']}\" -p\"#{node['db']['password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
+ command "mysql -h localhost -uroot -p\"#{node['db']['root_password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
not_if "$(mysql -h 127.0.0.1 -uroot -p\"#{node['db']['root_password']}\" \"#{node['db']['name']}\" -sse \"select count(*) from test_dec;\") -gt 0"
end
diff --git a/ops/cookbooks/vendor/t42-common/recipes/apache.rb b/ops/cookbooks/vendor/t42-common/recipes/apache.rb
index 38fdc1a..9254fd4 100644
--- a/ops/cookbooks/vendor/t42-common/recipes/apache.rb
+++ b/ops/cookbooks/vendor/t42-common/recipes/apache.rb
@@ -1,11 +1,20 @@
[
'apache2',
'apache2-dev',
- 'libapache2-mod-wsgi-py3',
].each do |pkg|
apt_package pkg
end
+if node['web']['wsgi']
+
+ [
+
+ 'libapache2-mod-wsgi-py3',
+ ].each do |pkg|
+ apt_package pkg
+ end
+end
+
file '/etc/apache2/sites-enabled/000-default.conf' do
action :delete
end
diff --git a/ops/cookbooks/vendor/t42-common/recipes/mysql.rb b/ops/cookbooks/vendor/t42-common/recipes/mysql.rb
index c33ae2d..cc5efa0 100644
--- a/ops/cookbooks/vendor/t42-common/recipes/mysql.rb
+++ b/ops/cookbooks/vendor/t42-common/recipes/mysql.rb
@@ -11,11 +11,11 @@ end
bash 'Make mysql Database and User' do
code <<~EOH
- mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "CREATE DATABASE '#{node['db']['name']}' /*\!40100 DEFAULT CHARACTER SET utf8 */;"
- mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "CREATE USER '#{node['db']['user']}'@localhost IDENTIFIED BY '#{node['db']['password']}';"
- mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "GRANT ALL PRIVILEGES ON '#{node['db']['name']}'.* TO '#{node['db']['user']}'@'%';"
+ mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "CREATE DATABASE #{node['db']['name']};"
+ mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "CREATE USER #{node['db']['user']}@localhost IDENTIFIED BY '#{node['db']['password']}';"
+ mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "GRANT ALL PRIVILEGES ON #{node['db']['name']}.* TO #{node['db']['user']}@localhost;"
mysql -h 127.0.0.1 -uroot -p"#{node['db']['root_password']}" -e "FLUSH PRIVILEGES;"
EOH
- not_if "mysql -h 127.0.0.1 -uroot -p\"#{node['db']['root_password']}\" -e 'use #{node['db']['name']}'"
+ # not_if "mysql -h 127.0.0.1 -uroot -p\"#{node['db']['root_password']}\" -e 'use #{node['db']['name']}'"
end
diff --git a/ops/cookbooks/vendor/t42-common/templates/apache/vhost.conf.erb b/ops/cookbooks/vendor/t42-common/templates/apache/vhost.conf.erb
index c5a3832..8bca4fa 100644
--- a/ops/cookbooks/vendor/t42-common/templates/apache/vhost.conf.erb
+++ b/ops/cookbooks/vendor/t42-common/templates/apache/vhost.conf.erb
@@ -44,9 +44,10 @@
<% if node['web']['root'] %>
DocumentRoot <%= node['web']['root'] %>
/>
- Options Indexes FollowSymLinks
- AllowOverride None
- Require all granted
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride None
+ Order allow,deny
+ allow from all
<% end -%>
diff --git a/php/application/config/config.php b/php/application/config/config.php
index 45790cb..b5ca21d 100644
--- a/php/application/config/config.php
+++ b/php/application/config/config.php
@@ -23,7 +23,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| a PHP script and you can easily do that on your own.
|
*/
-$config['base_url'] = 'http://demo.phpwebsite.in/abc/';
+$config['base_url'] = 'http://localhost';
/*
|--------------------------------------------------------------------------
diff --git a/php/application/config/database.php b/php/application/config/database.php
old mode 100644
new mode 100755
index 6121c5f..6e854dc
--- a/php/application/config/database.php
+++ b/php/application/config/database.php
@@ -76,9 +76,9 @@ $query_builder = TRUE;
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
- 'username' => 'phpwe4km_abc',
- 'password' => 'VOtMA5$_88-Y',
- 'database' => 'phpwe4km_abc',
+ 'username' => 'datacom_abc',
+ 'password' => '3dba6d57248e16ccd0b187383e',
+ 'database' => 'datacom_abc',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
diff --git a/ubuntu-xenial-16.04-cloudimg-console.log b/ubuntu-xenial-16.04-cloudimg-console.log
index a51f9d8..ef947db 100644
--- a/ubuntu-xenial-16.04-cloudimg-console.log
+++ b/ubuntu-xenial-16.04-cloudimg-console.log
@@ -1,6 +1,8 @@
-[ 00000Iniaizincgup ssycpset
0.0000]Initiizg cgroup subsys cpu
-[ 0.000000] Initializing cgroup subsys cpuacct[ 0.000000] Linux version 4.4.0-154-generic (buildd@lgw01-amd64-049) (gcc versioon 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) ) #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 (Ubuntu 4.4.0-154.181-generic 4.4.17
- 0.0000 Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-154-generic root=LABEL=coudi-rtfs csoe=tt csole=ttyS0
+[ 0.00000 Iitializing cgroup subsys cpuset
+[ 0.000000] Initializing cgroup subsys cpu
+[ 0.000000] Initializing cgroup subsys cpuacct
+[ 0.000000] Linux version 4.4.0-154-generic (buildd@lgw01-amd64-049) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) ) #181-Ubuntu SMP Tue Jun 25 05:29:03 UTC 2019 (Ubuntu 4.4.0-154.181-generic 4.4.179)
+[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-154-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
@@ -12,7 +14,7 @@
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
-[ 0.000000] BIOS-e820: [mmem 0x000000000009fc00-0x000000000009ffff] reserved
+[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003fff0000-0x000000003fffffff] ACPI data
@@ -44,7 +46,7 @@
[ 0.000000] NODE_DATA(0) allocated [mem 0x3ffeb000-0x3ffeffff]
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: cpu 0, msr 0:3ffe3001, primary cpu clock
-[ 0.000000] kvm-clock: using sched offset of 3041008518 cycles
+[ 0.000000] kvm-clock: using sched offset of 3356416 cycl
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
@@ -54,8 +56,8 @@
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
-[ 0000] de 0 [me 0x000000000000-0x00003fff]
-[ 0.0000Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffeffff]
+[ 0.000000] node 0: [mem 0x0000000000100000-0x000000003ffeffff]
+[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffeffff]
[ 0.000000] ACPI: PM-Timer IO Port: 0x4008
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
@@ -71,11 +73,11 @@
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 34 pages/cpu @ffff88003fc00000 s99480 r8192 d31592 u1048576
-[ 0.000000] Built 1 zonelists in Node order, mobility grouping onn. Total pages: 257912
+[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 257912
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-154-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
-[ 0.000000] Memory: 997736K/1048120K available (8613K kernel code, 1335K rwdata, 40K rodata, 1484K init, 1284K bss, 50384K reserved, 0K cma-reserved)
+[ 0.000000] Memory: 997736K/1048120K available (8613K kernel code, 1335K rwdata, 4028K rodata, 1484K init, 1284K bss, 50384K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] Hierarchical RCU implementation.
@@ -87,629 +89,629 @@
[ 0.000000] console [tty1] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] tsc: Detected 1991.999 MHz processor
-[ 1.293647] Calibrating delay loop (skipped) preset value.. 3983.99 BogoMIPS (lpj=7967996)
-[ 1.295743] pid_max: default: 32768 minimum: 301
-[ 1.296894] ACPI: Core revision 20150930
-[ 1.298645] ACPI: 2 ACPI AML tables successfully acquired and loaded
-[ 1.300140] Security Framework initialized
-[ 1.301142] Yama: becoming mindful.
-[ 1.302035] AppArmor: AppArmor initialized
-[ 1.303086] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
-[ 1.305282] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
-[ 1.306909] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
-[ 1.308474] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
-[ 1.310240] Initializing cgroup subsys io
-
-[ 1.311286] Initializing cgroup subsys memory
-[ 1.312336] Initializing cgroup subsys devices
-[ 1.313451] Initializing cgroup subsys freezer
-[ 1.314536] Initializing cgroup subsys net_cls
-[ 1.320931] Initializing cgroup subsys perf_event
-[ 1.321930] Initializing cgroup subsys net_prio
-[ 1.322934] Initializing cgroup subsys hugetlb
-[ 1.323995] Initializing cgroup subsys pids
-[ 1.326618] mce: CPU supports 0 MCE banks
-[ 1.327513] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
-[ 1.328645] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
-[ 1.329937] Spectre V2 : Mitigation: Full generic retpoline
-[ 1.331191] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
-[ 1.334261] Speculative Store Bypass: Vulnerable
-[ 1.336882] MDS: Mitigation: Clear CPU buffers
-[ 1.342242] Freeing SMP alternatives memory: 36K
-[ 1.349583] ftrace: allocating 32299 entries in 127 pages
-[ 1.395075] smpboot: APIC(0) Converting physical 0 to logical package 0
-[ 1.398369] smpboot: Max logical packages: 1
-[ 1.399588] x2apic enabled
-[ 1.400530] Switched APIC routing to physical x2apic.
-[ 1.402703] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
-[ 1.508584] smpboot: CPU0: Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (family: 0x6, model: 0x8e, stepping: 0xa)
-[ 1.533959] Performance Events: unsupported p6 CPU model 142 no PMU driver, software events only.
-[ 1.550733] KVM setup paravirtual spinlock
-[ 1.552817] x86: Booting SMP configuration:
-[ 1.554022] .... node #0, CPUs: #1
-[ 1.555432] kvm-clock: cpu 1, msr 0:3ffe3041, secondary cpu clock
-[ 1.560203] mce: CPU supports 0 MCE banks
-[ 1.571113] x86: Booted up 1 node, 2 CPUs
-[ 1.577312] smpboot: Total of 2 processors activated (7967.99 BogoMIPS)
-[ 1.581314] devtmpfs: initialized
-[ 1.585142] evm: security.selinux
-[ 1.586182] evm: security.SMACK64
-[ 1.660965] evm: security.SMACK64EXEC
-[ 1.702625] evm: security.SMACK64TRANSMUTE
-[ 1.708775] evm: security.SMACK64MMAP
-[ 1.709597] evm: security.ima
-[ 1.710298] evm: security.capability
-[ 1.711345] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
-[ 1.714097] futex hash table entries: 512 (order: 3, 32768 bytes)
-[ 1.717389] pinctrl core: initialized pinctrl subsystem
-[ 1.720991] RTC time: 4:54:56, date: 07/01/19
-[ 1.722961] NET: Registered protocol family 16
-[ 1.733383] cpuidle: using governor ladder
-[ 1.777242] cpuidle: using governor menu
-[ 1.821733] PCCT header not found.
-[ 1.822695] ACPI: bus type PCI registered
-[ 1.824001] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
-[ 1.826139] PCI: Using configuration type 1 for base access
-[ 1.838519] ACPI: Added _OSI(Module Device)
-[ 1.841101] ACPI: Added _OSI(Processor Device)
-[ 1.843454] ACPI: Added _OSI(3.0 _SCP Extensions)
-[ 1.845508] ACPI: Added _OSI(Processor Aggregator Device)
-[ 1.848660] ACPI: Executed 1 blocks of module-level executable AML code
-[ 1.853389] ACPI: Interpreter enabled
-[ 1.854556] ACPI: (supports S0 S5)
-[ 1.855650] ACPI: Using IOAPIC for interrupt routing
-[ 1.857289] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
-[ 1.862794] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
-[ 1.864157] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
-[ 1.865775] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
-[ 1.868513] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
-[ 1.871841] PCI host bridge to bus 0000:00
-[ 1.872873] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
-[ 1.874376] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
-[ 1.875915] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
-[ 1.877782] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfdffffff window]
-[ 1.879622] pci_bus 0000:00: root bus resource [bus 00-ff]
-[ 1.882235] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
-[ 1.883736] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
-[ 1.885350] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
-[ 1.886963] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
-[ 1.896771] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
-[ 1.905832] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
-[ 1.910604] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
-[ 1.912331] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
-[ 1.913983] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
-[ 1.916760] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
-[ 1.924883] ACPI: Enabled 2 GPEs in block 00 to 07
-[ 1.931718] vgaarb: setting as boot device: PCI:0000:00:02.0
-[ 1.933262] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
-[ 1.935374] vgaarb: loaded
-[ 1.936201] vgaarb: bridge control possible 0000:00:02.0
-[ 1.937813] SCSI subsystem initialized
-[ 1.938822] ACPI: bus type USB registered
-[ 1.939800] usbcore: registered new interface driver usbfs
-[ 1.941047] usbcore: registered new interface driver hub
-[ 1.942258] usbcore: registered new device driver usb
-[ 1.943570] PCI: Using ACPI for IRQ routing
-[ 1.944918] NetLabel: Initializing
-[ 1.945843] NetLabel: domain hash size = 128
-[ 1.946888] NetLabel: protocols = UNLABELED CIPSOv4
-[ 1.948475] NetLabel: unlabeled traffic allowed by default
-[ 1.949855] amd_nb: Cannot enumerate AMD northbridges
-[ 1.951151] clocksource: Switched to clocksource kvm-clock
-[ 1.957440] AppArmor: AppArmor Filesystem Enabled
-[ 1.958568] pnp: PnP ACPI init
-[ 1.959945] pnp: PnP ACPI: found 3 devices
-[ 1.968625] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
-[ 1.971109] NET: Registered protocol family 2
-[ 1.972450] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
-[ 1.974254] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
-[ 1.975801] TCP: Hash tables configured (established 8192 bind 8192)
-[ 1.977309] UDP hash table entries: 512 (order: 2, 16384 bytes)
-[ 1.978664] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
-[ 1.980221] NET: Registered protocol family 1
-[ 1.981321] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
-[ 1.982745] pci 0000:00:01.0: Activating ISA DMA hang workarounds
-[ 1.984302] Unpacking initramfs...
-[ 2.174634] Freeing initrd memory: 14824K
-[ 2.292217] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x396d4ffc055, max_idle_ns: 881590662783 ns
-[ 2.387275] platform rtc_cmos: registered platform RTC device (no PNP device found)
-[ 2.390553] Scanning for low memory corruption every 60 seconds
-[ 2.393796] audit: initializing netlink subsys (disabled)
-[ 2.395533] audit: type=2000 audit(1561956900.263:1): initialized
-[ 2.397707] Initialise system trusted keyring
-[ 2.399170] HugeTLB registered 2 MB page size, pre-allocated 0 pages
-[ 2.402104] zbud: loaded
-[ 2.403330] VFS: Disk quotas dquot_6.6.0
-[ 2.404337] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
-[ 2.406069] squashfs: version 4.0 (2009/01/31) Phillip Lougher
-[ 2.407776] fuse init (API version 7.23)
-[ 2.408819] Key type big_key registered
-[ 2.409681] Allocating IMA MOK and blacklist keyrings.
-[ 2.411589] Key type asymmetric registered
-[ 2.412482] Asymmetric key parser 'x509' registered
-[ 2.413492] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
-[ 2.415126] io scheduler noop registered
-[ 2.416017] io scheduler deadline registered (default)
-[ 2.417129] io scheduler cfq registered
-[ 2.418066] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
-[ 2.419183] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
-[ 2.420630] ACPI: AC Adapter [AC] (off-line)
-[ 2.453555] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
-[ 2.455152] ACPI: Power Button [PWRF]
-[ 2.456023] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
-[ 2.457597] ACPI: Sleep Button [SLPF]
-[ 2.458615] GHES: HEST is not enabled!
-[ 2.459162] ACPI: Battery Slot [BAT0] (battery present)
-[ 2.460846] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
-[ 2.462326] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
-[ 2.485471] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
-[ 2.545463] Linux agpgart interface v0.103
-[ 2.547876] loop: module loaded
-[ 2.549113] scsi host0: ata_piix
-[ 2.550574] scsi host1: ata_piix
-[ 2.551826] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
-[ 2.553411] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
-[ 2.554979] libphy: Fixed MDIO Bus: probed
-[ 2.556103] tun: Universal TUN/TAP device driver, 1.6
-[ 2.557346] tun: (C) 1999-2004 Max Krasnyansky
-[ 2.559117] PPP generic driver version 2.4.2
-[ 2.560315] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
-[ 2.561823] ehci-pci: EHCI PCI platform driver
-[ 2.562984] ehci-platform: EHCI generic platform driver
-[ 2.564224] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
-[ 2.565654] ohci-pci: OHCI PCI platform driver
-[ 2.566751] ohci-platform: OHCI generic platform driver
-[ 2.568011] uhci_hcd: USB Universal Host Controller Interface driver
-[ 2.569648] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
-[ 2.575896] serio: i8042 KBD port at 0x60,0x64 irq 1
-[ 2.577429] serio: i8042 AUX port at 0x60,0x64 irq 12
-[ 2.579014] mousedev: PS/2 mouse device common for all mice
-[ 2.580693] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
-[ 2.583719] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
-[ 2.586054] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
-[ 2.595647] i2c /dev entries driver
-[ 2.597060] device-mapper: uevent: version 1.0.3
-[ 2.599243] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
-[ 2.603401] ledtrig-cpu: registered to indicate activity on CPUs
-[ 2.606412] NET: Registered protocol family 10
-[ 2.608070] NET: Registered protocol family 17
-[ 2.609319] Key type dns_resolver registered
-[ 2.610816] registered taskstats version 1
-[ 2.612135] Loading compiled-in X.509 certificates
-[ 2.614021] Loaded X.509 cert 'Build time autogenerated kernel key: 65139e04a67245b562a838c28b5e7032abdd4348'
-[ 2.616504] zswap: loaded using pool lzo/zbud
-[ 2.619593] Key type trusted registered
-[ 2.623685] Key type encrypted registered
-[ 2.624836] AppArmor: AppArmor sha1 policy hashing enabled
-[ 2.626356] ima: No TPM chip found, activating TPM-bypass!
-[ 2.627946] ima: Allocated hash algorithm: sha1
-[ 2.629329] evm: HMAC attrs: 0x1
-[ 2.630616] Magic number: 11:392:918
-[ 2.631877] rtc_cmos rtc_cmos: setting system clock to 2019-07-01 04:54:57 UTC (1561956897)
-[ 2.634460] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
-[ 2.636023] EDD information not available.
-[ 2.711242] Freeing unused kernel memory: 1484K
-[ 2.715597] Write protecting the kernel read-only data: 14336k
-[ 2.723500] Freeing unused kernel memory: 1616K
-[ 3.064358] Freeing unused kernel memory: 68K
+[ 0.525150] Calibrating delay loop (skipped) preset value.. 3983.99 BogoMIPS (lpj=7967996)
+[ 0.527688] pid_max: default: 32768 minimum: 301
+[ 0.529085] ACPI: Core revision 20150930
+[ 0.531331] ACPI: 2 ACPI AML tables successfully acquired and loaded
+[ 0.533359] Security Framework initialized
+[ 0.534637] Yama: becoming mindful.
+[ 0.535757] AppArmor: AppArmor initialized
+[ 0.537133] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
+[ 0.539852] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
+[ 0.541851] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
+[ 0.543766] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
+[ 0.545912] Initializing cgroup subsys io
+[ 0.547209] Initializing cgroup subsys memory
+[ 0.548554] Initializing cgroup subsys devices
+[ 0.549902] Initializing cgroup subsys freezer
+[ 0.551233] Initializing cgroup subsys net_cls
+[ 0.552568] Initializing cgroup subsys perf_event
+[ 0.553952] Initializing cgroup subsys net_prio
+[ 0.556498] Initializing cgroup subsys hugetlb
+[ 0.558413] Initializing cgroup subsys pids
+[ 0.561708] mce: CPU supports 0 MCE banks
+[ 0.562965] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
+[ 0.564517] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
+[ 0.566176] Spectre V2 : Mitigation: Full generic retpoline
+[ 0.567762] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
+[ 0.570177] Speculative Store Bypass: Vulnerable
+[ 0.571703] MDS: Mitigation: Clear CPU buffers
+[ 0.575987] Freeing SMP alternatives memory: 36K
+[ 0.583346] ftrace: allocating 32299 entries in 127 pages
+[ 0.649465] smpboot: APIC(0) Converting physical 0 to logical package 0
+[ 0.683106] smpboot: Max logical packages: 1
+[ 0.684718] x2apic enabled
+[ 0.685908] Switched APIC routing to physical x2apic.
+[ 0.688704] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
+[ 0.798473] APIC calibration not consistent with PM-Timer: 103ms instead of 100ms
+[ 1.018916] APIC delta adjusted to PM-Timer: 6249966 (6464832)
+[ 1.160618] smpboot: CPU0: Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (family: 0x6, model: 0x8e, stepping: 0xa)
+[ 1.163780] Performance Events: unsupported p6 CPU model 142 no PMU driver, software events only.
+[ 1.178284] KVM setup paravirtual spinlock
+[ 1.180482] x86: Booting SMP configuration:
+[ 1.181786] .... node #0, CPUs: #1
+[ 1.248800] kvm-clock: cpu 1, msr 0:3ffe3041, secondary cpu clock
+[ 1.263598] mce: CPU supports 0 MCE banks
+[ 1.266591] x86: Booted up 1 node, 2 CPUs
+[ 1.268092] smpboot: Total of 2 processors activated (7967.99 BogoMIPS)
+[ 1.270407] devtmpfs: initialized
+[ 1.273522] evm: security.selinux
+[ 1.274605] evm: security.SMACK64
+[ 1.275684] evm: security.SMACK64EXEC
+[ 1.276827] evm: security.SMACK64TRANSMUTE
+[ 1.278068] evm: security.SMACK64MMAP
+[ 1.279236] evm: security.ima
+[ 1.280255] evm: security.capability
+[ 1.281625] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+[ 1.284777] futex hash table entries: 512 (order: 3, 32768 bytes)
+[ 1.286874] pinctrl core: initialized pinctrl subsystem
+[ 1.288680] RTC time: 19:14:59, date: 07/01/19
+[ 1.290390] NET: Registered protocol family 16
+[ 1.300491] cpuidle: using governor ladder
+[ 1.312755] cpuidle: using governor menu
+[ 1.314108] PCCT header not found.
+[ 1.315373] ACPI: bus type PCI registered
+[ 1.316752] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
+[ 1.318891] PCI: Using configuration type 1 for base access
+[ 1.333478] ACPI: Added _OSI(Module Device)
+[ 1.334907] ACPI: Added _OSI(Processor Device)
+[ 1.336404] ACPI: Added _OSI(3.0 _SCP Extensions)
+[ 1.337950] ACPI: Added _OSI(Processor Aggregator Device)
+[ 1.345842] ACPI: Executed 1 blocks of module-level executable AML code
+[ 1.350329] ACPI: Interpreter enabled
+[ 1.352722] ACPI: (supports S0 S5)
+[ 1.353902] ACPI: Using IOAPIC for interrupt routing
+[ 1.355681] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+[ 1.362930] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+[ 1.365099] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
+[ 1.367254] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
+[ 1.370399] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
+[ 1.374307] PCI host bridge to bus 0000:00
+[ 1.375696] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
+[ 1.377801] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
+[ 1.379912] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
+[ 1.382435] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfdffffff window]
+[ 1.384958] pci_bus 0000:00: root bus resource [bus 00-ff]
+[ 1.388587] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
+[ 1.390782] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
+[ 1.392796] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
+[ 1.406028] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
+[ 1.419573] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
+[ 1.421925] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
+[ 1.428540] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
+[ 1.430949] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
+[ 1.433176] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
+[ 1.435418] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
+[ 1.437693] ACPI: Enabled 2 GPEs in block 00 to 07
+[ 1.439653] vgaarb: setting as boot device: PCI:0000:00:02.0
+[ 1.441264] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
+[ 1.443704] vgaarb: loaded
+[ 1.444679] vgaarb: bridge control possible 0000:00:02.0
+[ 1.446483] SCSI subsystem initialized
+[ 1.447833] ACPI: bus type USB registered
+[ 1.449109] usbcore: registered new interface driver usbfs
+[ 1.450781] usbcore: registered new interface driver hub
+[ 1.452417] usbcore: registered new device driver usb
+[ 1.454256] PCI: Using ACPI for IRQ routing
+[ 1.457177] NetLabel: Initializing
+[ 1.458535] NetLabel: domain hash size = 128
+[ 1.459867] NetLabel: protocols = UNLABELED CIPSOv4
+[ 1.461833] NetLabel: unlabeled traffic allowed by default
+[ 1.463751] amd_nb: Cannot enumerate AMD northbridges
+[ 1.465854] clocksource: Switched to clocksource kvm-clock
+[ 1.474961] AppArmor: AppArmor Filesystem Enabled
+[ 1.476478] pnp: PnP ACPI init
+[ 1.478391] pnp: PnP ACPI: found 3 devices
+[ 1.489578] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
+[ 1.492694] NET: Registered protocol family 2
+[ 1.494439] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
+[ 1.496693] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
+[ 1.498850] TCP: Hash tables configured (established 8192 bind 8192)
+[ 1.500990] UDP hash table entries: 512 (order: 2, 16384 bytes)
+[ 1.503030] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
+[ 1.505088] NET: Registered protocol family 1
+[ 1.506619] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
+[ 1.508818] pci 0000:00:01.0: Activating ISA DMA hang workarounds
+[ 1.511206] Unpacking initramfs...
+[ 1.766403] Freeing initrd memory: 14824K
+[ 2.205326] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x396d4ffc055, max_idle_ns: 881590662783 ns
+[ 2.647151] platform rtc_cmos: registered platform RTC device (no PNP device found)
+[ 2.649987] Scanning for low memory corruption every 60 seconds
+[ 2.652472] audit: initializing netlink subsys (disabled)
+[ 2.654538] audit: type=2000 audit(1562008505.138:1): initialized
+[ 2.657140] Initialise system trusted keyring
+[ 2.658907] HugeTLB registered 2 MB page size, pre-allocated 0 pages
+[ 2.662676] zbud: loaded
+[ 2.664156] VFS: Disk quotas dquot_6.6.0
+[ 2.665661] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+[ 2.669350] squashfs: version 4.0 (2009/01/31) Phillip Lougher
+[ 2.671729] fuse init (API version 7.23)
+[ 2.673347] Key type big_key registered
+[ 2.674864] Allocating IMA MOK and blacklist keyrings.
+[ 2.678105] Key type asymmetric registered
+[ 2.679620] Asymmetric key parser 'x509' registered
+[ 2.681407] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
+[ 2.684227] io scheduler noop registered
+[ 2.685695] io scheduler deadline registered (default)
+[ 2.687583] io scheduler cfq registered
+[ 2.689140] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
+[ 2.691126] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
+[ 2.693545] ACPI: AC Adapter [AC] (off-line)
+[ 2.695229] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
+[ 2.697967] ACPI: Power Button [PWRF]
+[ 2.699457] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
+[ 2.702220] ACPI: Sleep Button [SLPF]
+[ 2.704556] ACPI: Battery Slot [BAT0] (battery present)
+[ 2.706508] GHES: HEST is not enabled!
+[ 2.708292] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
+[ 2.710502] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
+[ 2.734789] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+[ 2.769793] Linux agpgart interface v0.103
+[ 2.773085] loop: module loaded
+[ 2.774777] scsi host0: ata_piix
+[ 2.776011] scsi host1: ata_piix
+[ 2.777124] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
+[ 2.779089] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
+[ 2.781131] libphy: Fixed MDIO Bus: probed
+[ 2.782516] tun: Universal TUN/TAP device driver, 1.6
+[ 2.784101] tun: (C) 1999-2004 Max Krasnyansky
+[ 2.786319] PPP generic driver version 2.4.2
+[ 2.789006] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
+[ 2.791178] ehci-pci: EHCI PCI platform driver
+[ 2.792587] ehci-platform: EHCI generic platform driver
+[ 2.794378] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
+[ 2.796547] ohci-pci: OHCI PCI platform driver
+[ 2.798262] ohci-platform: OHCI generic platform driver
+[ 2.800149] uhci_hcd: USB Universal Host Controller Interface driver
+[ 2.802458] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
+[ 2.805959] serio: i8042 KBD port at 0x60,0x64 irq 1
+[ 2.807770] serio: i8042 AUX port at 0x60,0x64 irq 12
+[ 2.809816] mousedev: PS/2 mouse device common for all mice
+[ 2.812189] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
+[ 2.815732] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
+[ 2.817776] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
+[ 2.819790] i2c /dev entries driver
+[ 2.821065] device-mapper: uevent: version 1.0.3
+[ 2.822717] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
+[ 2.825493] ledtrig-cpu: registered to indicate activity on CPUs
+[ 2.827927] NET: Registered protocol family 10
+[ 2.829652] NET: Registered protocol family 17
+[ 2.831174] Key type dns_resolver registered
+[ 2.833063] registered taskstats version 1
+[ 2.834488] Loading compiled-in X.509 certificates
+[ 2.836709] Loaded X.509 cert 'Build time autogenerated kernel key: 65139e04a67245b562a838c28b5e7032abdd4348'
+[ 2.839919] zswap: loaded using pool lzo/zbud
+[ 2.843249] Key type trusted registered
+[ 2.847775] Key type encrypted registered
+[ 2.849156] AppArmor: AppArmor sha1 policy hashing enabled
+[ 2.850942] ima: No TPM chip found, activating TPM-bypass!
+[ 2.852699] ima: Allocated hash algorithm: sha1
+[ 2.854209] evm: HMAC attrs: 0x1
+[ 2.855688] Magic number: 11:264:242
+[ 2.857070] rtc_cmos rtc_cmos: setting system clock to 2019-07-01 19:15:01 UTC (1562008501)
+[ 2.859962] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
+[ 2.861852] EDD information not available.
+[ 2.940477] Freeing unused kernel memory: 1484K
+[ 2.997315] Write protecting the kernel read-only data: 14336k
+[ 3.001914] Freeing unused kernel memory: 1616K
+[ 3.006482] Freeing unused kernel memory: 68K
Loading, please wait...
-starting version 229
-[ 3.075364] random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.075916] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.075940] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.083816] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.083862] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.084000] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.084050] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.084098] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.084150] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.084217] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
-[ 3.124205] Fusion MPT base driver 3.04.20
-[ 3.150220] virtio_net virtio0 enp0s3: renamed from eth0
-[ 3.406650] Copyright (c) 1999-2008 LSI Corporation
-[ 3.416083] Fusion MPT SPI Host driver 3.04.20
-[ 3.418840] mptbase: ioc0: Initiating bringup
-[ 3.425588] AVX2 version of gcm_enc/dec engaged.
-[ 3.428466] AES CTR mode by8 optimization enabled
-[ 3.494197] ioc0: LSI53C1030 A0: Capabilities={Initiator}
-[ 3.998190] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
-[ 4.171453] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
-[ 4.532548] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
-[ 4.560065] scsi target2:0:0: Beginning Domain Validation
-[ 4.565819] scsi target2:0:0: Domain Validation skipping write tests
-[ 4.568760] scsi target2:0:0: Ending Domain Validation
-[ 4.571036] scsi target2:0:0: asynchronous
-[ 4.574231] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
-[ 4.577941] scsi target2:0:1: Beginning Domain Validation
-[ 4.581928] scsi target2:0:1: Domain Validation skipping write tests
-[ 4.584304] scsi target2:0:1: Ending Domain Validation
-[ 4.586243] scsi target2:0:1: asynchronous
-[ 4.762696] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
-[ 4.806134] sd 2:0:0:0: Attached scsi generic sg0 type 0
-[ 4.809104] sd 2:0:0:0: [sda] Write Protect is off
-[ 4.809640] sd 2:0:1:0: Attached scsi generic sg1 type 0
-[ 4.822383] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
-[ 4.822408] sd 2:0:0:0: [sda] Incomplete mode parameter data
-[ 4.822410] sd 2:0:0:0: [sda] Assuming drive cache: write through
-[ 4.829968] sda: sda1
-[ 4.830420] sd 2:0:0:0: [sda] Attached SCSI disk
-[ 4.920509] sd 2:0:1:0: [sdb] Write Protect is off
-[ 4.922157] sd 2:0:1:0: [sdb] Incomplete mode parameter data
-[ 4.923745] sd 2:0:1:0: [sdb] Assuming drive cache: write through
-[ 4.927078] sd 2:0:1:0: [sdb] Attached SCSI disk
-Begin: Loading e[ 6.330473] md: linear personality registered for level -1
-ssential drivers ... [ 6.356744] md: multipath personality registered for level -4
-[ 6.359764] md: raid0 personality registered for level 0
-[ 6.363488] md: raid1 personality registered for level 1
-[ 6.435955] raid6: sse2x1 gen() 10629 MB/s
-[ 6.503647] raid6: sse2x1 xor() 8443 MB/s
-[ 6.573848] raid6: sse2x2 gen() 13506 MB/s
-[ 6.643630] raid6: sse2x2 xor() 8990 MB/s
-[ 6.713629] raid6: sse2x4 gen() 15625 MB/s
-[ 6.783622] raid6: sse2x4 xor() 12455 MB/s
-[ 6.853714] raid6: avx2x1 gen() 20384 MB/s
-[ 6.923695] raid6: avx2x2 gen() 22941 MB/s
-[ 6.993686] raid6: avx2x4 gen() 26158 MB/s
-[ 7.014834] raid6: using algorithm avx2x4 gen() 26158 MB/s
-[ 7.016393] raid6: using avx2x2 recovery algorithm
-[ 7.019479] xor: automatically using best checksumming function:
-[ 7.059207] avx : 28769.000 MB/sec
-[ 7.136869] async_tx: api initialized (async)
-[ 7.149850] md: raid6 personality registered for level 6
-[ 7.164835] md: raid5 personality registered for level 5
-[ 7.166055] md: raid4 personality registered for level 4
-[ 7.172990] md: raid10 personality registered for level 10
+starting version[ 3.037800] random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+ 229
+[ 3.039417] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.039461] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.055297] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.055386] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.055657] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.055759] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.055860] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.055960] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.056059] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
+[ 3.185074] virtio_net virtio0 enp0s3: renamed from eth0
+[ 3.188043] Fusion MPT base driver 3.04.20
+[ 3.190261] Copyright (c) 1999-2008 LSI Corporation
+[ 3.197133] Fusion MPT SPI Host driver 3.04.20
+[ 3.201073] mptbase: ioc0: Initiating bringup
+[ 3.224002] AVX2 version of gcm_enc/dec engaged.
+[ 3.370170] AES CTR mode by8 optimization enabled
+[ 3.405429] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
+[ 3.434133] ioc0: LSI53C1030 A0: Capabilities={Initiator}
+[ 3.600288] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
+[ 3.731552] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
+[ 3.778450] scsi target2:0:0: Beginning Domain Validation
+[ 3.786816] scsi target2:0:0: Domain Validation skipping write tests
+[ 3.794154] scsi target2:0:0: Ending Domain Validation
+[ 3.804980] scsi target2:0:0: asynchronous
+[ 3.810990] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
+[ 3.818711] scsi target2:0:1: Beginning Domain Validation
+[ 3.827631] scsi target2:0:1: Domain Validation skipping write tests
+[ 4.460807] scsi target2:0:1: Ending Domain Validation
+[ 4.483517] scsi target2:0:1: asynchronous
+[ 4.490971] sd 2:0:0:0: Attached scsi generic sg0 type 0
+[ 4.653046] sd 2:0:1:0: Attached scsi generic sg1 type 0
+[ 4.653284] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
+[ 4.871105] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
+[ 4.873780] sd 2:0:0:0: [sda] Write Protect is off
+[ 4.875582] sd 2:0:0:0: [sda] Incomplete mode parameter data
+[ 4.877351] sd 2:0:0:0: [sda] Assuming drive cache: write through
+[ 4.879272] sd 2:0:1:0: [sdb] Write Protect is off
+[ 4.881001] sd 2:0:1:0: [sdb] Incomplete mode parameter data
+[ 4.882819] sd 2:0:1:0: [sdb] Assuming drive cache: write through
+[ 4.885901] sda: sda1
+[ 4.886403] sd 2:0:1:0: [sdb] Attached SCSI disk
+[ 4.889396] sd 2:0:0:0: [sda] Attached SCSI disk
+Begin: Loading e[ 6.392094] md: linear personality registered for level -1
+ssential drivers ... [ 6.457103] md: multipath personality registered for level -4
+[ 6.487936] md: raid0 personality registered for level 0
+[ 6.493692] md: raid1 personality registered for level 1
+[ 6.565885] raid6: sse2x1 gen() 8173 MB/s
+[ 6.733878] raid6: sse2x1 xor() 6234 MB/s
+[ 6.861873] raid6: sse2x2 gen() 10162 MB/s
+[ 7.057917] raid6: sse2x2 xor() 6682 MB/s
+[ 7.245917] raid6: sse2x4 gen() 10945 MB/s
+[ 7.385918] raid6: sse2x4 xor() 7871 MB/s
+[ 7.493918] raid6: avx2x1 gen() 16418 MB/s
+[ 7.681918] raid6: avx2x2 gen() 18587 MB/s
+[ 7.885916] raid6: avx2x4 gen() 21083 MB/s
+[ 7.945471] raid6: using algorithm avx2x4 gen() 21083 MB/s
+[ 7.947352] raid6: using avx2x2 recovery algorithm
+[ 7.950520] xor: automatically using best checksumming function:
+[ 8.010063] avx : 44994.000 MB/sec
+[ 8.012692] async_tx: api initialized (async)
+[ 8.025503] md: raid6 personality registered for level 6
+[ 8.027372] md: raid5 personality registered for level 5
+[ 8.029182] md: raid4 personality registered for level 4
+[ 8.037770] md: raid10 personality registered for level 10
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
-Beg[ 7.522909] Btrfs loaded
-in: Running /scripts/local-premount ... Scanning for Btrfs filesystems
+Begin: Running /scripts/local-premount ... [ 8.076290] Btrfs loaded
+Scanning for Btrfs filesystems
done.
-[ 7.555503] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Warning: fsck not present, so skipping root file system
+[ 8.104767] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
-[ 7.622798] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
-[ 7.626491] systemd[1]: Detected virtualization oracle.
-[ 7.627683] systemd[1]: Detected architecture x86-64.
+[ 8.173300] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
+[ 8.179178] systemd[1]: Detected virtualization oracle.
+[ 8.180955] systemd[1]: Detected architecture x86-64.
Welcome to [1mUbuntu 16.04.6 LTS[0m!
-[ 7.630814] systemd[1]: Set hostname to .
-[ 7.634994] systemd[1]: Initializing machine ID from random generator.
-[ 7.637211] systemd[1]: Installed transient /etc/machine-id file.
-[ 7.727752] systemd[1]: Created slice System Slice.
-[[0;32m OK [0m] Created slice System Slice.
-[ 7.758062] systemd[1]: Listening on Journal Audit Socket.
-[[0;32m OK [0m] Listening on Journal Audit Socket.
-[ 7.760910] systemd[1]: Listening on udev Kernel Socket.
+[ 8.185592] systemd[1]: Set hostname to .
+[ 8.188707] systemd[1]: Initializing machine ID from random generator.
+[ 8.190938] systemd[1]: Installed transient /etc/machine-id file.
+[ 8.296527] systemd[1]: Listening on udev Kernel Socket.
[[0;32m OK [0m] Listening on udev Kernel Socket.
-[ 7.763301] systemd[1]: Reached target Encrypted Volumes.
-[[0;32m OK [0m] Reached target Encrypted Volumes.
-[ 7.765933] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
+[ 8.301265] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[[0;32m OK [0m] Started Forward Password Requests to Wall Directory Watch.
-[ 7.769344] systemd[1]: Reached target Swap.
-[[0;32m OK [0m] Reached target Swap.
-[ 7.771462] systemd[1]: Listening on LVM2 poll daemon socket.
-[[0;32m OK [0m] Listening on LVM2 poll daemon socket.
-[ 7.774308] systemd[1]: Created slice system-serial\x2dgetty.slice.
-[[0;32m OK [0m] Created slice system-serial\x2dgetty.slice.
-[ 7.777921] systemd[1]: Created slice User and Session Slice.
-[[0;32m OK [0m] Created slice User and Session Slice.
-[ 7.781810] systemd[1]: Reached target User and Group Name Lookups.
-[[0;32m OK [0m] Reached target User and Group Name Lookups.
-[ 7.785400] systemd[1]: Listening on udev Control Socket.
-[[0;32m OK [0m] Listening on udev Control Socket.
-[ 7.788307] systemd[1]: Listening on Syslog Socket.
-[[0;32m OK [0m] Listening on Syslog Socket.
-[ 7.790914] systemd[1]: Reached target System Time Synchronized.
-[[0;32m OK [0m] Reached target System Time Synchronized.
-[ 7.793920] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
-[[0;32m OK [0m] Set up automount Arbitrary Executab...ats File System Automount Point.
-[ 7.798254] systemd[1]: Listening on LVM2 metadata daemon socket.
-[[0;32m OK [0m] Listening on LVM2 metadata daemon socket.
-[ 7.801282] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
-[[0;32m OK [0m] Listening on /dev/initctl Compatibility Named Pipe.
-[ 7.804478] systemd[1]: Reached target Slices.
-[[0;32m OK [0m] Reached target Slices.
-[ 7.806892] systemd[1]: Started Trigger resolvconf update for networkd DNS.
+[ 8.311551] systemd[1]: Started Trigger resolvconf update for networkd DNS.
[[0;32m OK [0m] Started Trigger resolvconf update for networkd DNS.
-[ 7.810192] systemd[1]: Listening on Journal Socket (/dev/log).
-[[0;32m OK [0m] Listening on Journal Socket (/dev/log).
-[ 7.812808] systemd[1]: Listening on Journal Socket.
+[ 8.317110] systemd[1]: Reached target Swap.
+[[0;32m OK [0m] Reached target Swap.
+[ 8.320975] systemd[1]: Listening on Journal Socket.
[[0;32m OK [0m] Listening on Journal Socket.
-[ 7.827722] systemd[1]: Starting Load Kernel Modules...
- Starting Load Kernel Modules...
-[ 7.837388] systemd[1]: Mounting Debug File System...
- Mounting Debug File System...
-[ 7.851216] systemd[1]: Mounting Huge Pages File System...
-[ 7.854747] Loading iSCSI transport class v2.0-870.
- Mounting Huge Pages File System...
-[ 7.867101] systemd[1]: Starting Uncomplicated firewall...
- Starting Uncomplicated firewall...
-[ 7.871094] systemd[1]: Starting Create list of required static device nodes for the current kernel...
- Starting Create list of required st... nodes for the current kernel...
-[ 7.876090] iscsi: registered transport (tcp)
-[ 7.876557] systemd[1]: Starting Set console keymap...
- Starting Set console keymap...
-[ 7.881012] systemd[1]: Starting Remount Root and Kernel File Systems...
- Starting Remount Root and Kernel File Systems...
-[ 7.885606] systemd[1]: Listening on Device-mapper event daemon FIFOs.
+[ 8.325705] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
+[[0;32m OK [0m] Listening on /dev/initctl Compatibility Named Pipe.
+[ 8.331598] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
+[[0;32m OK [0m] Set up automount Arbitrary Executab...ats File System Automount Point.
+[ 8.338866] systemd[1]: Reached target Encrypted Volumes.
+[[0;32m OK [0m] Reached target Encrypted Volumes.
+[ 8.343482] systemd[1]: Listening on udev Control Socket.
+[[0;32m OK [0m] Listening on udev Control Socket.
+[ 8.348083] systemd[1]: Listening on LVM2 metadata daemon socket.
+[[0;32m OK [0m] Listening on LVM2 metadata daemon socket.
+[ 8.353078] systemd[1]: Reached target User and Group Name Lookups.
+[[0;32m OK [0m] Reached target User and Group Name Lookups.
+[ 8.359636] systemd[1]: Listening on LVM2 poll daemon socket.
+[[0;32m OK [0m] Listening on LVM2 poll daemon socket.
+[ 8.364429] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[[0;32m OK [0m] Listening on Device-mapper event daemon FIFOs.
-[ 7.890220] EXT4-fs (sda1): re-mounted. Opts: (null)
-[ 7.891257] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
- Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
-[ 7.898402] systemd[1]: Mounting POSIX Message Queue File System...
- Mounting POSIX Message Queue File System...
-[ 7.905067] systemd[1]: Starting Nameserver information manager...
+[ 8.369681] systemd[1]: Reached target System Time Synchronized.
+[[0;32m OK [0m] Reached target System Time Synchronized.
+[ 8.374656] systemd[1]: Listening on Journal Socket (/dev/log).
+[[0;32m OK [0m] Listening on Journal Socket (/dev/log).
+[ 8.379541] systemd[1]: Listening on Syslog Socket.
+[[0;32m OK [0m] Listening on Syslog Socket.
+[ 8.384087] systemd[1]: Created slice User and Session Slice.
+[[0;32m OK [0m] Created slice User and Session Slice.
+[ 8.389108] systemd[1]: Created slice System Slice.
+[[0;32m OK [0m] Created slice System Slice.
+[ 8.406214] systemd[1]: Starting Remount Root and Kernel File Systems...
+ Starting Remount Root and Kernel File Systems...
+[ 8.492640] systemd[1]: Starting Create list of required static device nodes for the current kernel...
+[ 8.496354] EXT4-fs (sda1): re-mounted. Opts: (null)
+ Starting Create list of required st... nodes for the current kernel...
+[ 8.500254] systemd[1]: Starting Nameserver information manager...
Starting Nameserver information manager...
-[ 7.908845] systemd[1]: Starting Journal Service...
+[ 8.504920] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
+ Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
+[ 8.511591] systemd[1]: Mounting POSIX Message Queue File System...
+ Mounting POSIX Message Queue File System...
+[ 8.516320] systemd[1]: Starting Uncomplicated firewall...
+ Starting Uncomplicated firewall...
+[ 8.520518] systemd[1]: Starting Set console keymap...
+ Starting Set console keymap...
+[ 8.526867] systemd[1]: Starting Load Kernel Modules...
+ Starting Load Kernel Modules...
+[ 8.531424] systemd[1]: Mounting Debug File System...
+ Mounting Debug File System...
+[ 8.536093] systemd[1]: Mounting Huge Pages File System...
+ Mounting Huge Pages File System...[ 8.539277] Loading iSCSI transport class v2.0-870.
+
+[ 8.541841] systemd[1]: Listening on Journal Audit Socket.
+[[0;32m OK [0m] Listening on Journal Audit Socket.
+[ 8.547053] systemd[1]: Starting Journal Service...
Starting Journal Service...
-[ 7.913459] systemd[1]: Mounted Debug File System.
+[ 8.552096] systemd[1]: Created slice system-serial\x2dgetty.slice.
+[[0;32m OK [0m] Created slice system-serial\x2dgetty.slice.
+[ 8.557094] systemd[1]: Reached target Slices.
+[[0;32m OK [0m] Reached target Slices.
+[ 8.562361] iscsi: registered transport (tcp)
+[ 8.564066] systemd[1]: Mounted Debug File System.
[[0;32m OK [0m] Mounted Debug File System.
-[ 7.916297] systemd[1]: Mounted Huge Pages File System.
+[ 8.567515] systemd[1]: Mounted Huge Pages File System.
[[0;32m OK [0m] Mounted Huge Pages File System.
-[ 7.920122] systemd[1]: Mounted POSIX Message Queue File System.
-[[0;32m OK [0[ 7.922638] iscsi: registered transport (iser)
-m] Mounted POSIX Message Queue File System.
-[ 7.925496] systemd[1]: Started Load Kernel Modules.
-[[0;32m OK [0m] Started Load Kernel Modules.
-[ 7.930896] systemd[1]: Started Uncomplicated firewall.
-[[0;32m OK [0m] Started Uncomplicated firewall.
-[ 7.934463] systemd[1]: Started Create list of required static device nodes for the current kernel.
-[[0;32m OK [0m] Started Create list of required sta...ce nodes for the current kernel.
-[ 7.944827] systemd[1]: Started Set console keymap.
-[[0;32m OK [0m] Started Set console keymap.
-[ 7.948777] systemd[1]: Started Remount Root and Kernel File Systems.
+[ 8.571523] systemd[1]: Mounted POSIX Message Queue File System.
+[[0;32m OK [0m] Mounted POSIX Message Queue File System.
+[ 8.577517] systemd[1]: Started Remount Root and Kernel File Systems.
[[0;32m OK [0m] Started Remount Root and Kernel File Systems.
-[ 7.960746] systemd[1]: Started Journal Service.
-[[0;32m OK [0m] Started Journal Service.
+[ 8.586371] systemd[1]: Started Create list of required static device nodes for the current kernel.
+[[0;32m OK [0m] Started Create list of required sta...ce nodes for the current kernel.
+[ 8.598937] systemd[1]: Started Uncomplicated firewall.
+[[0;32m OK [0m] Started Uncomplicated firewall.
+[ 8.603550] systemd[1]: Started Nameserver information manager.
[[0;32m OK [0m] Started Nameserver information manager.
-[[0;32m OK [0m] Started LVM2 metadata daemon.
-[ 8.064445] random: nonblocking pool is initialized
- Starting Load/Save Random Seed...
- Starting Flush Journal to Persistent Storage...
- Starting udev Coldplug all Devices...
- Starting Create Static Device Nodes in /dev...
- Mounting FUSE Control File System...
+[ 8.608871] systemd[1]: Started Journal Service.
+[[0;32m OK [0m] Started Journal Service.
+[[0;32m OK [0m] Started Set console keymap.
+[ 8.618113] iscsi: registered transport (iser)
+[[0;32m OK [0m] Started Load Kernel Modules.
+[ 8.674354] random: nonblocking pool is initialized
Starting Apply Kernel Variables...
+ Mounting FUSE Control File System...
+[[0;32m OK [0m] Started LVM2 metadata daemon.
+ Starting Create Static Device Nodes in /dev...
+ Starting Flush Journal to Persistent Storage...
+ Starting Load/Save Random Seed...
+ Starting udev Coldplug all Devices...
[[0;32m OK [0m] Mounted FUSE Control File System.
-[[0;32m OK [0m] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
-[[0;32m OK [0m] Started Load/Save Random Seed.
-[[0;32m OK [0m] Started Create Static Device Nodes in /dev.
[[0;32m OK [0m] Started Apply Kernel Variables.
-[[0;32m OK [0m] Started udev Coldplug all Devices.
+[[0;32m OK [0m] Started Create Static Device Nodes in /dev.
+[[0;32m OK [0m] Started Load/Save Random Seed.
[[0;32m OK [0m] Started Flush Journal to Persistent Storage.
- Starting udev Kernel Device Manager...
+[[0;32m OK [0m] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
+[[0;32m OK [0m] Started udev Coldplug all Devices.
[[0;32m OK [0m] Reached target Local File Systems (Pre).
[[0;32m OK [0m] Reached target Local File Systems.
- Starting LSB: AppArmor initialization...
Starting Commit a transient machine-id on disk...
+ Starting LSB: AppArmor initialization...
Starting Set console font and keymap...
- Starting Initial cloud-init job (pre-networking)...
Starting Tell Plymouth To Write Out Runtime Data...
+ Starting Initial cloud-init job (pre-networking)...
Starting Create Volatile Files and Directories...
-[[0;32m OK [0m] Started udev Kernel Device Manager.
+ Starting udev Kernel Device Manager...
[[0;32m OK [0m] Started Commit a transient machine-id on disk.
[[0;32m OK [0m] Started Tell Plymouth To Write Out Runtime Data.
[[0;32m OK [0m] Started Create Volatile Files and Directories.
-[[0;32m OK [0m] Found device /dev/ttyS0.
-[ 7.862100] cloud-init[485]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'init-local' at Mon, 01 Jul 2019 04:55:03 +0000. Up 7.46 seconds.
-[[0;32m OK [0m] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
- Starting Update UTMP about System Boot/Shutdown...
+[[0;32m OK [0m] Started udev Kernel Device Manager.
[[0;32m OK [0m] Started Dispatch Password Requests to Console Directory Watch.
-[[0;32m OK [0m] Started LSB: AppArmor initialization.
-[[0;32m OK [0m] Started Set console font and keymap.
-[[0;32m OK [0m] Started Initial cloud-init job (pre-networking).
+ Starting Update UTMP about System Boot/Shutdown...
[[0;32m OK [0m] Started Update UTMP about System Boot/Shutdown.
+[[0;32m OK [0m] Found device /dev/ttyS0.
+[[0;32m OK [0m] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
+[[0;32m OK [0m] Started Set console font and keymap.
+[[ 9.222144] cloud-init[476]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'init-local' at Mon, 01 Jul 2019 19:15:08 +0000. Up 8.76 seconds.
+[0;32m OK [0m] Started LSB: AppArmor initialization.
+[[0;32m OK [0m] Started Initial cloud-init job (pre-networking).
[[0;32m OK [0m] Reached target Network (Pre).
-[[0;32m OK [0m] Created slice system-getty.slice.
Starting Raise network interfaces...
+[[0;32m OK [0m] Created slice system-getty.slice.
[[0;32m OK [0m] Started Raise network interfaces.
Starting Initial cloud-init job (metadata service crawler)...
[[0;32m OK [0m] Reached target Network.
-[ 9.194531] cloud-init[945]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'init' at Mon, 01 Jul 2019 04:55:05 +0000. Up 8.79 seconds.
-[ 9.214338] cloud-init[945]: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++
-[ 9.219702] cloud-init[945]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
-[ 9.223089] cloud-init[945]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
-[ 9.226405] cloud-init[945]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
-[ 9.229516] cloud-init[945]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | global | 02:bd:e0:5c:30:55 |
-[ 9.232568] cloud-init[945]: ci-info: | enp0s3 | True | fe80::bd:e0ff:fe5c:3055/64 | . | link | 02:bd:e0:5c:30:55 |
-[ 9.235547] cloud-init[945]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
-[ 9.238516] cloud-init[945]: ci-info: | lo | True | ::1/128 | . | host | . |
-[ 9.241431] cloud-init[945]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
-[ 9.244067] cloud-init[945]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
-[ 9.246370] cloud-init[945]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
-[ 9.248663] cloud-init[945]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
-[ 9.250897] cloud-init[945]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
-[ 9.253146] cloud-init[945]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
-[ 9.255455] cloud-init[945]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
-[ 9.257873] cloud-init[945]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
-[ 9.260198] cloud-init[945]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
-[ 9.262155] cloud-init[945]: ci-info: +-------+-------------+---------+-----------+-------+
-[ 9.264093] cloud-init[945]: ci-info: | Route | Destination | Gateway | Interface | Flags |
-[ 9.266068] cloud-init[945]: ci-info: +-------+-------------+---------+-----------+-------+
-[ 9.268045] cloud-init[945]: ci-info: | 0 | fe80::/64 | :: | enp0s3 | U |
-[ 9.270162] cloud-init[945]: ci-info: | 3 | ff00::/8 | :: | enp0s3 | U |
-[ 9.272231] cloud-init[945]: ci-info: +-------+-------------+---------+-----------+-------+
-[ 9.274261] cloud-init[945]: Generating public/private rsa key pair.
-[ 9.275897] cloud-init[945]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
-[ 9.277925] cloud-init[945]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
-[ 9.280211] cloud-init[945]: The key fingerprint is:
-[ 9.281750] cloud-init[945]: SHA256:UCWaipzRmY7V/v97xc44oBXGcJbb1MRWVuSjrV9DPH4 root@ubuntu-xenial
-[ 9.284016] cloud-init[945]: The key's randomart image is:
-[ 9.285504] cloud-init[945]: +---[RSA 2048]----+
-[ 9.286789] cloud-init[945]: | o.. . =O|
-[ 9.288082] cloud-init[945]: | . + + .. + .o+|
-[ 9.289339] cloud-init[945]: | . = = = + o.|
-[ 9.304955] cloud-init[945]: | . B o . = = .|
-[[0;32m OK [0m] Started Initial cloud-init job (metadata service crawler).
-[ 9.356690] cloud-init[945]: | = o . S . o * |
-[ 9.417368] cloud-init[945]: | . o + +|
-[ 9.417817] cloud-init[945]: | . o o BE|
-[ 9.418862] cloud-init[945]: | .. = *|
-[ 9.419873] cloud-init[945]: | ..oo o |
-[ 9.421993] cloud-init[945]: +----[SHA256]-----+
-[ 9.423084] cloud-init[945]: Generating public/private dsa key pair.
-[ 9.424215] cloud-init[945]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
-[ 9.425235] cloud-init[945]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
-[ 9.426303] cloud-init[945]: The key fingerprint is:
-[ 9.427342] cloud-init[945]: SHA256:m3fHvBaJTU8U1CiCBAiZGHnPpVS13x4ZVRv9BwdhjYY root@ubuntu-xenial
-[ 9.429428] cloud-init[945]: The key's randomart image is:
-[ 9.430601] cloud-init[945]: +---[DSA 1024]----+
-[ 9.431513] cloud-init[945]: |.+.+ oo+o. .*@=|
-[ 9.433583] cloud-init[945]: |o + o . ... Eo= O|
-[ 9.434661] cloud-init[945]: | . + o . ..o =.|
-[ 9.435689] cloud-init[945]: | + . . o. +|
-[ 9.437742] cloud-init[945]: | S . ++ +.|
-[ 9.438798] cloud-init[945]: | o ..++ .|
-[ 9.439736] cloud-init[945]: | o . o +. |
-[ 9.441120] cloud-init[945]: | . . ... |
-[ 9.441823] cloud-init[945]: | .. |
-[ 9.442544] cloud-init[945]: +----[SHA256]-----+
-[ 9.443243] cloud-init[945]: Generating public/private ecdsa key pair.
-[ 9.443949] cloud-init[945]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
-[ 9.445139] cloud-init[945]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
-[ 9.445677] cloud-init[945]: The key fingerprint is:
-[ 9.446228] cloud-init[945]: SHA256:uwmpS5bVOZa52UNZBNYcQwuHN+dNJ51jz5GqlgQdR/c root@ubuntu-xenial
-[ 9.446719] cloud-init[945]: The key's randomart image is:
-[ 9.447180] cloud-init[945]: +---[ECDSA 256]---+
-[ 9.447674] cloud-init[945]: | =BO+ oo|
-[ 9.448695] cloud-init[945]: | o.=*o+*=|
-[ 9.449284] cloud-init[945]: | ..o+o=E|
-[ 9.449834] cloud-init[945]: | . + + .. +|
-[ 9.450331] cloud-init[945]: | . S + o |
-[ 9.450815] cloud-init[945]: | o o B + |
-[ 9.451311] cloud-init[945]: | + o + + |
-[ 9.451799] cloud-init[945]: | o . . o . |
-[ 9.452781] cloud-init[945]: | o. o |
-[ 9.453272] cloud-init[945]: +----[SHA256]-----+
-[ 9.453749] cloud-init[945]: Generating public/private ed25519 key pair.
-[ 9.454249] cloud-init[945]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
-[ 9.454710] cloud-init[945]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
-[ 9.455106] cloud-init[945]: The key fingerprint is:
-[ 9.455506] cloud-init[945]: SHA256:Q1q6ipJRrY3ebEtlhWsAWN7ji0Naoqzrvd5NFKQPrzE root@ubuntu-xenial
-[ 9.455908] cloud-init[945]: The key's randomart image is:
-[ 9.456702] cloud-init[945]: +--[ED25519 256]--+
-[ 9.457094] cloud-init[945]: | oo . |
-[ 9.457489] cloud-init[945]: |.. o o. |
-[ 9.457882] cloud-init[945]: | ..+o..+ |
-[ 9.458284] cloud-init[945]: | ...o+B. |
-[ 9.458682] cloud-init[945]: |..o+.EB+S |
-[ 9.459075] cloud-init[945]: |+=o..==. . |
-[ 9.459470] cloud-init[945]: |o=ooo... |
-[ 9.459826] cloud-init[945]: |+ o+=.o |
-[ 9.460518] cloud-init[945]: |++o=+o . |
-[ 9.460828] cloud-init[945]: +----[SHA256]-----+
-[[0;32m OK [0m] Reached target Network is Online.
- Starting iSCSI initiator daemon (iscsid)...
-[[0;32m OK [0m] Reached target System Initialization.
- Starting LXD - unix socket.
-[[0;32m OK [0m] Listening on UUID daemon activation socket.
- Starting Socket activation for snappy daemon.
-[[0;32m OK [0m] Listening on ACPID Listen Socket.
+[ 11.225463] cloud-init[940]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'init' at Mon, 01 Jul 2019 19:15:10 +0000. Up 10.52 seconds.
+[ 11.236282] cloud-init[940]: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++
+[ 11.240485] cloud-init[940]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
+[ 11.245689] cloud-init[940]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
+[ 11.251978] cloud-init[940]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
+[ 11.257245] cloud-init[940]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | global | 02:bd:e0:5c:30:55 |
+[ 11.262617] cloud-init[940]: ci-info: | enp0s3 | True | fe80::bd:e0ff:fe5c:3055/64 | . | link | 02:bd:e0:5c:30:55 |
+[ 11.267856] cloud-init[940]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
+[ 11.273170] cloud-init[940]: ci-info: | lo | True | ::1/128 | . | host | . |
+[ 11.278569] cloud-init[940]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+[[0;32m OK [0m] Started Initial cloud-init job (metadata service crawler).
+
+[[ 11.286601] cloud-init[940]: ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
+[ 11.287111] cloud-init[940]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
+[ 11.287549] cloud-init[940]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
+[ 11.287992] cloud-init[940]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
+[ 11.288869] cloud-init[940]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
+[ 11.289288] cloud-init[940]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
+[ 11.289748] cloud-init[940]: ci-info: +-------+-------------+----------+---------------+-----------+-------+
+[ 11.290174] cloud-init[940]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
+[ 11.290605] cloud-init[940]: ci-info: +-------+-------------+---------+-----------+-------+
+[ 11.291036] cloud-init[940]: ci-info: | Route | Destination | Gateway | Interface | Flags |
+[ 11.291463] cloud-init[940]: ci-info: +-------+-------------+---------+-----------+-------+
+[ 11.291898] cloud-init[940]: ci-info: | 0 | fe80::/64 | :: | enp0s3 | U |
+[ 11.292779] cloud-init[940]: ci-info: | 3 | ff00::/8 | :: | enp0s3 | U |
+[ 11.293209] cloud-init[940]: ci-info: +-------+-------------+---------+-----------+-------+
+[ 11.293660] cloud-init[940]: Generating public/private rsa key pair.
+[ 11.294080] cloud-init[940]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
+[ 11.294512] cloud-init[940]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
+[ 11.294945] cloud-init[940]: The key fingerprint is:
+[ 11.295384] cloud-init[940]: SHA256:GQW199H9jBODid650bDRJejXZMkXTKowf1qK81MI0Sg root@ubuntu-xenial
+[ 11.295818] cloud-init[940]: The key's randomart image is:
+[ 11.296705] cloud-init[940]: +---[RSA 2048]----+
+[ 11.297142] cloud-init[940]: | .o= .=o+|
+[ 11.297572] cloud-init[940]: | E + +.+.B=|
+[ 11.298012] cloud-init[940]: | oo+.*.=++|
+[ 11.298445] cloud-init[940]: | =+ooB.*o|
+[ 11.298885] cloud-init[940]: | S oo*+= o|
+[ 11.299318] cloud-init[940]: | ..=+ . |
+[ 11.299753] cloud-init[940]: | o oo |
+[ 11.300633] cloud-init[940]: | o. |
+[ 11.301061] cloud-init[940]: | .. |
+[ 11.301493] cloud-init[940]: +----[SHA256]-----+
+[ 11.301931] cloud-init[940]: Generating public/private dsa key pair.
+[ 11.302356] cloud-init[940]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
+[ 11.302790] cloud-init[940]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
+[ 11.303220] cloud-init[940]: The key fingerprint is:
+[ 11.303652] cloud-init[940]: SHA256:05nK7ANaFzNYzNDzKyShLsbacGHLwm8vjwclFqWRAoA root@ubuntu-xenial
+[ 11.304125] cloud-init[940]: The key's randomart image is:
+[ 11.304553] cloud-init[940]: +---[DSA 1024]----+
+[ 11.304984] cloud-init[940]: |* .o..= |
+[ 11.305422] cloud-init[940]: |E. oo . * |
+[ 11.305857] cloud-init[940]: | .... + o |
+[ 11.306291] cloud-init[940]: | oo..o =..o |
+[ 11.306721] cloud-init[940]: |.+.+o oS++. |
+[ 11.307170] cloud-init[940]: |o.B.. oooo. |
+[ 11.307600] cloud-init[940]: | B...o o+. |
+[ 11.308073] cloud-init[940]: |. .+o. .. |
+[ 11.308506] cloud-init[940]: | ..=o .. |
+[ 11.308944] cloud-init[940]: +----[SHA256]-----+
+[ 11.309378] cloud-init[940]: Generating public/private ecdsa key pair.
+[ 11.309819] cloud-init[940]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
+[ 11.310251] cloud-init[940]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
+[ 11.310687] cloud-init[940]: The key fingerprint is:
+[ 11.311123] cloud-init[940]: SHA256:r+H6pzGH2BIG7V20zW7p8XeKD7X+lgrTxkle4R0PhdY root@ubuntu-xenial
+[ 11.311556] cloud-init[940]: The key's randomart image is:
+[ 11.311991] cloud-init[940]: +---[ECDSA 256]---+
+[ 11.312855] cloud-init[940]: | . o.|
+[ 11.313285] cloud-init[940]: | . . + o.E|
+[ 11.313719] cloud-init[940]: | . . o o..o |
+[ 11.314155] cloud-init[940]: | o . . . ...=|
+[ 11.314586] cloud-init[940]: | + S =..oo|
+[ 11.315023] cloud-init[940]: | . + o o=+o. |
+[ 11.315454] cloud-init[940]: | o * ooo*o +|
+[ 11.315890] cloud-init[940]: | o *. ++ +o|
+[ 11.316759] cloud-init[940]: | .o=o .o=o.|
+[ 11.317193] cloud-init[940]: +----[SHA256]-----+
+[ 11.317627] cloud-init[940]: Generating public/private ed25519 key pair.
+[ 11.318109] cloud-init[940]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
+[ 11.318542] cloud-init[940]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
+[ 11.318974] cloud-init[940]: The key fingerprint is:
+[ 11.319407] cloud-init[940]: SHA256:q9SAsFudmZOn8XD+SDZQEl+u7m1pT2kWA5DX13ZCD/s root@ubuntu-xenial
+[ 11.319846] cloud-init[940]: The key's randomart image is:
+[ 11.320686] cloud-init[940]: +--[ED25519 256]--+
+[ 11.321080] cloud-init[940]: | . .... .o. |
+[ 11.321486] cloud-init[940]: | o.+. . o++|
+[ 11.321889] cloud-init[940]: | . . o.o ..oo|
+[ 11.430730] cloud-init[940]: | o o B . . . |
+[ 11.431462] cloud-init[940]: | . o % S o E|
+[ 11.432274] cloud-init[940]: | o # . + |
+[ 11.433032] cloud-init[940]: | . o X .= |
+[ 11.433805] cloud-init[940]: | . = =++ |
+[ 11.434876] cloud-init[940]: | . ooo.. |
+[ 11.435389] cloud-init[940]: +----[SHA256]-----+
+[0;32m OK [0m] Reached target System Initialization.
+[[0;32m OK [0m] Listening on D-Bus System Message Bus Socket.
+[[0;32m OK [0m] Started ACPI Events Check.
+[[0;32m OK [0m] Reached target Paths.
[[0;32m OK [0m] Started Daily Cleanup of Temporary Directories.
[[0;32m OK [0m] Started Daily apt download activities.
[[0;32m OK [0m] Started Daily apt upgrade and clean activities.
-[[0;32m OK [0m] Listening on D-Bus System Message Bus Socket.
+ Starting Socket activation for snappy daemon.
+[[0;32m OK [0m] Listening on UUID daemon activation socket.
+ Starting LXD - unix socket.
[[0;32m OK [0m] Reached target Timers.
-[[0;32m OK [0m] Started ACPI Events Check.
-[[0;32m OK [0m] Reached target Paths.
+[[0;32m OK [0m] Listening on ACPID Listen Socket.
+[[0;32m OK [0m] Reached target Network is Online.
+ Starting iSCSI initiator daemon (iscsid)...
[[0;32m OK [0m] Reached target Cloud-config availability.
-[[0;32m OK [0m] Listening on LXD - unix socket.
[[0;32m OK [0m] Listening on Socket activation for snappy daemon.
+[[0;32m OK [0m] Listening on LXD - unix socket.
[[0;32m OK [0m] Started iSCSI initiator daemon (iscsid).
Starting Login to default iSCSI targets...
[[0;32m OK [0m] Reached target Sockets.
[[0;32m OK [0m] Reached target Basic System.
- Starting System Logging Service...
-[[0;32m OK [0m] Started Regular background program processing daemon.
- Starting /etc/rc.local Compatibility...
- Starting Login Service...
-[[0;32m OK [0m] Started ACPI event daemon.
-[[0;32m OK [0m] Started Deferred execution scheduler.
-[[0;32m OK [0m] Started D-Bus System Message Bus.
-[[0;32m OK [0m] Started FUSE filesystem for LXC.
- Starting LSB: Record successful boot for GRUB...
- Starting Virtualbox guest utils...
- Starting Snappy daemon...
- Starting Accounts Service...
- Starting LSB: MD monitoring daemon...
- Starting Pollinate to seed the pseudo random number generator...
Starting LXD - container startup/shutdown...
+ Starting System Logging Service...
+[[0;32m OK [0m] Started Deferred execution scheduler.
+ Starting /etc/rc.local Compatibility...
+ Starting Accounts Service...
+[[0;32m OK [0m] Started Regular background program processing daemon.
+[[0;32m OK [0m] Started D-Bus System Message Bus.
+[[0;32m OK [0m] Started ACPI event daemon.
+ Starting Login Service...
+ Starting Snappy daemon...
+ Starting LSB: Record successful boot for GRUB...
+ Starting Pollinate to seed the pseudo random number generator...
+ Starting LSB: MD monitoring daemon...
+ Starting Virtualbox guest utils...
+[[0;32m OK [0m] Started FUSE filesystem for LXC.
[[0;32m OK [0m] Started System Logging Service.
-[[0;32m OK [0m] Started /etc/rc.local Compatibility.
[[0;32m OK [0m] Started LXD - container startup/shutdown.
+[[0;32m OK [0m] Started /etc/rc.local Compatibility.
[[0;32m OK [0m] Started Login to default iSCSI targets.
[[0;32m OK [0m] Started LSB: Record successful boot for GRUB.
-[[0;32m OK [0m] Started Snappy daemon.
-[[0;32m OK [0m] Started LSB: MD monitoring daemon.
-[[0;32m OK [0m] Started Login Service.
-[[0;32m OK [0m] Started Unattended Upgrades Shutdown.
Starting Authenticate and Authorize Users to Run Privileged Tasks...
- Starting Wait until snapd is fully seeded...
[[0;32m OK [0m] Reached target Remote File Systems (Pre).
[[0;32m OK [0m] Reached target Remote File Systems.
- Starting LSB: daemon to balance interrupts for SMP systems...
- Starting LSB: automatic crash report generation...
Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
+ Starting LSB: automatic crash report generation...
+ Starting LSB: daemon to balance interrupts for SMP systems...
Starting Permit User Sessions...
-[[0;32m OK [0m] Started Authenticate and Authorize Users to Run Privileged Tasks.
-[[0;32m OK [0m] Started Permit User Sessions.
-[[0;32m OK [0m] Started Accounts Service.
+[[0;32m OK [0m] Started LSB: MD monitoring daemon.
[[0;32m OK [0m] Started Virtualbox guest utils.
- Starting Hold until boot process finishes up...
+[[0;32m OK [0m] Started Permit User Sessions.
+[[0;32m OK [0m] Started Login Service.
+[[0;32m OK [0m] Started Snappy daemon.
+[[0;32m OK [0m] Started Authenticate and Authorize Users to Run Privileged Tasks.
+[[0;32m OK [0m] Started Accounts Service.
+ Starting Wait until snapd is fully seeded...
+[[0;32m OK [0m] Started Unattended Upgrades Shutdown.
Starting Terminate Plymouth Boot Screen...
-[[0;32m OK [0m] Started LSB: daemon to balance interrupts for SMP systems.
+ Starting Hold until boot process finishes up...
[[0;32m OK [0m] Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
+[[0;32m OK [0m] Started LSB: automatic crash report generation.
+[[0;32m OK [0m] Started LSB: daemon to balance interrupts for SMP systems.
+[[0;32m OK [0m] Started Terminate Plymouth Boot Screen.
[[0;32m OK [0m] Started Hold until boot process finishes up.
+[[0;32m OK [0m] Started Getty on tty1.
Starting Set console scheme...
[[0;32m OK [0m] Started Serial Getty on ttyS0.
-[[0;32m OK [0m] Started Getty on tty1.
[[0;32m OK [0m] Reached target Login Prompts.
-[[0;32m OK [0m] Started Terminate Plymouth Boot Screen.
[[0;32m OK [0m] Started Set console scheme.
-[[0;32m OK [0m] Started LSB: automatic crash report generation.
[[0;32m OK [0m] Started Pollinate to seed the pseudo random number generator.
Starting OpenBSD Secure Shell server...
[[0;32m OK [0m] Started OpenBSD Secure Shell server.
[[0;32m OK [0m] Created slice User Slice of vagrant.
Starting User Manager for UID 1000...
-[[0;32m OK [0m] Started User Manager for UID 1000.
[[0;32m OK [0m] Started Session 1 of user vagrant.
+[[0;32m OK [0m] Started User Manager for UID 1000.
[[0;32m OK [0m] Started Wait until snapd is fully seeded.
+ Starting Apply the settings specified in cloud-config...
[[0;32m OK [0m] Reached target Multi-User System.
[[0;32m OK [0m] Reached target Graphical Interface.
Starting Update UTMP about System Runlevel Changes...
- Starting Apply the settings specified in cloud-config...
[[0;32m OK [0m] Started Update UTMP about System Runlevel Changes.
-[ 12.311529] cloud-init[1360]: Generating locales (this might take a while)...
-[ 12.933993] cloud-init[1360]: en_US.UTF-8... done
-[ 12.942912] cloud-init[1360]: Generation complete.
-[ 13.161567] cloud-init[1360]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'modules:config' at Mon, 01 Jul 2019 04:55:08 +0000. Up 12.22 seconds.
+[ 14.713945] cloud-init[1378]: Generating locales (this might take a while)...
+[ 15.500575] cloud-init[1378]: en_US.UTF-8... done
+[ 15.558697] cloud-init[1378]: Generation complete.
+[ 15.822987] cloud-init[1378]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'modules:config' at Mon, 01 Jul 2019 19:15:14 +0000. Up 14.61 seconds.
[[0;32m OK [0m] Started Apply the settings specified in cloud-config.
Starting Execute cloud user/final scripts...
ci-info: no authorized ssh keys fingerprints found for user ubuntu.
-<14>Jul 1 04:55:10 ec2:
-<14>Jul 1 04:55:10 ec2: #############################################################
-<14>Jul 1 04:55:10 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
-<14>Jul 1 04:55:10 ec2: 1024 SHA256:m3fHvBaJTU8U1CiCBAiZGHnPpVS13x4ZVRv9BwdhjYY root@ubuntu-xenial (DSA)
-<14>Jul 1 04:55:10 ec2: 256 SHA256:uwmpS5bVOZa52UNZBNYcQwuHN+dNJ51jz5GqlgQdR/c root@ubuntu-xenial (ECDSA)
-<14>Jul 1 04:55:10 ec2: 256 SHA256:Q1q6ipJRrY3ebEtlhWsAWN7ji0Naoqzrvd5NFKQPrzE root@ubuntu-xenial (ED25519)
-<14>Jul 1 04:55:10 ec2: 2048 SHA256:UCWaipzRmY7V/v97xc44oBXGcJbb1MRWVuSjrV9DPH4 root@ubuntu-xenial (RSA)
-<14>Jul 1 04:55:10 ec2: -----END SSH HOST KEY FINGERPRINTS-----
-<14>Jul 1 04:55:10 ec2: #############################################################
+<14>Jul 1 19:15:16 ec2:
+<14>Jul 1 19:15:16 ec2: #############################################################
+<14>Jul 1 19:15:16 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
+<14>Jul 1 19:15:16 ec2: 1024 SHA256:05nK7ANaFzNYzNDzKyShLsbacGHLwm8vjwclFqWRAoA root@ubuntu-xenial (DSA)
+<14>Jul 1 19:15:16 ec2: 256 SHA256:r+H6pzGH2BIG7V20zW7p8XeKD7X+lgrTxkle4R0PhdY root@ubuntu-xenial (ECDSA)
+<14>Jul 1 19:15:16 ec2: 256 SHA256:q9SAsFudmZOn8XD+SDZQEl+u7m1pT2kWA5DX13ZCD/s root@ubuntu-xenial (ED25519)
+<14>Jul 1 19:15:16 ec2: 2048 SHA256:GQW199H9jBODid650bDRJejXZMkXTKowf1qK81MI0Sg root@ubuntu-xenial (RSA)
+<14>Jul 1 19:15:16 ec2: -----END SSH HOST KEY FINGERPRINTS-----
+<14>Jul 1 19:15:16 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
-ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDzL3anXmO50qGHY5u6AOPKSP/+0pj3MwosGpPVNcpoBV3Gl5h/0JgA4aYWMsVGJrX9Yepkq/P2prKxcYOC5tAE= root@ubuntu-xenial
-ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAlZybwcPeHlokS2voRuvc/8OcnMQ0sIQsewfCoEQKzv root@ubuntu-xenial
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDla9rpIU1b8oPQSsAJTEmewmpBhUd+mnP1wGRpb5FG7ZL21N7Lw8mvYkB1Kwo3L/LpoLv6KGr96B8d52FKLFuF+CSK3UAqJemKMGNLVwZxYUip1/MIBupotNL2y4IeX6lw/vjBM1hIfqhYMT/ZqzEbpSeqCqQx3GwaKDBJnZSJ4bcw2So2uA/zAE2wEMl/JdfjH6sEaIEOb02RUKG8QrgDVPiUK0EibTOVYtwqar6oAuRWXcv08Gc6Z/QN9CNt+VAYXphhgJeIJQsld+AEvQL+l8F3aIvpUJ/CoEDohgqyWVtylwGprl1MXg8FneASV5mix0iCDblLYuKyFw2i5+Ar root@ubuntu-xenial
+ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFfqt9M60K0NJ2P7+9g7Q9BzjXev3pGYEWnlcu0XyVZUO/hR553cMD5ZWyZ6QKKByoca/FDHV1wn5uRyegTcNuw= root@ubuntu-xenial
+ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILC2fWoEaKh1zUU74SmvgHeTVHIpGd+E7MkYInpQNN5g root@ubuntu-xenial
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCySZUYduY79XXGfRVyp6WJWUTcvArVw636ayBfcSqI9jm81li4f9r8uLl3ciJ1YDaRrDpN8Ab+d3+R1G6SdJawKbVwcOq+n4KNJ90BuLvwvKJHsRPYqFPowMg8IaHg+haKbZlBhHH7rncJOBH64vVGfTyUVIuH7ukVf/zn0iaQz73J1ovLFHpDBn0w1oFMbQlOadQc0p7l5Oh2u5fbm2Ko1fwUm/d/O2paqvfHRw5plQhrcFMl+IvtNQgH0wbs/lYksso5g4nxRXDvq2Y4XBh8MvnzWydi5btbwu3LPpQak5BDiMPoOF6q6/+sOoaiJGzXjcxajrhAoFheI+40tQwJ root@ubuntu-xenial
-----END SSH HOST KEY KEYS-----
-[ 13.792553] cloud-init[1475]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'modules:final' at Mon, 01 Jul 2019 04:55:10 +0000. Up 13.56 seconds.
-[ 13.914695] [[0;32m OK [0mcloud-init] Started Execute cloud user/final scripts.[1475]:
-ci-info: no authorized ssh keys fingerprints found for user ubuntu.
-[ 13.929880] cloud-init[[0;32m OK [0m] Reached target Cloud-init target.
-[1475]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 finished at Mon, 01 Jul 2019 04:55:10 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 13.78 seconds
+[ 16.568214] cloud-init[1503]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 running 'modules:final' at Mon, 01 Jul 2019 19:15:15 +0000. Up 16.22 seconds.
+[ 16.610581] cloud-init[1503]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
+[ 16.619366] cloud-init[1503]: Cloud-init v. 19.1-1-gbaa47854-0ubuntu1~16.04.1 finished at Mon, 01 Jul 2019 19:15:16 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 16.54 seconds
+[[0;32m OK [0m] Started Execute cloud user/final scripts.
+[[0;32m OK [0m] Reached target Cloud-init target.
Ubuntu 16.04.6 LTS ubuntu-xenial ttyS0