RDEV-1036

added:
 rublon.config
 path to python script, and config file
 new makefile
 new path and names in buildRublonPam.sh
This commit is contained in:
KRI 2019-10-16 08:03:04 +02:00
parent fbc0ace678
commit 915428dcf1
23 changed files with 1444 additions and 119 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,114 +1,14 @@
SHELL = /bin/sh
CENTOS:=$(wildcard /etc/centos-release*)
REDHATOS:=$(wildcard /etc/redhat_version*)
OS:=$(shell lsb_release -si)
make:
ifneq ($(CENTOS),)
sudo yum install -y curl-devel
sudo yum install -y openssl-devel
sudo yum install -y pam-devel
sudo yum install -y epel-release
sudo yum install -y python3-devel.x86_64
sudo yum install -y python36
sudo pip3 install "python-socketio[client]"
sudo yum install -y policycoreutils-devel
endif
ifneq ($(REDHATOS),)
sudo yum install -y curl-devel
sudo yum install -y openssl-devel
sudo yum install -y pam-devel
sudo yum install -y epel-release
sudo yum install -y python3-devel.x86_64
sudo yum install -y python36
sudo pip3 install "python-socketio[client]"
sudo yum install -y policycoreutils-devel
endif
ifeq ($(OS),Ubuntu)
sudo apt-get update
sudo apt-get install -y gcc
sudo apt-get install -y openssh-server
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y libpam0g-dev
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libssl-dev
sudo apt-get install -y python2.7-dev
sudo apt-get install -y python
sudo apt-get install -y python-pip
sudo pip install "python-socketio[client]"
endif
ifeq ($(OS),Debian)
sudo apt-get install -y openssh-server
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y libpam0g-dev
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libssl-dev
sudo apt-get install -y python2.7-dev
sudo apt-get install -y python
sudo apt-get install -y python-pip
sudo pip install "python-socketio[client]"
endif
gcc -fPIC -fno-stack-protector -std=c99 -c rublonPam.c src/pamApp.c src/coreHandler.c src/signatureWrapper.c lib/cfg_parse.c lib/cJSON.c lib/qrcodegen.c
selinux:
sudo checkmodule -M -m -o login_rublon.mod login_rublon.te
sudo semodule_package -o login_rublon.pp -m login_rublon.mod
sudo semodule -i login_rublon.pp
clean:
ifneq ($(CENTOS),)
sudo rm /lib64/security/rublonPam.so
sudo rm /lib64/security/confirmMethod.py
sudo rm /lib64/security/confirmUser.py
sudo rm /lib64/security/.config
endif
ifneq ($(REDHATOS),)
sudo rm /lib64/security/rublonPam.so
sudo rm /lib64/security/confirmMethod.py
sudo rm /lib64/security/confirmUser.py
sudo rm /lib64/security/.config
endif
ifeq ($(OS),Ubuntu)
sudo rm /lib/security/rublonPam.so
sudo rm /lib/security/confirmMethod.py
sudo rm /lib/security/confirmUser.py
sudo rm /lib/security/.config
endif
ifeq ($(OS),Debian)
sudo rm /lib/security/rublonPam.so
sudo rm /lib/security/confirmMethod.py
sudo rm /lib/security/confirmUser.py
sudo rm /lib/security/.config
endif
checkmodule -M -m -o login_rublon.mod login_rublon.te
semodule_package -o login_rublon.pp -m login_rublon.mod
semodule -i login_rublon.pp
install:
ifneq ($(CENTOS),)
sudo cp confirmMethod.py /lib64/security
sudo cp confirmUser.py /lib64/security
sudo chmod +x /lib64/security/confirmMethod.py
sudo chmod +x /lib64/security/confirmUser.py
sudo cp .config /lib64/security
sudo ld -x --shared -o /lib64/security/rublonPam.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
endif
ifneq ($(REDHATOS),)
sudo cp confirmMethod.py /lib64/security
sudo cp confirmUser.py /lib64/security
sudo chmod +x /lib64/security/confirmMethod.py
sudo chmod +x /lib64/security/confirmUser.py
sudo cp .config /lib64/security
sudo ld -x --shared -o /lib64/security/rublonPam.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
endif
ifeq ($(OS),Ubuntu)
sudo mkdir -p /lib/security
sudo cp confirmMethod.py /lib/security
sudo cp confirmUser.py /lib/security
sudo chmod +x /lib/security/confirmMethod.py
sudo chmod +x /lib/security/confirmUser.py
sudo cp .config /lib/security
sudo ld -x --shared -o /lib/security/rublonPam.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
endif
ifeq ($(OS),Debian)
sudo mkdir -p /lib/security
sudo cp confirmMethod.py /lib/security
sudo cp confirmUser.py /lib/security
sudo chmod +x /lib/security/confirmMethod.py
sudo chmod +x /lib/security/confirmUser.py
sudo cp .config /lib/security
sudo ld -x --shared -o /lib/security/rublonPam.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
endif
sudo rm rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
sudo service sshd restart
cp confirmMethod.py /usr/share/rublon-ssh
cp confirmUser.py /usr/share/rublon-ssh/
chmod +x /usr/share/rublon-ssh//confirmMethod.py
chmod +x /usr/share/rublon-ssh//confirmUser.py
cp rublon.config /etc
ld -x --shared -o /lib64/security/pam_rublon.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
service sshd restart

View File

@ -3,11 +3,12 @@
gcc -fPIC -fno-stack-protector -std=c99 -c rublonPam.c src/pamApp.c src/coreHandler.c src/signatureWrapper.c lib/cfg_parse.c lib/cJSON.c lib/qrcodegen.c
sudo mkdir -p /lib64/security
sudo mkdir -p /usr/share/rublon-ssh
sudo cp .config /lib64/security
sudo cp confirmUser.py /lib64/security
sudo cp confirmMethod.py /lib64/security
sudo cp rublon.config /etc
sudo cp confirmUser.py /usr/share/rublon-ssh
sudo cp confirmMethod.py /usr/share/rublon-ssh
sudo ld -x --shared -o /lib64/security/rublonPam.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
sudo ld -x --shared -o /lib64/security/pam_rublon.so -lcurl rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o
rm rublonPam.o pamApp.o coreHandler.o signatureWrapper.o cfg_parse.o cJSON.o qrcodegen.o

BIN
SSH/PAM/login_rublon.mod Normal file

Binary file not shown.

BIN
SSH/PAM/login_rublon.pp Normal file

Binary file not shown.

4
SSH/PAM/rublon.config Normal file
View File

@ -0,0 +1,4 @@
systemToken=
secretKey=
userDomain=
rublonApiServer=https://core.rublon.net

BIN
SSH/PAM/rublonPam.so Normal file

Binary file not shown.

55
SSH/PAM/rublonPam.spec Normal file
View File

@ -0,0 +1,55 @@
Summary: hello greets the world
Name: rublonPam
Version: 1.0
Release: 1
License: GPL
Group: Applications/Tutorials
Source: rublonPam.tar.gz
URL: https://www.rublon.net
Distribution: CENTOS Linux
Vendor: -
Packager: Thorsten Staerk
%description
hello greets the world
%prep
yum install -y curl-devel
yum install -y openssl-devel
yum install -y pam-devel
yum install -y policycoreutils-python
sed -i 's/UsePAM .*/UsePAM yes/' /etc/ssh/sshd_config
sed -i 's/ChallengeResponseAuthentication .*/ChallengeResponseAuthentication yes/' /etc/ssh/sshd_config
touch /home/vagrant/login_rublon.te
cat > /home/vagrant/login_rublon.te << EOF
module login_rublon 1.0;
require {
type http_port_t;
type http_cache_port_t;
type sshd_t;
class tcp_socket name_connect;
};
allow sshd_t {http_port_t http_cache_port_t}:tcp_socket name_connect;
EOF
checkmodule -M -m -o /home/vagrant/login_rublon.mod /home/vagrant/login_rublon.te
semodule_package -o /home/vagrant/login_rublon.pp -m /home/vagrant/login_rublon.mod
semodule -i /home/vagrant/login_rublon.pp
grep -q -e '#auth substack password-auth' /etc/pam.d/sshd || sed -i -e 's/auth substack password-auth/#auth substack password-auth/g' /etc/pam.d/sshd
grep -q -e 'auth requisite pam_unix.so' /etc/pam.d/sshd || sed -i '\$aauth requisite pam_unix.so' /etc/pam.d/sshd
grep -q -e 'auth required rublonPam.so' /etc/pam.d/sshd || sed -i '\$aauth required rublonPam.so' /etc/pam.d/sshd
grep -q -e 'account required rublonPam.so' /etc/pam.d/sshd || sed -i '\$aaccount required rublonPam.so' /etc/pam.d/sshd
rm /home/vagrant/login_rublon.te
rm /home/vagrant/login_rublon.mod
rm /home/vagrant/login_rublon.pp
service sshd restart
%setup
%build
make
%install
make install
%files
%defattr(-, root, root)

View File

@ -28,7 +28,7 @@ pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
void* usersThread(void* input) {
int out = -1;
char *script;
asprintf(&script,"python3 /lib64/security/confirmUser.py %s %s",((struct args*)input)->rublonApiServer ,((struct args*)input)->transactionId);
asprintf(&script,"python3 /usr/share/rublon-ssh/confirmUser.py %s %s",((struct args*)input)->rublonApiServer ,((struct args*)input)->transactionId);
out = system(script);
if(out != -1) {
if(out == 256)
@ -47,7 +47,7 @@ void* methodsThread(void* input) {
int out = -1;
char *script;
asprintf(&script,"python3 /lib64/security/confirmMethod.py %s %s",((struct args*)input)->rublonApiServer ,((struct args*)input)->transactionId);
asprintf(&script,"python3 /usr/share/rublon-ssh/confirmMethod.py %s %s",((struct args*)input)->rublonApiServer ,((struct args*)input)->transactionId);
out = system(script);
if(out != -1) {
if(out == 256)
@ -62,7 +62,7 @@ void* methodsThread(void* input) {
char *getConfigValue(const char * value) {
struct cfg_struct* cfg;
cfg = cfg_init();
if (cfg_load(cfg,"/lib64/security/.config") < 0)
if (cfg_load(cfg,"/etc/rublon.config") < 0)
return NULL;
else
return (char*)cfg_get(cfg,value);

View File

@ -0,0 +1,682 @@
[ 0.000000] Linux version 4.15.0-47-generic (buildd@lgw01-amd64-001) (gcc version 7.3.0 (Ubuntu 7.3.0-16ubuntu3)) #50-Ubuntu SMP Wed Mar 13 10:44:52 UTC 2019 (Ubuntu 4.15.0-47.50-generic 4.15.18)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-47-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 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: [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
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.5 present.
[ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: last_pfn = 0x3fff0 max_arch_pfn = 0x400000000
[ 0.000000] MTRR: Disabled
[ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[ 0.000000] CPU MTRRs all blank - virtualized system.
[ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
[ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ (ptrval)]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] RAMDISK: [mem 0x35add000-0x36d65fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
[ 0.000000] ACPI: XSDT 0x000000003FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
[ 0.000000] ACPI: FACP 0x000000003FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
[ 0.000000] ACPI: DSDT 0x000000003FFF0470 0022EA (v02 VBOX VBOXBIOS 00000002 INTL 20100528)
[ 0.000000] ACPI: FACS 0x000000003FFF0200 000040
[ 0.000000] ACPI: FACS 0x000000003FFF0200 000040
[ 0.000000] ACPI: APIC 0x000000003FFF0240 00005C (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
[ 0.000000] ACPI: SSDT 0x000000003FFF02A0 0001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000003ffeffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x3ffc5000-0x3ffeffff]
[ 0.000000] kvm-clock: cpu 0, msr 0:3ff44001, primary cpu clock
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: using sched offset of 4254011593 cycles
[ 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]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003ffeffff]
[ 0.000000] Normal empty
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000003ffeffff]
[ 0.000000] Reserved but unavailable: 114 pages
[ 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)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x40000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] random: get_random_bytes called from start_kernel+0x99/0x4fd with crng_init=0
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] percpu: Embedded 46 pages/cpu @ (ptrval) s151552 r8192 d28672 u1048576
[ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 257913
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-47-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] Memory: 983604K/1048120K available (12300K kernel code, 2473K rwdata, 4252K rodata, 2408K init, 2416K bss, 64516K 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] ftrace: allocating 39206 entries in 154 pages
[ 0.004000] Hierarchical RCU implementation.
[ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2.
[ 0.004000] Tasks RCU enabled.
[ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.004000] NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty1] enabled
[ 0.004000] console [ttyS0] enabled
[ 0.004000] ACPI: Core revision 20170831
[ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.004000] APIC: Switch to symmetric I/O mode setup
[ 0.004000] x2apic enabled
[ 0.004000] Switched APIC routing to physical x2apic.
[ 0.007480] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.008012] tsc: Detected 2793.544 MHz processor
[ 0.009282] Calibrating delay loop (skipped) preset value.. 5587.08 BogoMIPS (lpj=11174176)
[ 0.012002] pid_max: default: 32768 minimum: 301
[ 0.013301] Security Framework initialized
[ 0.014461] Yama: becoming mindful.
[ 0.016030] AppArmor: AppArmor initialized
[ 0.018507] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.020084] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.021890] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.024007] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.026234] mce: CPU supports 0 MCE banks
[ 0.027377] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.028003] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.029726] Spectre V2 : Mitigation: Full generic retpoline
[ 0.031210] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.032002] Speculative Store Bypass: Vulnerable
[ 0.036269] Freeing SMP alternatives memory: 36K
[ 0.040000] smpboot: CPU0: Intel(R) Core(TM) i7-4810MQ CPU @ 2.80GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.040000] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only.
[ 0.040040] Hierarchical SRCU implementation.
[ 0.041924] NMI watchdog: Perf event create on CPU 0 failed with -2
[ 0.044002] NMI watchdog: Perf NMI watchdog permanently disabled
[ 0.045643] smp: Bringing up secondary CPUs ...
[ 0.048117] x86: Booting SMP configuration:
[ 0.049286] .... node #0, CPUs: #1
[ 0.004000] kvm-clock: cpu 1, msr 0:3ff44041, secondary cpu clock
[ 0.004000] mce: CPU supports 0 MCE banks
[ 0.052017] smp: Brought up 1 node, 2 CPUs
[ 0.053262] smpboot: Max logical packages: 1
[ 0.054565] smpboot: Total of 2 processors activated (11174.17 BogoMIPS)
[ 0.056151] devtmpfs: initialized
[ 0.057155] x86/mm: Memory block size: 128MB
[ 0.060364] evm: security.selinux
[ 0.061435] evm: security.SMACK64
[ 0.062493] evm: security.SMACK64EXEC
[ 0.064003] evm: security.SMACK64TRANSMUTE
[ 0.065263] evm: security.SMACK64MMAP
[ 0.066422] evm: security.apparmor
[ 0.067525] evm: security.ima
[ 0.068003] evm: security.capability
[ 0.069155] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.072014] futex hash table entries: 512 (order: 3, 32768 bytes)
[ 0.073929] pinctrl core: initialized pinctrl subsystem
[ 0.077318] RTC time: 13:17:15, date: 08/21/19
[ 0.080067] NET: Registered protocol family 16
[ 0.081619] audit: initializing netlink subsys (disabled)
[ 0.083228] audit: type=2000 audit(1566393441.379:1): state=initialized audit_enabled=0 res=1
[ 0.084012] cpuidle: using governor ladder
[ 0.085317] cpuidle: using governor menu
[ 0.088095] ACPI: bus type PCI registered
[ 0.089318] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.091381] PCI: Using configuration type 1 for base access
[ 0.096310] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.098028] ACPI: Added _OSI(Module Device)
[ 0.100003] ACPI: Added _OSI(Processor Device)
[ 0.101388] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.102770] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.104010] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.105388] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.106981] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.108425] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.122815] ACPI: Interpreter enabled
[ 0.124024] ACPI: (supports S0 S5)
[ 0.125101] ACPI: Using IOAPIC for interrupt routing
[ 0.127258] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.128338] ACPI: Enabled 2 GPEs in block 00 to 07
[ 0.148118] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.149896] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 0.153436] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 0.156021] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 0.160302] PCI host bridge to bus 0000:00
[ 0.161557] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.163474] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.164004] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.166322] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfdffffff window]
[ 0.168004] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.174232] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.176000] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.176004] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.180003] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.201309] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
[ 0.203547] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
[ 0.217797] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 0.220174] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
[ 0.222067] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
[ 0.224240] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
[ 0.226424] SCSI subsystem initialized
[ 0.228057] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.229738] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.232000] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.232002] vgaarb: loaded
[ 0.232965] ACPI: bus type USB registered
[ 0.236025] usbcore: registered new interface driver usbfs
[ 0.237685] usbcore: registered new interface driver hub
[ 0.239213] usbcore: registered new device driver usb
[ 0.240070] EDAC MC: Ver: 3.0.0
[ 0.241382] PCI: Using ACPI for IRQ routing
[ 0.244369] NetLabel: Initializing
[ 0.245425] NetLabel: domain hash size = 128
[ 0.246772] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.248000] NetLabel: unlabeled traffic allowed by default
[ 0.248154] clocksource: Switched to clocksource kvm-clock
[ 0.279557] VFS: Disk quotas dquot_6.6.0
[ 0.280791] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.282848] AppArmor: AppArmor Filesystem Enabled
[ 0.284308] pnp: PnP ACPI init
[ 0.287566] pnp: PnP ACPI: found 3 devices
[ 0.298595] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.301333] NET: Registered protocol family 2
[ 0.304078] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.306074] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
[ 0.307943] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.309792] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.311464] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.313306] NET: Registered protocol family 1
[ 0.314657] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.316602] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.318340] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.320929] Unpacking initramfs...
[ 0.839404] Freeing initrd memory: 18980K
[ 0.840899] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.843196] Scanning for low memory corruption every 60 seconds
[ 0.845930] Initialise system trusted keyrings
[ 0.847240] Key type blacklist registered
[ 0.848636] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[ 0.852978] zbud: loaded
[ 0.854749] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.856806] fuse init (API version 7.26)
[ 0.861979] Key type asymmetric registered
[ 0.863131] Asymmetric key parser 'x509' registered
[ 0.864500] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.866598] io scheduler noop registered
[ 0.867710] io scheduler deadline registered
[ 0.868974] io scheduler cfq registered (default)
[ 0.870645] ACPI: AC Adapter [AC] (on-line)
[ 0.871869] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.874050] ACPI: Power Button [PWRF]
[ 0.875182] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 0.877282] ACPI: Sleep Button [SLPF]
[ 0.880313] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.880387] ACPI: Battery Slot [BAT0] (battery present)

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€亗儎厗噲墛媽崕彁憭摂晼棙櫄洔潪煚、¥ウЖ┆<D096><E29486><EFBFBD>辈炒刀犯购患骄坷谅媚牌侨墒颂臀闲岩釉罩棕仝圮蒉哙徕沅彐玷殛腱眍镳耱篝貊鼬<E8B28A><E9BCAC><EFBFBD><EFBFBD>[ 0.906999] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.912241] Linux agpgart interface v0.103
[ 0.915622] loop: module loaded
[ 0.917639] scsi host0: ata_piix
[ 0.918859] scsi host1: ata_piix
[ 0.919990] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
[ 0.922004] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
[ 0.924121] libphy: Fixed MDIO Bus: probed
[ 0.925395] tun: Universal TUN/TAP device driver, 1.6
[ 0.926976] PPP generic driver version 2.4.2
[ 0.928018] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.930219] ehci-pci: EHCI PCI platform driver
[ 0.931606] ehci-platform: EHCI generic platform driver
[ 0.933184] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.934986] ohci-pci: OHCI PCI platform driver
[ 0.936464] ohci-platform: OHCI generic platform driver
[ 0.938008] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.939888] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 0.942941] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.944517] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.946120] mousedev: PS/2 mouse device common for all mice
[ 0.948178] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 0.951109] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[ 0.953035] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 0.954845] i2c /dev entries driver
[ 0.955965] pcie_mp2_amd: AMD(R) PCI-E MP2 Communication Driver Version: 1.0
[ 0.958210] device-mapper: uevent: version 1.0.3
[ 0.959694] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[ 0.962339] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.964495] NET: Registered protocol family 10
[ 0.970760] Segment Routing with IPv6
[ 0.971998] NET: Registered protocol family 17
[ 0.973423] Key type dns_resolver registered
[ 0.974930] RAS: Correctable Errors collector initialized.
[ 0.976528] sched_clock: Marking stable (974865421, 0)->(1383922684, -409057263)
[ 0.979215] registered taskstats version 1
[ 0.980484] Loading compiled-in X.509 certificates
[ 0.984865] Loaded X.509 cert 'Build time autogenerated kernel key: 7211859d1298c08a101905a3cb814e8c7b4bf4a4'
[ 0.987853] zswap: loaded using pool lzo/zbud
[ 0.993573] Key type big_key registered
[ 0.994801] Key type trusted registered
[ 0.998209] Key type encrypted registered
[ 0.999416] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.001087] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[ 1.002865] ima: Allocated hash algorithm: sha1
[ 1.004215] evm: HMAC attrs: 0x1
[ 1.005621] Magic number: 15:687:281
[ 1.006832] tty tty18: hash matches
[ 1.008069] rtc_cmos rtc_cmos: setting system clock to 2019-08-21 13:17:16 UTC (1566393436)
[ 1.010581] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.012299] EDD information not available.
[ 1.093298] Freeing unused kernel memory: 2408K
[ 1.104294] Write protecting the kernel read-only data: 20480k
[ 1.106934] Freeing unused kernel memory: 2008K
[ 1.118389] Freeing unused kernel memory: 1892K
[ 1.149407] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.151232] x86/mm: Checking user space page tables
[ 1.181811] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Loading, please wait...
starting version 237
[ 1.295826] Fusion MPT base driver 3.04.20
[ 1.297845] Copyright (c) 1999-2008 LSI Corporation
[ 1.307268] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 1.309341] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 1.322825] Fusion MPT SPI Host driver 3.04.20
[ 1.324473] AVX2 version of gcm_enc/dec engaged.
[ 1.325866] AES CTR mode by8 optimization enabled
[ 1.329395] mptbase: ioc0: Initiating bringup
[ 2.167330] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 2.173948] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28446e01dde, max_idle_ns: 440795216985 ns
[ 2.181557] ioc0: LSI53C1030 A0: Capabilities={Initiator}
[ 3.289752] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
[ 4.050157] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 4.104092] scsi target2:0:0: Beginning Domain Validation
[ 4.116643] scsi target2:0:0: Domain Validation skipping write tests
[ 4.121176] scsi target2:0:0: Ending Domain Validation
[ 4.125195] scsi target2:0:0: asynchronous
[ 4.130031] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 4.396076] scsi target2:0:1: Beginning Domain Validation
[ 4.399128] random: fast init done
[ 4.400552] scsi target2:0:1: Domain Validation skipping write tests
[ 4.402418] scsi target2:0:1: Ending Domain Validation
[ 4.404061] scsi target2:0:1: asynchronous
[ 4.412755] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 4.414878] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 4.414892] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 4.418664] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 4.420955] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
[ 4.423394] sd 2:0:0:0: [sda] Write Protect is off
[ 4.425068] sd 2:0:0:0: [sda] Incomplete mode parameter data
[ 4.426781] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 4.429744] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 4.431905] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
[ 4.434213] sd 2:0:1:0: [sdb] Write Protect is off
[ 4.435766] sd 2:0:1:0: [sdb] Incomplete mode parameter data
[ 4.437470] sd 2:0:1:0: [sdb] Assuming drive cache: write through
[ 4.439273] sda: sda1
[ 4.441150] sd 2:0:0:0: [sda] Attached SCSI disk
[ 4.444465] sd 2:0:1:0: [sdb] Attached SCSI disk
[ 4.521089] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:2f:6a:6c:35:c0
[ 4.522865] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 5.266306] e1000 0000:00:08.0 eth1: (PCI:33MHz:32-bit) 08:00:27:54:a3:2a
[ 5.270158] e1000 0000:00:08.0 eth1: Intel(R) PRO/1000 Network Connection
[ 5.276666] e1000 0000:00:03.0 enp0s3: renamed from eth0
[ 5.293500] e1000 0000:00:08.0 enp0s8: renamed from eth1
Begin: Loading essential drivers ... [ 7.360208] raid6: sse2x1 gen() 3075 MB/s
[ 7.408489] raid6: sse2x1 xor() 2039 MB/s
[ 7.456342] raid6: sse2x2 gen() 7227 MB/s
[ 7.504186] raid6: sse2x2 xor() 3369 MB/s
[ 7.552016] raid6: sse2x4 gen() 7835 MB/s
[ 7.600025] raid6: sse2x4 xor() 4465 MB/s
[ 7.648670] raid6: avx2x1 gen() 6231 MB/s
[ 7.696497] raid6: avx2x1 xor() 3467 MB/s
[ 7.745324] raid6: avx2x2 gen() 12204 MB/s
[ 7.792143] raid6: avx2x2 xor() 6227 MB/s
[ 7.840039] raid6: avx2x4 gen() 15524 MB/s
[ 7.888827] raid6: avx2x4 xor() 9013 MB/s
[ 7.890118] raid6: using algorithm avx2x4 gen() 15524 MB/s
[ 7.891730] raid6: .... xor() 9013 MB/s, rmw enabled
[ 7.893242] raid6: using avx2x2 recovery algorithm
[ 7.896062] xor: automatically using best checksumming function avx
[ 7.899706] async_tx: api initialized (async)
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [ 7.979753] Btrfs loaded, crc32c=crc32c-intel
Scanning for Btrfs filesystems
done.
Warning: fsck not present, so skipping root file system
[ 8.018472] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[ 8.256099] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 8.269268] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 8.275247] systemd[1]: Detected virtualization oracle.
[ 8.276870] systemd[1]: Detected architecture x86-64.
Welcome to Ubuntu 18.04.2 LTS!
[ 8.285066] systemd[1]: Set hostname to <ubuntu>.
[ 8.291668] systemd[1]: Initializing machine ID from random generator.
[ 8.293746] systemd[1]: Installed transient /etc/machine-id file.
[ 8.595458] systemd[1]: Created slice System Slice.
[ OK ] Created slice System Slice.
[ 8.614893] systemd[1]: Listening on Network Service Netlink Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ 8.617912] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
[ 8.636268] systemd[1]: Listening on LVM2 poll daemon socket.
[ OK ] Listening on LVM2 poll daemon socket.
[ OK ] Reached target System Time Synchronized.
Starting Set the console keyboard layout...
[ OK ] Listening on LVM2 metadata daemon socket.
[ OK ] Reached target Swap.
[ OK ] Created slice User and Session Slice.
[ OK ] Reached target Slices.
[ OK ] Set up automount Arbitrary Executab鈥<62>mats File System Automount Point.
Starting Uncomplicated firewall...
[ OK ] Created slice system-serial\x2dgetty.slice.
Mounting Huge Pages File System...
Mounting Kernel Debug File System...
[ OK ] Listening on Syslog Socket.
Starting Load Kernel Modules...
[ OK ] Listening on udev Kernel Socket.
[ OK ] Listening on Device-mapper event daemon FIFOs.
Starting Monitoring of LVM2 mirrors鈥<73>g dmeventd or progress polling...
Mounting POSIX Message Queue File System...
[ OK ] Listening on /dev/initctl Compatibility Named Pipe.
Starting Remount Root and Kernel File Systems...
[ OK ] Started Forward Password Requests to Wall Directory Watch.
Starting Create list of required st鈥<74>e nodes for the current kernel...
[ OK ] Listening on Journal Audit Socket.
[ OK ] Listening on udev Control Socket.
Starting udev Coldplug all Devices...
[ OK ] Reached target User and Group Name Lookups.
[ OK ] Listening on Journal Socket (/dev/log).
Starting Journal Service...
[ OK ] Started Uncomplicated firewall.
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted POSIX Message Queue File System.
[ 8.734212] Loading iSCSI transport class v2.0-870.
[ 8.743535] iscsi: registered transport (tcp)
[ OK ] Started Create list of required sta鈥<61>ice nodes for the current kernel.
Starting Create Static Device Nodes in /dev...
[ 8.816658] EXT4-fs (sda1): re-mounted. Opts: (null)
[ OK ] Started Remount Root and Kernel File Systems.
Starting Load/Save Random Seed...
Starting Initial cloud-init job (pre-networking)...
[ OK ] Started Journal Service.
[ OK ] Started Create Static Device Nodes in /dev.
[ OK ] Started LVM2 metadata daemon.
Starting udev Kernel Device Manager...
Starting Flush Journal to Persistent Storage...
[ 8.910217] iscsi: registered transport (iser)
[ OK ] Started udev Coldplug all Devices.
[ OK ] Started Load Kernel Modules.
Starting Apply Kernel Variables...
Mounting Kernel Configuration File System...
Mounting FUSE Control File System...
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Mounted FUSE Control File System.
[ OK ] Started Load/Save Random Seed.
[ OK ] Started udev Kernel Device Manager.
[ 9.016136] systemd-journald[398]: Received request to flush runtime journal from PID 1
[ OK ] Started Monitoring of LVM2 mirrors,鈥<>ing dmeventd or progress polling.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started Flush Journal to Persistent Storage.
[ OK ] Found device /dev/ttyS0.
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Started Set the console keyboard layout.
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Reached target Local Encrypted Volumes.
[ OK ] Reached target Local File Systems (Pre).
[ OK ] Reached target Local File Systems.
Starting AppArmor initialization...
Starting ebtables ruleset management...
Starting Set console font and keymap...
Starting Create Volatile Files and Directories...
Starting Commit a transient machine-id on disk...
Starting Tell Plymouth To Write Out Runtime Data...
[ OK ] Started Set console font and keymap.
[ OK ] Started Tell Plymouth To Write Out Runtime Data.
[ OK ] Started Create Volatile Files and Directories.
Starting Update UTMP about System Boot/Shutdown...
[ OK ] Started Commit a transient machine-id on disk.
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Started ebtables ruleset management.
[ 11.472786] cloud-init[412]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'init-local' at Wed, 21 Aug 2019 13:17:26 +0000. Up 10.69 seconds.
[ OK ] Started Initial cloud-init job (pre-networking).
[ OK ] Reached target Network (Pre).
Starting Network Service...
[ OK ] Started Network Service.
Starting Wait for Network to be Configured...
Starting Network Name Resolution...
[ OK ] Started Network Name Resolution.
[ OK ] Reached target Host and Network Name Lookups.
[ OK ] Reached target Network.
[ OK ] Started Wait for Network to be Configured.
Starting Initial cloud-init job (metadata service crawler)...
[ OK ] Started AppArmor initialization.
[ 13.952147] cloud-init[699]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'init' at Wed, 21 Aug 2019 13:17:29 +0000. Up 13.68 seconds.
[ 13.954262] cloud-init[699]: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++++
[ 13.956332] cloud-init[699]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 13.958177] cloud-init[699]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
[ 13.960148] cloud-init[699]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 13.962059] cloud-init[699]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | global | 02:2f:6a:6c:35:c0 |
[ 13.963968] cloud-init[699]: ci-info: | enp0s3 | True | fe80::2f:6aff:fe6c:35c0/64 | . | link | 02:2f:6a:6c:35:c0 |
[ 13.965945] cloud-init[699]: ci-info: | enp0s8 | False | . | . | . | 08:00:27:54:a3:2a |
[ 13.967904] cloud-init[699]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
[ 13.971105] cloud-init[699]: ci-info: | lo | True | ::1/128 | . | host | . |
[ 13.973096] cloud-init[699]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 13.975081] cloud-init[699]: ci-info: ++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++
[ 13.976829] cloud-init[699]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 13.978543] cloud-init[699]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
[ 13.980277] cloud-init[699]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 13.981977] cloud-init[699]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
[ 13.983758] cloud-init[699]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
[ 14.000879] cloud-init[699]: ci-info: | 2 | 10.0.2.2 | 0.0.0.0 | 255.255.255.255 | enp0s3 | UH |
[ 14.016814] cloud-init[699]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 14.028214] cloud-init[699]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
[ 14.029413] cloud-init[699]: ci-info: +-------+-------------+---------+-----------+-------+
[ 14.030564] cloud-init[699]: ci-info: | Route | Destination | Gateway | Interface | Flags |
[ 14.031736] cloud-init[699]: ci-info: +-------+-------------+---------+-----------+-------+
[ 14.033001] cloud-init[699]: ci-info: | 1 | fe80::/64 | :: | enp0s3 | U |
[ 14.034263] cloud-init[699]: ci-info: | 3 | local | :: | enp0s3 | U |
[ 14.035535] cloud-init[699]: ci-info: | 4 | ff00::/8 | :: | enp0s3 | U |
[ 14.036827] cloud-init[699]: ci-info: +-------+-------------+---------+-----------+-------+
[ 15.050590] cloud-init[699]: Generating public/private rsa key pair.
[ 15.051588] cloud-init[699]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
[ 15.064575] cloud-init[699]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
[ 15.065732] cloud-init[699]: The key fingerprint is:
[ 15.066526] cloud-init[699]: SHA256:6grju3ZC+8JYWtGkmtRgz6SRxaZbX/jOfYFtC6XdhSE root@ubuntu-bionic
[ 15.067818] cloud-init[699]: The key's randomart image is:
[ 15.068720] cloud-init[699]: +---[RSA 2048]----+
[ 15.069505] cloud-init[699]: | +. |
[ 15.070291] cloud-init[699]: | = +. E . |
[ 15.071040] cloud-init[699]: |. @+ . . o |
[ 15.071804] cloud-init[699]: | +o=.. . . . . |
[ 15.072596] cloud-init[699]: |.oo.. o S * . . |
[ 15.073390] cloud-init[699]: |o.+ . o + = . |
[ 15.074174] cloud-init[699]: | Bo. + . o o |
[ 15.074954] cloud-init[699]: |o.*o.. o . o |
[ 15.075734] cloud-init[699]: | .+Bo.. . |
[ 15.076529] cloud-init[699]: +----[SHA256]-----+
[ 15.077305] cloud-init[699]: Generating public/private dsa key pair.
[ 15.078357] cloud-init[699]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
[ 15.079690] cloud-init[699]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
[ 15.081013] cloud-init[699]: The key fingerprint is:
[ 15.081833] cloud-init[699]: SHA256:wkF/yX4uaM4s2RPEUBOl/gURagyp3QoGlfodYkCQpy8 root@ubuntu-bionic
[ 15.083237] cloud-init[699]: The key's randomart image is:
[ 15.084167] cloud-init[699]: +---[DSA 1024]----+
[ 15.084952] cloud-init[699]: |.+....oo+o+. |
[ 15.085730] cloud-init[699]: |. + ..o+ = o |
[ 15.086508] cloud-init[699]: | o + o.+* = |
[ 15.096737] cloud-init[699]: |. . *.o++o . |
[ 15.108496] cloud-init[699]: | . + +o+S . o |
[ 15.120205] cloud-init[699]: |E . . o..o + |
[ OK ] Started Initial cloud-init job (metadata service crawler).
[ 15.137717] [ OK ] Reached target Cloud-config availability.
[ OK ] Reached target System Initialization.
cloud-init[699]: | . oo.o . |
[ 15.140261] Starting LXD - unix socket.
cloud-init[699]: [ OK ] Started ACPI Events Check.
[ OK ] Reached target Paths.
| o=o . | Starting Socket activation for snappy daemon.
[ OK ] Listening on ACPID Listen Socket.
[ OK ] Listening on UUID daemon activation socket.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Listening on Open-iSCSI iscsid Socket.
[ OK ] Started Daily apt download activities.
[ OK ] Started Daily apt upgrade and clean activities.
[ OK ] Started Discard unused blocks once a week.
[ OK ] Started Message of the Day.
[ OK ] Reached target Timers.
[ OK ] Reached target Network is Online.
[ 15.157546] cloud-init[699]: | .+. |
[ 15.157636] cloud-init[699]: +----[SHA256]-----+
[ 15.158152] cloud-init[699]: Generating public/private ecdsa key pair.
[ 15.158742] cloud-init[699]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
[ 15.159176] cloud-init[699]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
[ 15.159674] cloud-init[699]: The key fingerprint is:
[ 15.160451] cloud-init[699]: SHA256:P4ZxSppR0+mCStIFmqh5endE0sQSx4oLNzh2Gg4UwV8 root@ubuntu-bionic
[ 15.160914] cloud-init[699]: The key's randomart image is:
[ 15.161474] cloud-init[699]: +---[ECDSA 256]---+
[ 15.162048] cloud-init[699]: |.oo o+o |
[ 15.162560] cloud-init[699]: | + o.Eo . . |
[ 15.163119] cloud-init[699]: |o.+.oo+ o o |
[ 15.163658] cloud-init[699]: Starting Availability of block devices...
[ OK ] Reached target Remote File Systems (Pre).
[ OK ] Reached target Remote File Systems.
[ OK ] Listening on LXD - unix socket.
[ OK ] Listening on Socket activation for snappy daemon.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
|*+++.+ o o |
[ 15.172808] cloud-init[699]: |*+*oo + S o |
[ OK ] Started Deferred execution scheduler.
Starting Permit User Sessions...
[ 15.180298] cloud-init[699]: | =.o o = B |
Starting System Logging Service...
[ 15.194918] cloud-init[699]: |. . o + o + |
[ 15.195933] [ OK ] Started D-Bus System Message Bus.
cloud-init[699]: | . . . . . |
[ 15.199104] cloud-init[699]: | |
[ 15.200105] cloud-init[699]: +----[SHA256]-----+
[ 15.201098] cloud-init[699]: Generating public/private ed25519 key pair.
[ 15.202414] cloud-init[699]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
[ 15.203790] cloud-init[699]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
[ 15.205479] cloud-init[699]: The key fingerprint is:
[ 15.209462] cloud-init[699]: SHA256:8iMt9p0mxT6hj06hEwikYBwglIFrvg79rtr5/so/hCc root@ubuntu-bionic
[ 15.211152] cloud-init[699]: The key's randomart image is:
[ 15.213046] cloud-init[699]: +--[ED25519 256]--+
[ 15.213938] cloud-init[699]: |O== |
[ 15.215441] cloud-init[699]: |== |
[ 15.217704] cloud-init[699]: |... |
[ 15.218912] cloud-init[699]: |.. . . |
[ 15.220332] cloud-init[699]: |o ..o S. |
[ 15.224347] cloud-init[699]: | o E o* .+ |
[ 15.224990] cloud-init[699]: |. o +* =+ . |
[ 15.236493] cloud-init[699]: |.o + ..*o++. |
[ 15.237315] cloud-init[699]: |oo+=B+oo+++. |
[ 15.237996] cloud-init[699]: +----[SHA256]-----+
Starting Pollinate to seed the pseudo random number generator...
Starting Accounts Service...
[ OK ] Started Regular background program processing daemon.
Starting Dispatcher daemon for systemd-networkd...
Starting Virtualbox guest utils...
Starting LSB: Record successful boot for GRUB...
Starting Snappy daemon...
Starting Login Service...
[ OK ] Started irqbalance daemon.
Starting LSB: automatic crash report generation...
[ OK ] Started FUSE filesystem for LXC.
Starting LXD - container startup/shutdown...
[ OK ] Started System Logging Service.
[ OK ] Started Availability of block devices.
[ OK ] Started Permit User Sessions.
Starting Terminate Plymouth Boot Screen...
Starting Hold until boot process finishes up...
[ OK ] Started Terminate Plymouth Boot Screen.
[ OK ] Started Hold until boot process finishes up.
Starting Set console scheme...
[ OK ] Started Serial Getty on ttyS0.
[ OK ] Started Set console scheme.
[ OK ] Started LSB: automatic crash report generation.
[ OK ] Started Login Service.
[ OK ] Started Unattended Upgrades Shutdown.
[ OK ] Created slice system-getty.slice.
[ OK ] Started Getty on tty1.
[ OK ] Reached target Login Prompts.
Starting Authorization Manager...
[ OK ] Started LSB: Record successful boot for GRUB.
[ OK ] Started Authorization Manager.
[ OK ] Started Accounts Service.
[ OK ] Started LXD - container startup/shutdown.
[ OK ] Started Virtualbox guest utils.
[ OK ] Started Dispatcher daemon for systemd-networkd.
[ OK ] Started Snappy daemon.
Starting Wait until snapd is fully seeded...
[ OK ] Started Pollinate to seed the pseudo random number generator.
Starting OpenBSD Secure Shell server...
[ OK ] Started OpenBSD Secure Shell server.
[ OK ] Started Wait until snapd is fully seeded.
Starting Apply the settings specified in cloud-config...
[ OK ] Reached target Multi-User System.
[ OK ] Reached target Graphical Interface.
Starting Update UTMP about System Runlevel Changes...
[ OK ] Started Update UTMP about System Runlevel Changes.
[ 19.301656] cloud-init[1143]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'modules:config' at Wed, 21 Aug 2019 13:17:34 +0000. Up 18.62 seconds.
[ OK ] Started Apply the settings specified in cloud-config.
Starting Execute cloud user/final scripts...
[ OK ] Created slice User Slice of vagrant.
Starting User Manager for UID 1000...
[ OK ] Started Session 1 of user vagrant.
[ OK ] Started User Manager for UID 1000.
ci-info: no authorized ssh keys fingerprints found for user ubuntu.
<14>Aug 21 13:17:35 ec2:
<14>Aug 21 13:17:35 ec2: #############################################################
<14>Aug 21 13:17:35 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Aug 21 13:17:35 ec2: 1024 SHA256:wkF/yX4uaM4s2RPEUBOl/gURagyp3QoGlfodYkCQpy8 root@ubuntu-bionic (DSA)
<14>Aug 21 13:17:35 ec2: 256 SHA256:P4ZxSppR0+mCStIFmqh5endE0sQSx4oLNzh2Gg4UwV8 root@ubuntu-bionic (ECDSA)
<14>Aug 21 13:17:35 ec2: 256 SHA256:8iMt9p0mxT6hj06hEwikYBwglIFrvg79rtr5/so/hCc root@ubuntu-bionic (ED25519)
<14>Aug 21 13:17:35 ec2: 2048 SHA256:6grju3ZC+8JYWtGkmtRgz6SRxaZbX/jOfYFtC6XdhSE root@ubuntu-bionic (RSA)
<14>Aug 21 13:17:35 ec2: -----END SSH HOST KEY FINGERPRINTS-----
<14>Aug 21 13:17:35 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJftuPFOioguNKi+RxJYzEUSSKuv1KeMEwkE4q4cIsO/WeMsrBRVRvGpnuNAL9K2Km2unu5tao44yk34c8pnvGM= root@ubuntu-bionic
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGJCamTqImaH7PCPrKiUYrutGLwI19ZrlTJTk5vRVPwk root@ubuntu-bionic
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDqjhAq6CrVLl8q/+QJ8TzxxnUxZ+ayu1ohelmW51QcrJNgN6MUoua001pF9riCRquz3WBvb431VcRRa64RDhy6CBfzgIhGgkfvPfHLeWTaL/CAAxxigQFXzImVEmldLD25TduewRj5CCDyEz+7cXaT7qsdPzuTK0Remo7UepNE7b3vikbKuZidsHiZIIuqgXQtdZcgMUiDEOufRhjRQvdB22wriI8pfbli9HFt+G0zCCIQRda7YyxsT1W6dkIdaV25NowoE3Aiu9EhORFLSaOYOigXKA7MfzhwBtWO2NgKUFdh5Dn4knIchKqKns63FSqj9ZYgq8LznLYaSbyIMeIz root@ubuntu-bionic
-----END SSH HOST KEY KEYS-----
[ 20.323313] cloud-init[1206]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'modules:final' at Wed, 21 Aug 2019 13:17:35 +0000. Up 20.07 seconds.
[ 20.325612] cloud-init[1206]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
[ 20.327256] cloud-init[1206]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 finished at Wed, 21 Aug 2019 13:17:35 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 20.31 seconds
[ OK ] Started Execute cloud user/final scripts.
[ OK ] Reached target Cloud-init target.
Ubuntu 18.04.2 LTS ubuntu-bionic ttyS0
ubuntu-bionic login:

View File

@ -0,0 +1,683 @@
[ 0.000000] Linux version 4.15.0-47-generic (buildd@lgw01-amd64-001) (gcc version 7.3.0 (Ubuntu 7.3.0-16ubuntu3)) #50-Ubuntu SMP Wed Mar 13 10:44:52 UTC 2019 (Ubuntu 4.15.0-47.50-generic 4.15.18)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-47-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 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: [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
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.5 present.
[ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: last_pfn = 0x3fff0 max_arch_pfn = 0x400000000
[ 0.000000] MTRR: Disabled
[ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[ 0.000000] CPU MTRRs all blank - virtualized system.
[ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
[ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ (ptrval)]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] RAMDISK: [mem 0x35add000-0x36d65fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
[ 0.000000] ACPI: XSDT 0x000000003FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
[ 0.000000] ACPI: FACP 0x000000003FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
[ 0.000000] ACPI: DSDT 0x000000003FFF0470 0022EA (v02 VBOX VBOXBIOS 00000002 INTL 20100528)
[ 0.000000] ACPI: FACS 0x000000003FFF0200 000040
[ 0.000000] ACPI: FACS 0x000000003FFF0200 000040
[ 0.000000] ACPI: APIC 0x000000003FFF0240 00005C (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
[ 0.000000] ACPI: SSDT 0x000000003FFF02A0 0001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000003ffeffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x3ffc5000-0x3ffeffff]
[ 0.000000] kvm-clock: cpu 0, msr 0:3ff44001, primary cpu clock
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: using sched offset of 3513523016 cycles
[ 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]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000003ffeffff]
[ 0.000000] Normal empty
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000003ffeffff]
[ 0.000000] Reserved but unavailable: 114 pages
[ 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)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x40000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] random: get_random_bytes called from start_kernel+0x99/0x4fd with crng_init=0
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] percpu: Embedded 46 pages/cpu @ (ptrval) s151552 r8192 d28672 u1048576
[ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 257913
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-47-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] Memory: 983604K/1048120K available (12300K kernel code, 2473K rwdata, 4252K rodata, 2408K init, 2416K bss, 64516K 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] ftrace: allocating 39206 entries in 154 pages
[ 0.004000] Hierarchical RCU implementation.
[ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2.
[ 0.004000] Tasks RCU enabled.
[ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.004000] NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty1] enabled
[ 0.004000] console [ttyS0] enabled
[ 0.004000] ACPI: Core revision 20170831
[ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.004000] APIC: Switch to symmetric I/O mode setup
[ 0.004000] x2apic enabled
[ 0.004000] Switched APIC routing to physical x2apic.
[ 0.004000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.004000] tsc: Detected 2793.540 MHz processor
[ 0.004000] Calibrating delay loop (skipped) preset value.. 5587.08 BogoMIPS (lpj=11174160)
[ 0.004004] pid_max: default: 32768 minimum: 301
[ 0.004574] Security Framework initialized
[ 0.005092] Yama: becoming mindful.
[ 0.005543] AppArmor: AppArmor initialized
[ 0.008031] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.008916] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.009685] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.010454] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.011472] mce: CPU supports 0 MCE banks
[ 0.012013] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.012713] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.013462] Spectre V2 : Mitigation: Full generic retpoline
[ 0.014122] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.015056] Speculative Store Bypass: Vulnerable
[ 0.015667] Freeing SMP alternatives memory: 36K
[ 0.020000] APIC calibration not consistent with PM-Timer: 98ms instead of 100ms
[ 0.020000] APIC delta adjusted to PM-Timer: 6243422 (6158218)
[ 0.020000] smpboot: CPU0: Intel(R) Core(TM) i7-4810MQ CPU @ 2.80GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.020000] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only.
[ 0.020000] Hierarchical SRCU implementation.
[ 0.020000] NMI watchdog: Perf event create on CPU 0 failed with -2
[ 0.020002] NMI watchdog: Perf NMI watchdog permanently disabled
[ 0.020827] smp: Bringing up secondary CPUs ...
[ 0.021491] x86: Booting SMP configuration:
[ 0.022037] .... node #0, CPUs: #1
[ 0.004000] kvm-clock: cpu 1, msr 0:3ff44041, secondary cpu clock
[ 0.004000] mce: CPU supports 0 MCE banks
[ 0.026199] smp: Brought up 1 node, 2 CPUs
[ 0.026199] smpboot: Max logical packages: 1
[ 0.026199] smpboot: Total of 2 processors activated (11174.16 BogoMIPS)
[ 0.028053] devtmpfs: initialized
[ 0.028641] x86/mm: Memory block size: 128MB
[ 0.029480] evm: security.selinux
[ 0.032002] evm: security.SMACK64
[ 0.032438] evm: security.SMACK64EXEC
[ 0.032919] evm: security.SMACK64TRANSMUTE
[ 0.033427] evm: security.SMACK64MMAP
[ 0.033901] evm: security.apparmor
[ 0.034447] evm: security.ima
[ 0.034989] evm: security.capability
[ 0.036062] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.037442] futex hash table entries: 512 (order: 3, 32768 bytes)
[ 0.038364] pinctrl core: initialized pinctrl subsystem
[ 0.040130] RTC time: 7:16:20, date: 04/25/19
[ 0.040984] NET: Registered protocol family 16
[ 0.041729] audit: initializing netlink subsys (disabled)
[ 0.042549] audit: type=2000 audit(1556176585.365:1): state=initialized audit_enabled=0 res=1
[ 0.044009] cpuidle: using governor ladder
[ 0.044653] cpuidle: using governor menu
[ 0.045282] ACPI: bus type PCI registered
[ 0.045901] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.046902] PCI: Using configuration type 1 for base access
[ 0.048198] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.049099] ACPI: Added _OSI(Module Device)
[ 0.049099] ACPI: Added _OSI(Processor Device)
[ 0.052012] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.052687] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.053493] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.054184] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.054971] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.056085] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.059731] ACPI: Interpreter enabled
[ 0.060000] ACPI: (supports S0 S5)
[ 0.060002] ACPI: Using IOAPIC for interrupt routing
[ 0.060920] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.062354] ACPI: Enabled 2 GPEs in block 00 to 07
[ 0.068417] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.069364] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 0.070781] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 0.072000] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 0.072254] PCI host bridge to bus 0000:00
[ 0.072959] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.073846] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.074780] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.076002] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfdffffff window]
[ 0.076946] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.080793] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.082214] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.083033] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.083920] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.097345] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
[ 0.098397] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
[ 0.106372] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 0.107433] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
[ 0.108061] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
[ 0.108855] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
[ 0.109852] SCSI subsystem initialized
[ 0.110577] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.110577] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.112008] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.112856] vgaarb: loaded
[ 0.113320] ACPI: bus type USB registered
[ 0.113920] usbcore: registered new interface driver usbfs
[ 0.114749] usbcore: registered new interface driver hub
[ 0.116020] usbcore: registered new device driver usb
[ 0.116714] EDAC MC: Ver: 3.0.0
[ 0.116714] PCI: Using ACPI for IRQ routing
[ 0.116750] NetLabel: Initializing
[ 0.117226] NetLabel: domain hash size = 128
[ 0.117762] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.120017] NetLabel: unlabeled traffic allowed by default
[ 0.120768] clocksource: Switched to clocksource kvm-clock
[ 0.144759] VFS: Disk quotas dquot_6.6.0
[ 0.145334] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.146449] AppArmor: AppArmor Filesystem Enabled
[ 0.147231] pnp: PnP ACPI init
[ 0.148645] pnp: PnP ACPI: found 3 devices
[ 0.157365] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.158548] NET: Registered protocol family 2
[ 0.164664] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.165614] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
[ 0.166421] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.167215] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.167919] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.168772] NET: Registered protocol family 1
[ 0.169306] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.170071] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.170849] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.172012] Unpacking initramfs...
[ 0.530474] Freeing initrd memory: 18980K
[ 0.531237] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.532202] Scanning for low memory corruption every 60 seconds
[ 0.533509] Initialise system trusted keyrings
[ 0.534190] Key type blacklist registered
[ 0.534922] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[ 0.536668] zbud: loaded
[ 0.537462] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.538472] fuse init (API version 7.26)
[ 0.541209] Key type asymmetric registered
[ 0.541806] Asymmetric key parser 'x509' registered
[ 0.542514] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.543590] io scheduler noop registered
[ 0.544109] io scheduler deadline registered
[ 0.544803] io scheduler cfq registered (default)
[ 0.545667] ACPI: AC Adapter [AC] (on-line)
[ 0.546268] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.547332] ACPI: Power Button [PWRF]
[ 0.547927] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 0.548946] ACPI: Sleep Button [SLPF]
[ 0.550292] ACPI: Battery Slot [BAT0] (battery present)
[ 0.551050] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€亗儎厗噲墛媽崕彁憭摂晼棙櫄洔潪煚、¥ウЖ┆<D096><E29486><EFBFBD>辈炒刀犯购患骄坷谅媚牌侨墒颂臀闲岩釉罩棕仝圮蒉哙徕沅彐玷殛腱眍镳耱篝貊鼬<E8B28A><E9BCAC><EFBFBD><EFBFBD>[ 0.573336] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.576778] Linux agpgart interface v0.103
[ 0.578351] loop: module loaded
[ 0.579162] scsi host0: ata_piix
[ 0.579683] scsi host1: ata_piix
[ 0.580104] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
[ 0.580962] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
[ 0.582107] libphy: Fixed MDIO Bus: probed
[ 0.582706] tun: Universal TUN/TAP device driver, 1.6
[ 0.583332] PPP generic driver version 2.4.2
[ 0.583942] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.584770] ehci-pci: EHCI PCI platform driver
[ 0.585335] ehci-platform: EHCI generic platform driver
[ 0.585997] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.586729] ohci-pci: OHCI PCI platform driver
[ 0.587265] ohci-platform: OHCI generic platform driver
[ 0.587867] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.588706] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 0.590006] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.590610] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.591354] mousedev: PS/2 mouse device common for all mice
[ 0.592598] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 0.593758] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[ 0.594536] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 0.595290] i2c /dev entries driver
[ 0.595718] pcie_mp2_amd: AMD(R) PCI-E MP2 Communication Driver Version: 1.0
[ 0.596655] device-mapper: uevent: version 1.0.3
[ 0.597266] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[ 0.598316] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.599378] NET: Registered protocol family 10
[ 0.603118] Segment Routing with IPv6
[ 0.603689] NET: Registered protocol family 17
[ 0.604488] Key type dns_resolver registered
[ 0.605287] RAS: Correctable Errors collector initialized.
[ 0.605973] sched_clock: Marking stable (605257639, 0)->(841165245, -235907606)
[ 0.607148] registered taskstats version 1
[ 0.607670] Loading compiled-in X.509 certificates
[ 0.610257] Loaded X.509 cert 'Build time autogenerated kernel key: 7211859d1298c08a101905a3cb814e8c7b4bf4a4'
[ 0.611667] zswap: loaded using pool lzo/zbud
[ 0.614739] Key type big_key registered
[ 0.615253] Key type trusted registered
[ 0.616971] Key type encrypted registered
[ 0.617495] AppArmor: AppArmor sha1 policy hashing enabled
[ 0.618129] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[ 0.618835] ima: Allocated hash algorithm: sha1
[ 0.619376] evm: HMAC attrs: 0x1
[ 0.619997] Magic number: 15:326:269
[ 0.620582] rtc_cmos rtc_cmos: setting system clock to 2019-04-25 07:16:21 UTC (1556176581)
[ 0.621619] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 0.622327] EDD information not available.
[ 0.748435] Freeing unused kernel memory: 2408K
[ 0.760526] Write protecting the kernel read-only data: 20480k
[ 0.765941] Freeing unused kernel memory: 2008K
[ 0.781820] Freeing unused kernel memory: 1892K
[ 0.793628] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.795295] x86/mm: Checking user space page tables
[ 0.804885] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Loading, please wait...
starting version 237
[ 0.873177] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 0.874196] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 0.878004] Fusion MPT base driver 3.04.20
[ 0.878632] Copyright (c) 1999-2008 LSI Corporation
[ 0.882450] Fusion MPT SPI Host driver 3.04.20
[ 0.888802] AVX2 version of gcm_enc/dec engaged.
[ 0.889458] AES CTR mode by8 optimization enabled
[ 1.077086] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 1.227526] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:2f:6a:6c:35:c0
[ 1.228381] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.230027] mptbase: ioc0: Initiating bringup
[ 1.325691] ioc0: LSI53C1030 A0: Capabilities={Initiator}
[ 1.532443] tsc: Refined TSC clocksource calibration: 2794.943 MHz
[ 1.536336] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x284997aa187, max_idle_ns: 440795267538 ns
[ 1.576450] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
[ 1.750179] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 1.804222] scsi target2:0:0: Beginning Domain Validation
[ 1.807707] scsi target2:0:0: Domain Validation skipping write tests
[ 1.808542] scsi target2:0:0: Ending Domain Validation
[ 1.809221] scsi target2:0:0: asynchronous
[ 1.810051] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 2.056068] scsi target2:0:1: Beginning Domain Validation
[ 2.058240] random: fast init done
[ 2.058747] scsi target2:0:1: Domain Validation skipping write tests
[ 2.059549] scsi target2:0:1: Ending Domain Validation
[ 2.060228] scsi target2:0:1: asynchronous
[ 2.063855] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 2.064887] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 2.065870] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 2.067003] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 2.067938] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 2.068864] sd 2:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB)
[ 2.069845] sd 2:0:0:0: [sda] Write Protect is off
[ 2.070517] sd 2:0:0:0: [sda] Incomplete mode parameter data
[ 2.071213] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 2.076094] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
[ 2.077283] sda: sda1
[ 2.078305] sd 2:0:1:0: [sdb] Write Protect is off
[ 2.079199] sd 2:0:1:0: [sdb] Incomplete mode parameter data
[ 2.079905] sd 2:0:1:0: [sdb] Assuming drive cache: write through
[ 2.080854] sd 2:0:0:0: [sda] Attached SCSI disk
[ 2.083388] sd 2:0:1:0: [sdb] Attached SCSI disk
[ 2.124162] e1000 0000:00:08.0 eth1: (PCI:33MHz:32-bit) 08:00:27:9b:d2:9e
[ 2.125053] e1000 0000:00:08.0 eth1: Intel(R) PRO/1000 Network Connection
[ 2.126668] e1000 0000:00:08.0 enp0s8: renamed from eth1
[ 2.140908] e1000 0000:00:03.0 enp0s3: renamed from eth0
Begin: Loading essential drivers ... [ 3.576714] raid6: sse2x1 gen() 12090 MB/s
[ 3.624572] raid6: sse2x1 xor() 8545 MB/s
[ 3.672380] raid6: sse2x2 gen() 13978 MB/s
[ 3.720220] raid6: sse2x2 xor() 9249 MB/s
[ 3.768065] raid6: sse2x4 gen() 16917 MB/s
[ 3.816011] raid6: sse2x4 xor() 10591 MB/s
[ 3.864742] raid6: avx2x1 gen() 23487 MB/s
[ 3.912582] raid6: avx2x1 xor() 16048 MB/s
[ 3.960401] raid6: avx2x2 gen() 26831 MB/s
[ 4.008239] raid6: avx2x2 xor() 16479 MB/s
[ 4.056104] raid6: avx2x4 gen() 30072 MB/s
[ 4.104008] raid6: avx2x4 xor() 18959 MB/s
[ 4.104690] raid6: using algorithm avx2x4 gen() 30072 MB/s
[ 4.105351] raid6: .... xor() 18959 MB/s, rmw enabled
[ 4.105955] raid6: using avx2x2 recovery algorithm
[ 4.107824] xor: automatically using best checksumming function avx
[ 4.109681] async_tx: api initialized (async)
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [ 4.146749] Btrfs loaded, crc32c=crc32c-intel
Scanning for Btrfs filesystems
done.
Warning: fsck not present, so skipping root file system
[ 4.176267] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[ 4.372748] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 4.389800] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 4.395438] systemd[1]: Detected virtualization oracle.
[ 4.396719] systemd[1]: Detected architecture x86-64.
Welcome to Ubuntu 18.04.2 LTS!
[ 4.416860] systemd[1]: Set hostname to <ubuntu>.
[ 4.423017] systemd[1]: Initializing machine ID from random generator.
[ 4.424603] systemd[1]: Installed transient /etc/machine-id file.
[ 4.820409] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ 4.825970] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount Arbitrary Executab鈥<62>mats File System Automount Point.
[ 4.831739] systemd[1]: Reached target System Time Synchronized.
[ OK ] Reached target System Time Synchronized.
[ 4.837371] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ OK ] Reached target Swap.
[ OK ] Reached target User and Group Name Lookups.
[ OK ] Created slice System Slice.
[ OK ] Listening on udev Kernel Socket.
[ OK ] Listening on LVM2 metadata daemon socket.
[ OK ] Reached target Slices.
[ OK ] Listening on Syslog Socket.
[ OK ] Listening on Journal Audit Socket.
[ OK ] Listening on LVM2 poll daemon socket.
[ OK ] Listening on /dev/initctl Compatibility Named Pipe.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ OK ] Listening on Device-mapper event daemon FIFOs.
[ OK ] Listening on Journal Socket.
Mounting POSIX Message Queue File System...
Starting Remount Root and Kernel File Systems...
Starting Load Kernel Modules...
[ OK ] Listening on udev Control Socket.
Starting udev Coldplug all Devices...
[ OK ] Listening on Journal Socket (/dev/log).
Starting Journal Service...
[ 4.924374] EXT4-fs (sda1): re-mounted. Opts: (null)
Starting Uncomplicated firewall...
Starting Monitoring of LVM2 mirrors鈥<73>g dmeventd or progress polling...
[ OK ] Listening on Network Service Netlink Socket.
[ 4.946035] Loading iSCSI transport class v2.0-870.
Mounting Kernel Debug File System...
Starting Set the console keyboard layout...
[ 4.957359] iscsi: registered transport (tcp)
Starting Create list of required st鈥<74>e nodes for the current kernel...
Mounting Huge Pages File System...
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Started Remount Root and Kernel File Systems.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Huge Pages File System.
Starting Load/Save Random Seed...
Starting Initial cloud-init job (pre-networking)...
[ OK ] Started Uncomplicated firewall.
[ OK ] Started Create list of required sta鈥<61>ice nodes for the current kernel.
[ OK ] Started udev Coldplug all Devices.
[ OK ] Started LVM2 metadata daemon.
Starting Create Static Device Nodes in /dev...
[ 5.043528] iscsi: registered transport (iser)
[ OK ] Started Load Kernel Modules.
Mounting FUSE Control File System...
Mounting Kernel Configuration File System...
Starting Apply Kernel Variables...
[ OK ] Started Load/Save Random Seed.
[ OK ] Mounted FUSE Control File System.
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Started Journal Service.
Starting Flush Journal to Persistent Storage...
[ OK ] Started Create Static Device Nodes in /dev.
Starting udev Kernel Device Manager...
[ OK ] Started Monitoring of LVM2 mirrors,鈥<>ing dmeventd or progress polling.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started udev Kernel Device Manager.
[ OK ] Started Flush Journal to Persistent Storage.
[ OK ] Found device /dev/ttyS0.
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Started Set the console keyboard layout.
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Reached target Local Encrypted Volumes.
[ OK ] Reached target Local File Systems (Pre).
[ OK ] Reached target Local File Systems.
Starting Create Volatile Files and Directories...
Starting Set console font and keymap...
Starting Tell Plymouth To Write Out Runtime Data...
Starting AppArmor initialization...
Starting ebtables ruleset management...
Starting Commit a transient machine-id on disk...
[ OK ] Started Create Volatile Files and Directories.
[ OK ] Started Set console font and keymap.
[ OK ] Started Tell Plymouth To Write Out Runtime Data.
Starting Update UTMP about System Boot/Shutdown...
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Started ebtables ruleset management.
[ OK ] Started Commit a transient machine-id on disk.
[ 7.058807] cloud-init[410]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'init-local' at Thu, 25 Apr 2019 07:16:27 +0000. Up 6.62 seconds.
[ OK ] Started Initial cloud-init job (pre-networking).
[ OK ] Reached target Network (Pre).
Starting Network Service...
[ OK ] Started Network Service.
Starting Network Name Resolution...
Starting Wait for Network to be Configured...
[ OK ] Started Network Name Resolution.
[ OK ] Reached target Network.
[ OK ] Reached target Host and Network Name Lookups.
[ OK ] Started AppArmor initialization.
[ OK ] Started Wait for Network to be Configured.
Starting Initial cloud-init job (metadata service crawler)...
[ 9.126988] cloud-init[738]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'init' at Thu, 25 Apr 2019 07:16:29 +0000. Up 9.01 seconds.
[ 9.127853] cloud-init[738]: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++++
[ 9.140196] cloud-init[738]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 9.140868] cloud-init[738]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
[ 9.152269] cloud-init[738]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 9.152944] cloud-init[738]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | global | 02:2f:6a:6c:35:c0 |
[ 9.153512] cloud-init[738]: ci-info: | enp0s3 | True | fe80::2f:6aff:fe6c:35c0/64 | . | link | 02:2f:6a:6c:35:c0 |
[ 9.154039] cloud-init[738]: ci-info: | enp0s8 | False | . | . | . | 08:00:27:9b:d2:9e |
[ 9.154582] cloud-init[738]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
[ 9.155161] cloud-init[738]: ci-info: | lo | True | ::1/128 | . | host | . |
[ 9.155723] cloud-init[738]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 9.156399] cloud-init[738]: ci-info: ++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++
[ 9.168328] cloud-init[738]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 9.169045] cloud-init[738]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
[ 9.169610] cloud-init[738]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 9.180175] cloud-init[738]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
[ 9.180946] cloud-init[738]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
[ 9.181563] cloud-init[738]: ci-info: | 2 | 10.0.2.2 | 0.0.0.0 | 255.255.255.255 | enp0s3 | UH |
[ 9.182273] cloud-init[738]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 9.183233] cloud-init[738]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
[ 9.184054] cloud-init[738]: ci-info: +-------+-------------+---------+-----------+-------+
[ 9.185512] cloud-init[738]: ci-info: | Route | Destination | Gateway | Interface | Flags |
[ 9.186355] cloud-init[738]: ci-info: +-------+-------------+---------+-----------+-------+
[ 9.187592] cloud-init[738]: ci-info: | 1 | fe80::/64 | :: | enp0s3 | U |
[ 9.188740] cloud-init[738]: ci-info: | 3 | local | :: | enp0s3 | U |
[ 9.189394] cloud-init[738]: ci-info: | 4 | ff00::/8 | :: | enp0s3 | U |
[ 9.190240] cloud-init[738]: ci-info: +-------+-------------+---------+-----------+-------+
[ 10.256478] cloud-init[738]: Generating public/private rsa key pair.
[ 10.256954] cloud-init[738]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
[ 10.257519] cloud-init[738]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
[ 10.258040] cloud-init[738]: The key fingerprint is:
[ 10.268187] cloud-init[738]: SHA256:kIo/qBQmauN2w1DPxHSM9K5XzF3NGSuDRr2+95/opEM root@ubuntu-bionic
[ 10.268719] cloud-init[738]: The key's randomart image is:
[ 10.269073] cloud-init[738]: +---[RSA 2048]----+
[ 10.269404] cloud-init[738]: | ..o .. . |
[ 10.269737] cloud-init[738]: | o.+ . ..o +|
[ 10.280233] cloud-init[738]: | o +. o +.= |
[ 10.280540] cloud-init[738]: | o +..o o ..o |
[ 10.280866] cloud-init[738]: |.oo = .S+ .. |
[ 10.281224] cloud-init[738]: |+..o o. . E . |
[ 10.281564] cloud-init[738]: |.++ o. . . .. |
[ 10.281895] cloud-init[738]: |+o.+ .. .o....|
[ 10.282247] cloud-init[738]: |o.. . .oo..=|
[ 10.282590] cloud-init[738]: +----[SHA256]-----+
[ 10.292558] cloud-init[738]: Generating public/private dsa key pair.
[ 10.293034] cloud-init[738]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
[ 10.293605] cloud-init[738]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
[ 10.294137] cloud-init[738]: The key fingerprint is:
[ 10.304268] cloud-init[738]: SHA256:HegmNPwOQcfhCbYE3tSi2i8x+kP7TAc2SsuB61zA3vk root@ubuntu-bionic
[ 10.304819] cloud-init[738]: The key's randomart image is:
[ OK ] Started Initial cloud-init job (metadata service crawler).
[ 10.316451] cloud-init[738]: +---[DSA 1024]----+
[ 10.317239] cloud-init[738]: | ..*oo. |
[ 10.317574] cloud-init[738]: | . B.=oo |
[ OK ] Reached target Cloud-config availability.
[ 10.317900] cloud-init[738]: | ..B.+ . |
[ OK ] Reached target System Initialization.
[ 10.318561] cloud-init[738]: | . ... = . . |
[[ 10.328908]  OK cloud-init] [738]: Started Message of the Day.| +oo * S . |
[ 10.329497] cloud-init[738]: | ..*=* B |
[ OK ] Started Discard unused blocks once a week.[ 10.329920]
cloud-init[738]: | ooB=. o |
[ 10.330473] cloud-init[738]: | o..++.. |
[ OK ] Started ACPI Events Check.
[ 10.340631] cloud-init[738]: | o..+E |
[ OK ] Reached target Paths.
[ 10.341164] cloud-init[738]: +----[SHA256]-----+
[ 10.341215] cloud-init[738]: Generating public/private ecdsa key pair.
[ 10.341279] cloud-init[738]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
[ 10.341343] cloud-init[738]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
[ 10.341637] cloud-init[738]: The key fingerprint is:
[ 10.341766] cloud-init[738]: SHA256:kyEUx4SQOhmrQsMIat9H2LFJ5v3RDogPvgdb0C/5/cw root@ubuntu-bionic
[ 10.343448] cloud-init[738]: The key's randomart image is:
[ 10.356731] cloud-init[738]: +---[ECDSA 256]---+
[ 10.356830] cloud-init[738]: | .oo=o |
Starting Socket activation for snappy daemon.
[ 10.356897] cloud-init[738]: |. . ...=. |
[ 10.357120] cloud-init[738]: |= = B O . . |
[ 10.357313] cloud-init[738]: |o== . @ * o . |
[ 10.357548] cloud-init[738]: |o.o.. o S + + |
[[ 10.359056] cloud-init[738]: |o . . + * o . |
[ 10.359142] cloud-init[738]: |. . = o . |
[ 10.359441] cloud-init[738]: | o . . .o |
[ 10.359754] cloud-init[738]: | . .E |
[ 10.360276] cloud-init[738]: +----[SHA256]-----+
[ 10.360574] cloud-init[738]: Generating public/private ed25519 key pair.
[ 10.360681] cloud-init[738]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
[ 10.360795] cloud-init[738]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
[ 10.360905] cloud-init[738]: The key fingerprint is:
[ 10.361019] cloud-init[738]: SHA256:9cogLfMIumBKMmTxv1noCpt2AsDOyEB5lN6D6CmgIAE root@ubuntu-bionic
[ 10.361127] cloud-init[738]: The key's randomart image is:
[ 10.361240] cloud-init[738]: +--[ED25519 256]--+
[ 10.361353] cloud-init[738]: |E o.. |
[ 10.361476] cloud-init[738]: |.o o |
[ 10.361784] cloud-init[738]: |oo+ o . |
[ 10.362084] cloud-init[738]: |*ooo o . . . |
[ 10.362384] cloud-init[738]: |&o... = S . |
[ 10.362702] cloud-init[738]: |B* ....* o . |
[ 10.362991] cloud-init[738]: |*+. o... o |
[ 10.363289] cloud-init[738]: |==+o. + |
[ 10.363725] cloud-init[738]: |oo+..+ |
[ 10.364030] cloud-init[738]: +----[SHA256]-----+
 OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Listening on Open-iSCSI iscsid Socket.
[ OK ] Started Daily apt download activities.
[ OK ] Started Daily apt upgrade and clean activities.
[ OK ] Listening on UUID daemon activation socket.
[ OK ] Started Daily Cleanup of Temporary Directories.
Starting LXD - unix socket.
[ OK ] Listening on ACPID Listen Socket.
[ OK ] Reached target Timers.
[ OK ] Reached target Network is Online.
Starting Availability of block devices...
[ OK ] Reached target Remote File Systems (Pre).
[ OK ] Reached target Remote File Systems.
[ OK ] Listening on Socket activation for snappy daemon.
[ OK ] Listening on LXD - unix socket.
[ OK ] Started Availability of block devices.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
Starting LXD - container startup/shutdown...
Starting Login Service...
[ OK ] Started Regular background program processing daemon.
Starting LSB: Record successful boot for GRUB...
Starting LSB: automatic crash report generation...
Starting Pollinate to seed the pseudo random number generator...
[ OK ] Started Deferred execution scheduler.
[ OK ] Started irqbalance daemon.
Starting Virtualbox guest utils...
[ OK ] Started D-Bus System Message Bus.
[ OK ] Started Login Service.
[ OK ] Started FUSE filesystem for LXC.
Starting System Logging Service...
[ OK ] Started Unattended Upgrades Shutdown.
Starting Snappy daemon...
Starting Dispatcher daemon for systemd-networkd...
Starting Accounts Service...
Starting Permit User Sessions...
[ OK ] Started Permit User Sessions.
[ OK ] Started System Logging Service.
Starting Hold until boot process finishes up...
Starting Terminate Plymouth Boot Screen...
[ OK ] Started Hold until boot process finishes up.
[ OK ] Started Terminate Plymouth Boot Screen.
Starting Set console scheme...
[ OK ] Started Serial Getty on ttyS0.
[ OK ] Started LXD - container startup/shutdown.
[ OK ] Started Set console scheme.
[ OK ] Created slice system-getty.slice.
[ OK ] Started Getty on tty1.
[ OK ] Reached target Login Prompts.
[ OK ] Started LSB: automatic crash report generation.
[ OK ] Started LSB: Record successful boot for GRUB.
[ OK ] Started Virtualbox guest utils.
Starting Authorization Manager...
[ OK ] Started Authorization Manager.
[ OK ] Started Accounts Service.
[ OK ] Started Dispatcher daemon for systemd-networkd.
[ OK ] Started Snappy daemon.
Starting Wait until snapd is fully seeded...
[ OK ] Started Pollinate to seed the pseudo random number generator.
Starting OpenBSD Secure Shell server...
[ OK ] Started OpenBSD Secure Shell server.
[ OK ] Started Wait until snapd is fully seeded.
Starting Apply the settings specified in cloud-config...
[ OK ] Reached target Multi-User System.
[ OK ] Reached target Graphical Interface.
Starting Update UTMP about System Runlevel Changes...
[ OK ] Started Update UTMP about System Runlevel Changes.
[ OK ] Created slice User Slice of vagrant.
Starting User Manager for UID 1000...
[ OK ] Started Session 1 of user vagrant.
[ OK ] Started User Manager for UID 1000.
[ 14.165073] cloud-init[1314]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'modules:config' at Thu, 25 Apr 2019 07:16:34 +0000. Up 13.50 seconds.
[ OK ] 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>Apr 25 07:16:35 ec2:
<14>Apr 25 07:16:35 ec2: #############################################################
<14>Apr 25 07:16:35 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Apr 25 07:16:35 ec2: 1024 SHA256:HegmNPwOQcfhCbYE3tSi2i8x+kP7TAc2SsuB61zA3vk root@ubuntu-bionic (DSA)
<14>Apr 25 07:16:35 ec2: 256 SHA256:kyEUx4SQOhmrQsMIat9H2LFJ5v3RDogPvgdb0C/5/cw root@ubuntu-bionic (ECDSA)
<14>Apr 25 07:16:35 ec2: 256 SHA256:9cogLfMIumBKMmTxv1noCpt2AsDOyEB5lN6D6CmgIAE root@ubuntu-bionic (ED25519)
<14>Apr 25 07:16:35 ec2: 2048 SHA256:kIo/qBQmauN2w1DPxHSM9K5XzF3NGSuDRr2+95/opEM root@ubuntu-bionic (RSA)
<14>Apr 25 07:16:35 ec2: -----END SSH HOST KEY FINGERPRINTS-----
<14>Apr 25 07:16:35 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCr/rf8DCpOpU2hb5IAR/N9qC5A+88xSsF5hl7unk5eo8/5FR8qkVQls0jgS/C5gKQ5lkpbxRkgzTfxK+y2ugoE= root@ubuntu-bionic
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEh30J2ysnjYdWV2m36LQAyR5xISkCs+2S1/3YP3PPaC root@ubuntu-bionic
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDu9JvoUIGhrGhCoQgYGOOJlmgWjMWxn8aRdGU7H0cFtqA7JCRrqpe9p2atoy/WY5waOJGYZvUd/bikJJ3aODfDU9OELdVwU1MLjYVn55/d5ufXSA5Jb4RP1cl+nJyF5Rg8Xp6a7kELtaWf0kSS+bgcIjxpH776T8rlZJcyB9txEKWJwwKe+LkJHW/CNleAgC8fy70vDDNtdA5hNJ3uhVeM/Yy2rcSBHuwrp7cvtiNVGz7WALXBKU2HPuYoAVpTt/QB9dHv9aLQWpLD/saB0K3GR3jOVbLwZoVAFTMnrUyM5SqvUTR67hNiqcvODg8wRKnkdLFyUL20uJQ1Q9AvMGNN root@ubuntu-bionic
-----END SSH HOST KEY KEYS-----
[ 14.787836] cloud-init[1419]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 running 'modules:final' at Thu, 25 Apr 2019 07:16:35 +0000. Up 14.53 seconds.
[ 14.808797] cloud-init[1419]: ci-info: no authorized ssh keys fingerprints found for user ubuntu.
[ 14.809489] cloud-init[1419]: Cloud-init v. 18.5-45-g3554ffe8-0ubuntu1~18.04.1 finished at Thu, 25 Apr 2019 07:16:35 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 14.78 seconds
[ OK ] Started Execute cloud user/final scripts.
[ OK ] Reached target Cloud-init target.
Ubuntu 18.04.2 LTS ubuntu-bionic ttyS0
ubuntu-bionic login:

4
Vagrantfile vendored
View File

@ -110,8 +110,8 @@ EOF
grep -q -e '#auth substack password-auth' /etc/pam.d/sshd || sed -i -e 's/auth substack password-auth/#auth substack password-auth/g' /etc/pam.d/sshd
grep -q -e 'auth requisite pam_unix.so' /etc/pam.d/sshd || sed -i '\$aauth requisite pam_unix.so' /etc/pam.d/sshd
grep -q -e 'auth required rublonPam.so' /etc/pam.d/sshd || sed -i '\$aauth required rublonPam.so' /etc/pam.d/sshd
grep -q -e 'account required rublonPam.so' /etc/pam.d/sshd || sed -i '\$aaccount required rublonPam.so' /etc/pam.d/sshd
grep -q -e 'auth required pam_rublon.so' /etc/pam.d/sshd || sed -i '\$aauth required pam_rublon.so' /etc/pam.d/sshd
grep -q -e 'account required pam_rublon.so' /etc/pam.d/sshd || sed -i '\$aaccount required pam_rublon.so' /etc/pam.d/sshd
rm /home/vagrant/login_rublon.te
rm /home/vagrant/login_rublon.mod