with standard partition layout we can have maximum 4 primary partitions(considering MBR)
with lvm we can create number of partitions
A partition has to be initialized and volume group has to be created for making lvm partitions on top of it.
Creating a new partition.
$fdsik -l /dev/sda Disk /dev/sda: 596.2 GiB, 640135028736 bytes, 1250263728 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x684fb552 Device Boot Start End Sectors Size Id Type /dev/sda1 2048 1250263727 1250261680 596.2G 83 Linux Filesystem/RAID signature on partition 1 will be wiped. Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks.
Making a file system on a created partition.
$mkfs.ext4 /dev/sda1 mke2fs 1.43.4 (31-Jan-2017) Creating filesystem with 156282710 4k blocks and 39075840 inodes Filesystem UUID: e04f9bff-bd5a-45c3-878f-c2a8e47bf92f Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968, 102400000 Allocating group tables: done Writing inode tables: done Creating journal (262144 blocks): done Writing superblocks and filesystem accounting information: done
Initialize a physical volume.
$pvcreate /dev/sda1 WARNING: ext4 signature detected on /dev/sda1 at offset 1080. Wipe it? [y/n]: y Wiping ext4 signature on /dev/sda1. Physical volume "/dev/sda1" successfully created.
Creating a volume group
$vgcreate Please provide volume group name and physical volumes Run `vgcreate --help' for more information.
Displaying the status
$ pvdisplay --- Physical volume --- PV Name /dev/sda1 VG Name store PV Size 596.17 GiB / not usable 3.34 MiB Allocatable yes PE Size 4.00 MiB Total PE 152619 Free PE 152619 Allocated PE 0 PV UUID U88UwP-7Idr-UcZL-6ojU-T9Ic-dEbj-edvG6m $vgdisplay --- Volume group --- VG Name store System ID Format lvm2 Metadata Areas 1 Metadata Sequence No 1 VG Access read/write VG Status resizable MAX LV 0 Cur LV 0 Open LV 0 Max PV 0 Cur PV 1 Act PV 1 VG Size 596.17 GiB PE Size 4.00 MiB Total PE 152619 Alloc PE / Size 0 / 0 Free PE / Size 152619 / 596.17 GiB VG UUID Qe5uAH-qyfs-iRXK-wrdy-rBJy-WHbB-398Jc5
Creating a storage pool for kvm , by default there will be a storage pool by name default location /var/libvirt/images.
we can create our lvm pool from xml configuration file
$cat store.xml <pool type="logical"> <name>store</name> <source> <device path="/dev/sda1"/> </source> <target> <path>/dev/store</path> </target> </pool> $virsh pool-define store.xml Pool store defined from store.xml $virsh pool-start store Pool store started $ virsh pool-list Name State Autostart ------------------------------------------- cipher active yes default active no store active no $virsh pool-autostart store Pool store marked as autostarted $ virsh pool-autostart default Pool default marked as autostarted $virsh pool-list Name State Autostart ------------------------------------------- cipher active yes default active yes store active yes
Creating vm from virt-install
$virt-install --name linux1 --ram 1024 --disk path=/dev/store/linux1 --vcpus 2 --os-type linux --os-variant rhel7 --graphics none --console pty,target_type=serial --location '/home/cipher/CentOS-7-x86_64-Minimal-1708.iso' --extra-args 'console=ttyS0,115200n8 serial'
$ virt-install --name linux1 --ram 1024 --disk path=/dev/store/linux1 --vcpus 2 --os-type linux --os-variant rhel7 --graphics none --console pty,target_type=serial --location '/home/cipher/CentOS-7-x86_64-Minimal-1708.iso' --extra-args 'console=ttyS0,115200n8 serial' Starting install... Retrieving file .treeinfo... | 354 B 00:00:00 Retrieving file vmlinuz... | 5.6 MB 00:00:00 Retrieving file initrd.img... | 46 MB 00:00:01 Connected to domain linux1 Escape character is ^] [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 3.10.0-693.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) ) #1 SMP Tue Aug 22 21:09:27 UTC 2017 [ 0.000000] Command line: console=ttyS0,115200n8 serial [ 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-0x000000003ffd8fff] usable [ 0.000000] BIOS-e820: [mem 0x000000003ffd9000-0x000000003fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.8 present. [ 0.000000] Hypervisor detected: KVM [ 0.000000] e820: last_pfn = 0x3ffd9 max_arch_pfn = 0x400000000 [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] found SMP MP-table at [mem 0x000f6bd0-0x000f6bdf] mapped at [ffff8800000f6bd0] [ 0.000000] RAMDISK: [mem 0x3d19f000-0x3ffcffff] [ 0.000000] Early table checksum verification disabled [ 0.000000] ACPI: RSDP 00000000000f69c0 00014 (v00 BOCHS ) [ 0.000000] ACPI: RSDT 000000003ffe1508 0002C (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) [ 0.000000] ACPI: FACP 000000003ffe1414 00074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) [ 0.000000] ACPI: DSDT 000000003ffe0040 013D4 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) [ 0.000000] ACPI: FACS 000000003ffe0000 00040 [ 0.000000] ACPI: APIC 000000003ffe1488 00080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000003ffd8fff] [ 0.000000] NODE_DATA(0) allocated [mem 0x3d178000-0x3d19efff] [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 [ 0.000000] kvm-clock: cpu 0, msr 0:3d128001, primary cpu clock [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0009efff] [ 0.000000] node 0: [mem 0x00100000-0x3ffd8fff] [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x3ffd8fff] [ 0.000000] ACPI: PM-Timer IO Port: 0x608 [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 0, version 17, 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 5 global_irq 5 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high 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 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-0xfeffbfff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on KVM [ 0.000000] setup_percpu: NR_CPUS:5120 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 33 pages/cpu @ffff88003ce00000 s97048 r8192 d29928 u1048576 [ 0.000000] KVM setup async PF for cpu 0 [ 0.000000] kvm-stealtime: cpu 0, msr 3ce0f440 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 257890 [ 0.000000] Policy zone: DMA32 [ 0.000000] Kernel command line: console=ttyS0,115200n8 serial [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] Memory: 966928k/1048420k available (6886k kernel code, 392k absent, 81100k reserved, 4545k data, 1764k init) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=2. [ 0.000000] NR_IRQS:327936 nr_irqs:440 0 [ 0.000000] Console: colour *CGA 80x25 [ 0.000000] console [ttyS0] enabled [ 0.000000] allocated 4194304 bytes of page_cgroup [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups [ 0.000000] tsc: Detected 1795.382 MHz processor [ 0.002000] Calibrating delay loop (skipped) preset value.. 3590.76 BogoMIPS (lpj=1795382) [ 0.002000] pid_max: default: 32768 minimum: 301 [ 0.002000] Security Framework initialized [ 0.002000] SELinux: Initializing. [ 0.003043] Yama: becoming mindful. [ 0.005273] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.008633] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) [ 0.009504] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes) [ 0.010000] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes) [ 0.011261] Initializing cgroup subsys memory [ 0.012029] Initializing cgroup subsys devices [ 0.013000] Initializing cgroup subsys freezer [ 0.013000] Initializing cgroup subsys net_cls [ 0.013000] Initializing cgroup subsys blkio [ 0.013011] Initializing cgroup subsys perf_event [ 0.014000] Initializing cgroup subsys hugetlb [ 0.014000] Initializing cgroup subsys pids [ 0.014011] Initializing cgroup subsys net_prio [ 0.015000] mce: CPU supports 10 MCE banks [ 0.015000] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.015000] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.015000] tlb_flushall_shift: -1 [ 0.015613] Freeing SMP alternatives: 24k freed [ 0.036645] ACPI: Core revision 20130517 [ 0.039864] ACPI: All ACPI Tables successfully acquired [ 0.042088] ftrace: allocating 26584 entries in 104 pages [ 0.055478] smpboot: Max logical packages: 2 [ 0.058579] Enabling x2apic [ 0.059000] Enabled x2apic [ 0.059031] Switched APIC routing to physical x2apic. [ 0.064623] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.065005] smpboot: CPU0: Intel Celeron_4x0 (Conroe/Merom Class Core 2) (fam: 06, model: 0f, stepping: 03) [ 0.070000] APIC calibration not consistent with PM-Timer: 98ms instead of 100ms [ 0.070000] APIC delta adjusted to PM-Timer: 6249940 (6170025) [ 0.070138] Performance Events: unsupported p6 CPU model 15 no PMU driver, software events only. [ 0.077444] smpboot: Booting Node 0, Processors #1 OK [ 0.002000] kvm-clock: cpu 1, msr 0:3d128041, secondary cpu clock [ 0.085000] TSC synchronization [CPU#0 -> CPU#1]: [ 0.085000] Measured 934 cycles TSC warp between CPUs, turning off TSC clock. [ 0.085000] tsc: Marking TSC unstable due to check_tsc_sync_source failed [ 0.086591] Brought up 2 CPUs [ 0.086572] KVM setup async PF for cpu 1 [ 0.086572] kvm-stealtime: cpu 1, msr 3cf0f440 [ 0.089007] smpboot: Total of 2 processors activated (7181.52 BogoMIPS) [ 0.092052] devtmpfs: initialized [ 0.097563] EVM: security.selinux [ 0.098025] EVM: security.ima [ 0.099004] EVM: security.capability [ 0.103142] atomic64 test passed for x86-64 platform with CX8 and with SSE [ 0.106006] pinctrl core: initialized pinctrl subsystem [ 0.109312] RTC time: 11:43:34, date: 03/30/18 [ 0.111162] NET: Registered protocol family 16 [ 0.114143] ACPI: bus type PCI registered [ 0.116007] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.119176] PCI: Using configuration type 1 for base access [ 0.127101] ACPI: Added _OSI(Module Device) [ 0.127101] ACPI: Added _OSI(Processor Device) [ 0.127101] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.130005] ACPI: Added _OSI(Processor Aggregator Device) [ 0.140472] ACPI: Interpreter enabled [ 0.141017] ACPI: (supports S0 S5) [ 0.142004] ACPI: Using IOAPIC for interrupt routing [ 0.143040] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.148802] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.149016] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI] [ 0.151004] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM [ 0.152052] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. [ 0.154471] acpiphp: Slot [2] registered [ 0.155079] acpiphp: Slot [4] registered [ 0.156049] acpiphp: Slot [5] registered [ 0.157062] acpiphp: Slot [6] registered [ 0.158046] acpiphp: Slot [7] registered [ 0.159045] acpiphp: Slot [8] registered [ 0.160060] acpiphp: Slot [9] registered [ 0.161081] acpiphp: Slot [10] registered [ 0.162065] acpiphp: Slot [11] registered [ 0.163076] acpiphp: Slot [12] registered [ 0.164060] acpiphp: Slot [13] registered [ 0.165046] acpiphp: Slot [14] registered [ 0.166046] acpiphp: Slot [15] registered [ 0.167065] acpiphp: Slot [16] registered [ 0.168093] acpiphp: Slot [17] registered [ 0.169062] acpiphp: Slot [18] registered [ 0.170055] acpiphp: Slot [19] registered [ 0.171064] acpiphp: Slot [20] registered [ 0.172046] acpiphp: Slot [21] registered [ 0.174027] acpiphp: Slot [22] registered [ 0.176026] acpiphp: Slot [23] registered [ 0.178023] acpiphp: Slot [24] registered [ 0.180018] acpiphp: Slot [25] registered [ 0.182028] acpiphp: Slot [26] registered [ 0.184061] acpiphp: Slot [27] registered [ 0.185065] acpiphp: Slot [28] registered [ 0.186061] acpiphp: Slot [29] registered [ 0.187059] acpiphp: Slot [30] registered [ 0.188069] acpiphp: Slot [31] registered [ 0.189046] PCI host bridge to bus 0000:00 [ 0.190009] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.191008] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.192007] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.193006] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.194007] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfebfffff window] [ 0.214096] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] [ 0.215014] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] [ 0.216008] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] [ 0.217007] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] [ 0.220818] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI [ 0.221041] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB [ 0.362872] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) [ 0.364918] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) [ 0.366469] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) [ 0.368303] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) [ 0.370050] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) [ 0.371910] ACPI: Enabled 2 GPEs in block 00 to 0F [ 0.372183] vgaarb: loaded [ 0.373154] SCSI subsystem initialized [ 0.374100] ACPI: bus type USB registered [ 0.376024] usbcore: registered new interface driver usbfs [ 0.377044] usbcore: registered new interface driver hub [ 0.378072] usbcore: registered new device driver usb [ 0.380083] PCI: Using ACPI for IRQ routing [ 0.382131] NetLabel: Initializing [ 0.383013] NetLabel: domain hash size = 128 [ 0.384010] NetLabel: protocols = UNLABELED CIPSOv4 [ 0.385051] NetLabel: unlabeled traffic allowed by default [ 0.386070] amd_nb: Cannot enumerate AMD northbridges [ 0.398074] Switched to clocksource kvm-clock [ 0.413045] pnp: PnP ACPI init [ 0.414651] ACPI: bus type PNP registered [ 0.417364] pnp: PnP ACPI: found 5 devices [ 0.419070] ACPI: bus type PNP unregistered [ 0.430277] NET: Registered protocol family 2 [ 0.432997] TCP established hash table entries: 8192 (order: 4, 65536 bytes) [ 0.436292] TCP bind hash table entries: 8192 (order: 5, 131072 bytes) [ 0.442211] TCP: Hash tables configured (established 8192 bind 8192) [ 0.445755] TCP: reno registered [ 0.449664] UDP hash table entries: 512 (order: 2, 16384 bytes) [ 0.452412] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [ 0.455422] NET: Registered protocol family 1 [ 0.460871] pci 0000:00:00.0: Limiting direct PCI/PCI transfers [ 0.463597] pci 0000:00:01.0: PIIX3: Enabling Passive Release [ 0.467338] pci 0000:00:01.0: Activating ISA DMA hang workarounds [ 0.518975] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 [ 0.621792] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10 [ 0.722144] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 [ 0.823086] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 [ 0.875847] Unpacking initramfs... [ 6.762454] Freeing initrd memory: 47300k freed [ 6.795628] sha1_ssse3: Using SSSE3 optimized SHA-1 implementation [ 6.799165] sha256_ssse3: Using SSSE3 optimized SHA-256 implementation [ 6.803163] futex hash table entries: 512 (order: 3, 32768 bytes) [ 6.805996] Initialise system trusted keyring [ 6.808048] audit: initializing netlink socket (disabled) [ 6.812783] type=2000 audit(1522410221.000:1): initialized [ 6.853623] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 6.859589] zpool: loaded [ 6.860883] zbud: loaded [ 6.862333] VFS: Disk quotas dquot_6.5.2 [ 6.864204] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 6.870139] msgmni has been set to 1980 [ 6.872071] Key type big_key registered [ 6.878928] NET: Registered protocol family 38 [ 6.881032] Key type asymmetric registered [ 6.882894] Asymmetric key parser 'x509' registered [ 6.885191] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250) [ 6.892287] io scheduler noop registered [ 6.894117] io scheduler deadline registered (default) [ 6.896523] io scheduler cfq registered [ 6.898495] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 6.903517] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 6.906753] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 6.912482] ACPI: Power Button [PWRF] [ 6.914510] GHES: HEST is not enabled! [ 6.918535] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 6.957499] 00:04: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [ 6.962185] Non-volatile memory driver v1.3 [ 6.965029] Linux agpgart interface v0.103 [ 6.968118] crash memory driver: version 1.1 [ 6.970204] rdac: device handler registered [ 6.973757] hp_sw: device handler registered [ 6.975744] emc: device handler registered [ 6.977643] alua: device handler registered [ 6.979647] libphy: Fixed MDIO Bus: probed [ 6.984300] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 6.987278] ehci-pci: EHCI PCI platform driver [ 7.041878] ehci-pci 0000:00:03.7: EHCI Host Controller [ 7.044575] ehci-pci 0000:00:03.7: new USB bus registered, assigned bus number 1 [ 7.048516] ehci-pci 0000:00:03.7: irq 11, io mem 0xfebc1000 [ 7.057351] ehci-pci 0000:00:03.7: USB 2.0 started, EHCI 1.00 [ 7.060107] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 7.063195] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.068410] usb usb1: Product: EHCI Host Controller [ 7.070434] usb usb1: Manufacturer: Linux 3.10.0-693.el7.x86_64 ehci_hcd [ 7.073310] usb usb1: SerialNumber: 0000:00:03.7 [ 7.075981] hub 1-0:1.0: USB hub found [ 7.077757] hub 1-0:1.0: 6 ports detected [ 7.080094] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 7.083109] ohci-pci: OHCI PCI platform driver [ 7.085274] uhci_hcd: USB Universal Host Controller Interface driver [ 7.138956] uhci_hcd 0000:00:03.0: UHCI Host Controller [ 7.141943] uhci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2 [ 7.145429] uhci_hcd 0000:00:03.0: detected 2 ports [ 7.147803] uhci_hcd 0000:00:03.0: irq 11, io base 0x0000c0a0 [ 7.153632] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 [ 7.159140] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.164553] usb usb2: Product: UHCI Host Controller [ 7.168085] usb usb2: Manufacturer: Linux 3.10.0-693.el7.x86_64 uhci_hcd [ 7.171478] usb usb2: SerialNumber: 0000:00:03.0 [ 7.174230] hub 2-0:1.0: USB hub found [ 7.175927] hub 2-0:1.0: 2 ports detected [ 7.237519] uhci_hcd 0000:00:03.1: UHCI Host Controller [ 7.241243] uhci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3 [ 7.244543] uhci_hcd 0000:00:03.1: detected 2 ports [ 7.247448] uhci_hcd 0000:00:03.1: irq 10, io base 0x0000c0c0 [ 7.250672] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001 [ 7.254194] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.257745] usb usb3: Product: UHCI Host Controller [ 7.259880] usb usb3: Manufacturer: Linux 3.10.0-693.el7.x86_64 uhci_hcd [ 7.263293] usb usb3: SerialNumber: 0000:00:03.1 [ 7.267279] hub 3-0:1.0: USB hub found [ 7.268996] hub 3-0:1.0: 2 ports detected [ 7.327583] uhci_hcd 0000:00:03.2: UHCI Host Controller [ 7.331451] uhci_hcd 0000:00:03.2: new USB bus registered, assigned bus number 4 [ 7.335771] uhci_hcd 0000:00:03.2: detected 2 ports [ 7.338099] uhci_hcd 0000:00:03.2: irq 10, io base 0x0000c0e0 [ 7.341852] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 [ 7.346094] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.349747] usb usb4: Product: UHCI Host Controller [ 7.351922] usb usb4: Manufacturer: Linux 3.10.0-693.el7.x86_64 uhci_hcd [ 7.354839] usb usb4: SerialNumber: 0000:00:03.2 [ 7.357273] hub 4-0:1.0: USB hub found [ 7.359655] hub 4-0:1.0: 2 ports detected [ 7.361781] usbcore: registered new interface driver usbserial [ 7.365103] usbcore: registered new interface driver usbserial_generic [ 7.368659] usbserial: USB Serial support registered for generic [ 7.371784] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 7.379172] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 7.382068] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 7.385143] mousedev: PS/2 mouse device common for all mice [ 7.388571] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 7.393513] rtc_cmos 00:00: RTC can wake from S4 [ 7.397179] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 [ 7.400808] rtc_cmos 00:00: alarms up to one day, y3k, 114 bytes nvram [ 7.404634] cpuidle: using governor menu [ 7.407000] hidraw: raw HID events driver (C) Jiri Kosina [ 7.411042] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input2 [ 7.415540] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 [ 7.422256] usbcore: registered new interface driver usbhid [ 7.425283] usbhid: USB HID core driver [ 7.427354] drop_monitor: Initializing network drop monitor service [ 7.430687] TCP: cubic registered [ 7.432527] Initializing XFRM netlink socket [ 7.435044] NET: Registered protocol family 10 [ 7.437991] NET: Registered protocol family 17 [ 7.441057] microcode: CPU0 sig=0x6f3, pf=0x1, revision=0x1 [ 7.443504] microcode: CPU1 sig=0x6f3, pf=0x1, revision=0x1 [ 7.446809] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 7.453542] Loading compiled-in X.509 certificates [ 7.456896] Loaded X.509 cert 'CentOS Linux kpatch signing key: ea0413152cde1d98ebdca3fe6f0230904c9ef717' [ 7.462777] Loaded X.509 cert 'CentOS Linux Driver update signing key: 7f421ee0ab69461574bb358861dbe77762a4201b' [ 7.470559] Loaded X.509 cert 'CentOS Linux kernel signing key: da187dca7dbe53ab05bd13bd0c4e21f422b6a49c' [ 7.476794] registered taskstats version 1 [ 7.492929] Key type trusted registered [ 7.506862] Key type encrypted registered [ 7.520864] IMA: No TPM chip found, activating TPM-bypass! [ 7.526083] Magic number: 10:87:733 [ 7.528250] rtc_cmos 00:00: setting system clock to 2018-03-30 11:43:42 UTC (1522410222) [ 7.538224] Freeing unused kernel memory: 1764k freed [ 7.554553] random: systemd: uninitialized urandom read (16 bytes read) [ 7.560322] random: systemd: uninitialized urandom read (16 bytes read) [ 7.563391] random: systemd: uninitialized urandom read (16 bytes read) [ 7.567649] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN) [ 7.575707] systemd[1]: Detected virtualization kvm. [ 7.577975] systemd[1]: Detected architecture x86-64. [ 7.580297] systemd[1]: Running in initial RAM disk. Welcome to CentOS Linux 7 (Core) dracut-033-502.el7 (Initramfs)! [ 7.586416] systemd[1]: No hostname configured. [ 7.588511] systemd[1]: Set hostname to <localhost>. [ 7.590970] systemd[1]: Initializing machine ID from KVM UUID. [ 7.614166] random: systemd-cryptse: uninitialized urandom read (16 bytes read) [ 7.690911] random: systemd: uninitialized urandom read (16 bytes read) [ 7.694076] random: systemd: uninitialized urandom read (16 bytes read) [ 7.697097] random: systemd: uninitialized urandom read (16 bytes read) [ 7.699919] random: systemd: uninitialized urandom read (16 bytes read) [ 7.705339] random: systemd: uninitialized urandom read (16 bytes read) [ 7.709082] random: systemd: uninitialized urandom read (16 bytes read) [ 7.722434] systemd[1]: Cannot add dependency job for unit blk-availability.service, ignoring: Unit not found. [ OK ] Created slice Root Slice. [ 7.730999] systemd[1]: Created slice Root Slice. [ 7.733242] systemd[1]: Starting Root Slice. [ OK ] Reached target Encrypted Volumes. [ 7.738374] systemd[1]: Reached target Encrypted Volumes. [ 7.740897] systemd[1]: Starting Encrypted Volumes. [ OK ] Reached target Local File Systems. [ 7.746317] systemd[1]: Reached target Local File Systems. [ 7.748883] systemd[1]: Starting Local File Systems. [ OK ] Reached target Timers. [ 7.753936] systemd[1]: Reached target Timers. [ 7.756010] systemd[1]: Starting Timers. [ OK ] Listening on Journal Socket. [ 7.760925] systemd[1]: Listening on Journal Socket. [ 7.763272] systemd[1]: Starting Journal Socket. [ OK ] Listening on udev Kernel Socket. [ 7.768481] systemd[1]: Listening on udev Kernel Socket. [ 7.770943] systemd[1]: Starting udev Kernel Socket. [ OK ] Reached target Swap. [ 7.775783] systemd[1]: Reached target Swap. [ 7.777652] systemd[1]: Starting Swap. [ OK ] Created slice System Slice. [ 7.782546] systemd[1]: Created slice System Slice. [ 7.784860] systemd[1]: Starting System Slice. [ 7.789663] 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.801136] systemd[1]: Starting dracut cmdline hook... Starting dracut cmdline hook... [ 7.811812] systemd[1]: Starting Apply Kernel Variables... Starting Apply Kernel Variables... [ OK ] Reached target Slices. [ 7.832581] systemd[1]: Reached target Slices. [ 7.835383] systemd[1]: Starting Slices. [ 7.839353] systemd[1]: Starting Journal Service... Starting Journal Service... [ OK ] Listening on udev Control Socket. [ 7.855894] systemd[1]: Listening on udev Control Socket. [ 7.859110] systemd[1]: Starting udev Control Socket. [ 7.870511] systemd[1]: Starting Setup Virtual Console... Starting Setup Virtual Console... [ OK ] Started Create list of required sta...ce nodes for the current kernel. [ 7.901682] systemd[1]: Started Create list of required static device nodes for the current kernel. [ OK ] Started Apply Kernel Variables. [ 7.924292] systemd[1]: Started Apply Kernel Variables. [ 7.929902] systemd[1]: Starting Create Static Device Nodes in /dev... Starting Create Static Device Nodes in /dev... [ OK ] Started Journal Service. [ 7.955732] systemd[1]: Started Journal Service. [ OK ] Started Create Static Device Nodes in /dev. [ OK ] Started Setup Virtual Console. [ 8.402415] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found [ 8.712327] dracut-cmdline[85]: Warning: 'serial' is deprecated and has been removed. [ 8.717737] dracut-cmdline[85]: Warning: To change the console use 'console=' instead. [ OK ] Started dracut cmdline hook. Starting dracut pre-udev hook... [ 10.062171] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 10.084938] Loading iSCSI transport class v2.0-870. [ 10.102908] iscsi: registered transport (tcp) [ 10.303566] FDC 0 is a S82078B [ 10.329624] No iBFT detected. [ 10.370846] async_tx: api initialized (async) [ 10.377097] xor: measuring software checksum speed [ 10.389032] prefetch64-sse: 7080.000 MB/sec [ 10.401031] generic_sse: 5880.000 MB/sec [ 10.403120] xor: using function: prefetch64-sse (7080.000 MB/sec) [ 10.442035] raid6: sse2x1 gen() 3031 MB/s [ 10.461038] raid6: sse2x2 gen() 3300 MB/s [ 10.480025] raid6: sse2x4 gen() 5554 MB/s [ 10.482130] raid6: using algorithm sse2x4 gen() (5554 MB/s) [ 10.484802] raid6: using ssse3x2 recovery algorithm [ 10.583275] device-mapper: uevent: version 1.0.3 [ 10.586087] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com [ 10.673942] device-mapper: multipath round-robin: version 1.2.0 loaded [ 10.842069] RPC: Registered named UNIX socket transport module. [ 10.845024] RPC: Registered udp transport module. [ 10.847291] RPC: Registered tcp transport module. [ 10.849530] RPC: Registered tcp NFSv4.1 backchannel transport module. [ OK ] Started dracut pre-udev hook. Starting udev Kernel Device Manager... [ OK ] Started udev Kernel Device Manager. Starting dracut pre-trigger hook... [ OK ] Started dracut pre-trigger hook. Starting udev Coldplug all Devices... Mounting Configuration File System... [ OK ] Started udev Coldplug all Devices. Starting Device-Mapper Multipath Device Controller... Starting Show Plymouth Boot Screen... [ OK ] Mounted Configuration File System. [ OK ] Reached target System Initialization. [ OK ] Listening on Open-iSCSI iscsiuio Socket. [ 11.888769] random: fast init done [ OK ] Reached target Sockets. [ OK ] Started Show Plymouth Boot Screen. [ OK ] Reached target Paths. [ OK ] Reached target Basic System. [ OK ] Started Device-Mapper Multipath Device Controller. Starting Open-iSCSI... [ 12.064706] scsi host0: ata_piix [ OK ] Started Open-iSCSI. Starting dracut initqueue hook... [ 12.078360] scsi host1: ata_piix [ 12.080000] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc120 irq 14 [ 12.083142] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc128 irq 15 [ 12.239893] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 [ 12.244061] ata1.00: configured for MWDMA2 [ 12.256449] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 [ 12.511056] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray [ 12.514754] cdrom: Uniform CD-ROM driver Revision: 3.20 [ 12.531657] 8021q: 802.1Q VLAN Support v1.8 [ 13.201671] dracut-initqueue[563]: mount: /dev/sr0 is write-protected, mounting read-only [ 13.673893] loop: module loaded [ OK ] Started dracut initqueue hook. Starting dracut pre-mount hook... [ OK ] Reached target Remote File Systems (Pre). [ OK ] Reached target Remote File Systems. [ OK ] Started dracut pre-mount hook. [ OK ] Reached target Initrd Root File System. Starting Reload Configuration from the Real Root... [ OK ] Started Reload Configuration from the Real Root. [ OK ] Reached target Initrd File Systems. Starting dracut mount hook... [ 14.595697] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) [ OK ] Started dracut mount hook. [ OK ] Reached target Initrd Default Target. Starting dracut pre-pivot and cleanup hook... [ OK ] Started dracut pre-pivot and cleanup hook. Starting Cleaning Up and Shutting Down Daemons... [ OK ] Stopped target Timers. Starting Plymouth switch root service... [ OK ] Stopped Cleaning Up and Shutting Down Daemons. [ OK ] Stopped dracut pre-pivot and cleanup hook. Stopping dracut pre-pivot and cleanup hook... [ OK ] Stopped target Remote File Systems. [ OK ] Stopped target Remote File Systems (Pre). [ OK ] Stopped target Initrd Default Target. [ OK ] Stopped dracut mount hook. Stopping dracut mount hook... [ OK ] Stopped dracut pre-mount hook. Stopping dracut pre-mount hook... [ OK ] Stopped target Basic System. [ OK ] Stopped target Slices. [ OK ] Stopped target Sockets. [ OK ] Closed Open-iSCSI iscsiuio Socket. [ OK ] Stopped target System Initialization. [ OK ] Stopped target Local File Systems. [ OK ] Stopped target Encrypted Volumes. [ OK ] Stopped target Swap. [ OK ] Stopped Apply Kernel Variables. Stopping Apply Kernel Variables... [ OK ] Stopped target Paths. [ OK ] Stopped dracut initqueue hook. Stopping dracut initqueue hook... Stopping Open-iSCSI... [ OK ] Started Plymouth switch root service. [ OK ] Stopped Open-iSCSI. Stopping Device-Mapper Multipath Device Controller... [ OK ] Stopped Device-Mapper Multipath Device Controller. [ OK ] Stopped udev Coldplug all Devices. Stopping udev Coldplug all Devices... [ OK ] Stopped dracut pre-trigger hook. Stopping dracut pre-trigger hook... Stopping udev Kernel Device Manager... [ OK ] Stopped udev Kernel Device Manager. [ OK ] Stopped Create Static Device Nodes in /dev. Stopping Create Static Device Nodes in /dev... [ OK ] Stopped Create list of required sta...ce nodes for the current kernel. Stopping Create list of required st... nodes for the current kernel... [ OK ] Stopped dracut pre-udev hook. Stopping dracut pre-udev hook... [ OK ] Stopped dracut cmdline hook. Stopping dracut cmdline hook... [ OK ] Closed udev Kernel Socket. [ OK ] Closed udev Control Socket. Starting Cleanup udevd DB... [ OK ] Started Cleanup udevd DB. [ OK ] Reached target Switch Root. Starting Switch Root... [ 15.566089] systemd-journald[89]: Received SIGTERM from PID 1 (systemd). [ 15.822833] random: crng init done [ 16.872454] type=1403 audit(1522410231.843:2): policy loaded auid=4294967295 ses=4294967295 [ 16.884865] systemd[1]: Successfully loaded SELinux policy in 633.556ms. [ 17.236099] systemd[1]: Relabelled /dev and /run in 36.282ms. Welcome to CentOS Linux 7 (Core)! [ OK ] Stopped Switch Root. [ OK ] Stopped Journal Service. Starting Journal Service... [ OK ] Listening on udev Kernel Socket. [ OK ] Reached target Timers. [ OK ] Listening on LVM2 metadata daemon socket. [ OK ] Reached target Paths. [ OK ] Listening on Delayed Shutdown Socket. Starting Monitoring of LVM2 mirrors... dmeventd or progress polling... [ OK ] Stopped target Switch Root. [ OK ] Stopped target Initrd File Systems. Starting Remount Root and Kernel File Systems... [ OK ] Created slice system-anaconda\x2dtmux.slice. [ OK ] Listening on LVM2 poll daemon socket. Mounting Huge Pages File System... Starting Create list of required st... nodes for the current kernel... [ OK ] Created slice system-selinux\x2dpol...grate\x2dlocal\x2dchanges.slice. Mounting Debug File System... [ OK ] Listening on /dev/initctl Compatibility Named Pipe. [ OK ] Listening on udev Control Socket. [ OK ] Stopped target Initrd Root File System. [ OK ] Reached target Swap. Mounting Temporary Directory... [ OK ] Set up automount Arbitrary Executab...ats File System Automount Point. [ OK ] Created slice User and Session Slice. Mounting POSIX Message Queue File System... Starting Apply Kernel Variables... [ OK ] Reached target Slices. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Debug File System. [ OK ] Mounted Huge Pages File System. [ OK ] Mounted Temporary Directory. [ OK ] Started Journal Service. [ OK ] Started Remount Root and Kernel File Systems. [ OK ] Started Create list of required sta...ce nodes for the current kernel. Starting Create Static Device Nodes in /dev... Starting Load/Save Random Seed... Starting Rebuild Hardware Database... Starting Configure read-only root support... Starting Flush Journal to Persistent Storage... [ OK ] Started Load/Save Random Seed. [ OK ] Started Apply Kernel Variables. [ OK ] Started Flush Journal to Persistent Storage. [ OK ] Started Create Static Device Nodes in /dev. Starting udev Kernel Device Manager... [ OK ] Started Configure read-only root support. [ OK ] Started LVM2 metadata daemon. Starting LVM2 metadata daemon... [ OK ] Started udev Kernel Device Manager. [ OK ] Started Rebuild Hardware Database. Starting udev Coldplug all Devices... [ OK ] Started udev Coldplug all Devices. Starting udev Wait for Complete Device Initialization... Starting Device-Mapper Multipath Device Controller... [ OK ] Started Monitoring of LVM2 mirrors,...ng dmeventd or progress polling. [ OK ] Started Device-Mapper Multipath Device Controller. [ OK ] Reached target Local File Systems (Pre). [ OK ] Started udev Wait for Complete Device Initialization. Starting Activation of DM RAID sets... [ OK ] Started Activation of DM RAID sets. [ OK ] Reached target Encrypted Volumes. [ OK ] Reached target Local File Systems. Starting Rebuild Journal Catalog... Starting Tell Plymouth To Write Out Runtime Data... Starting Import network configuration from initramfs... Starting Migrate local SELinux poli...tructure to the new structure... [ OK ] Started Rebuild Journal Catalog. Starting Update is Completed... [ OK ] Started Tell Plymouth To Write Out Runtime Data. [ OK ] Started Update is Completed. [ OK ] Started Migrate local SELinux polic... structure to the new structure. [ OK ] Started Import network configuration from initramfs. Starting Create Volatile Files and Directories... [ OK ] Started Create Volatile Files and Directories. Starting Update UTMP about System Boot/Shutdown... [ OK ] Started Update UTMP about System Boot/Shutdown. [ OK ] Reached target System Initialization. [ OK ] Listening on Open-iSCSI iscsid Socket. [ OK ] Listening on D-Bus System Message Bus Socket. [ OK ] Listening on Open-iSCSI iscsiuio Socket. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. [ OK ] Started Hardware RNG Entropy Gatherer Daemon. Starting Hardware RNG Entropy Gatherer Daemon... [ OK ] Started Anaconda NetworkManager configuration. Starting Anaconda NetworkManager configuration... Starting pre-anaconda logging service... Starting Service enabling compressing RAM with zRam... Starting System Logging Service... Starting Network Manager... Starting Dump dmesg to /var/log/dmesg... Starting Wait for Plymouth Boot Screen to Quit... Starting Terminate Plymouth Boot Screen... Starting Login Service... Starting installer, one moment... anaconda 21.48.22.121-1 for CentOS 7 started. * installation log files are stored in /tmp during the installation * shell is available on TTY2 * when reporting a bug add logs from /tmp as separate text/plain attachments 11:44:21 Not asking for VNC because we don't have a network ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [!] Time settings (English (United States)) (Timezone is not set.) 3) [!] Installation source 4) [!] Software selection (Processing...) (Processing...) 5) [!] Installation Destination 6) [x] Kdump (No disks selected) (Kdump is enabled) 7) [ ] Network configuration 8) [!] Root password (Not connected) (Password is not set.) 9) [!] User creation (No user will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: ^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B ^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[A^[[A Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: 1 ================================================================================ ================================================================================ Language settings Available languages 2) Amharic 26) Croatian 49) Punjabi 3) Arabic 27) Hungarian 50) Polish 4) Assamese 28) Interlingua 51) Portuguese 5) Asturian 29) Indonesian 52) Romanian 6) Belarusian 30) Icelandic 53) Russian 7) Bulgarian 31) Italian 54) Sinhala 8) Bengali 32) Japanese 55) Slovak 9) Bosnian 33) Georgian 56) Slovenian 10) Catalan 34) Kazakh 57) Albanian 11) Czech 35) Kannada 58) Serbian 12) Welsh 36) Korean 59) Swedish 13) Danish 37) Lithuanian 60) Tamil 14) German 38) Latvian 61) Telugu 15) Greek 39) Maithili 62) Tajik 16) English 40) Macedonian 63) Thai 17) Spanish 41) Malayalam 64) Turkish 18) Estonian 42) Marathi 65) Ukrainian 19) Basque 43) Malay 66) Urdu 20) Persian 44) Norwegian Bokmål 67) Vietnamese 21) Finnish 45) Nepali 68) Chinese 22) French 46) Dutch 69) Zulu Press ENTER to continue^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[16 [[B^[[B^[[B^[ 23) Galician 47) Northern SothoB^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B 24) Gujarati Please select language support to install. [b to return to language list, c to continue, q to quit]: 16 ================================================================================ ================================================================================ Language settings Available locales 1) English (United 7) English (Ireland) 12) English (Singapore) States) 8) English (New 13) English (South 2) English (United Zealand) Africa) Kingdom) 9) English (Nigeria) 14) English (Zambia) 3) English (India) 10) English (Hong Kong 15) English (Zimbabwe) 4) English (Australia) SAR China) 16) English (Botswana) 5) English (Canada) 11) English 17) English (Antigua & 6) English (Denmark) (Philippines) Barbuda) Please select language support to install. [b to return to language list, c to continue, q to quit]: 1 ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [!] Time settings (English (United States)) (Timezone is not set.) 3) [x] Installation source 4) [x] Software selection (Local media) (Minimal Install) 5) [!] Installation Destination 6) [x] Kdump (No disks selected) (Kdump is enabled) 7) [ ] Network configuration 8) [!] Root password (Not connected) (Password is not set.) 9) [!] User creation (No user will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: b Please complete all spokes before continuing Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: b Please complete all spokes before continuing Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: b Please complete all spokes before continuing Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: r ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [!] Time settings (English (United States)) (Timezone is not set.) 3) [x] Installation source 4) [x] Software selection (Local media) (Minimal Install) 5) [!] Installation Destination 6) [x] Kdump (No disks selected) (Kdump is enabled) 7) [ ] Network configuration 8) [!] Root password (Not connected) (Password is not set.) 9) [!] User creation (No user will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: 7 ================================================================================ ================================================================================ Network configuration Wired (eth0) disconnected Host name: localhost.localdomain Current host name: localhost 1) Set host name 2) Configure device eth0 Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 2 ================================================================================ ================================================================================ Device configuration 1) IPv4 address or "dhcp" for DHCP dhcp 2) IPv4 netmask 3) IPv4 gateway 4) IPv6 address[/prefix] or "auto" for automatic, "dhcp" for DHCP, "ignore" to turn off auto 5) IPv6 default gateway 8) [ ] Apply configuration in installer Configuring device eth0. Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 7 ================================================================================ ================================================================================ Device configuration 1) IPv4 address or "dhcp" for DHCP dhcp 2) IPv4 netmask 3) IPv4 gateway 4) IPv6 address[/prefix] or "auto" for automatic, "dhcp" for DHCP, "ignore" to turn off auto 5) IPv6 default gateway 6) Nameservers (comma separated) 7) [x] Connect automatically after reboot 8) [ ] Apply configuration in installer Configuring device eth0. Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 8 ================================================================================ ================================================================================ Device configuration 1) IPv4 address or "dhcp" for DHCP dhcp 2) IPv4 netmask 3) IPv4 gateway 4) IPv6 address[/prefix] or "auto" for automatic, "dhcp" for DHCP, "ignore" to turn off auto 5) IPv6 default gateway 6) Nameservers (comma separated) 7) [x] Connect automatically after reboot 8) [x] Apply configuration in installer Configuring device eth0. Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c ================================================================================ ================================================================================ Network configuration Wired (eth0) disconnected Host name: localhost.localdomain Current host name: localhost 1) Set host name 2) Configure device eth0 Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [!] Time settings (English (United States)) (Timezone is not set.) 3) [x] Installation source 4) [!] Software selection (Local media) (Source changed - please 5) [!] Installation Destination verify) (No disks selected) 6) [x] Kdump 7) [x] Network configuration (Kdump is enabled) (Wired (eth0) connected) 8) [!] Root password 9) [!] User creation (Password is not set.) (No user will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: 9 ================================================================================ ================================================================================ User creation 1) [ ] Create user Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 1 ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname 3) Username 4) [ ] Use password 5) [ ] Administrator 6) Groups Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 2 ================================================================================ ================================================================================ Enter new value for 'Fullname' and press enter Pawan Kumar v ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname Pawan Kumar v 3) Username pv 4) [ ] Use password 5) [ ] Administrator 6) Groups Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 3 ================================================================================ ================================================================================ Enter new value for 'Username' and press enter cipher ================================================================================ ================================================================================ Pawan Kumar v 3) Username cipher 4) [ ] Use password 5) [ ] Administrator 6) Groups Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 4 ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname Pawan Kumar v 3) Username cipher 4) [x] Use password 5) Password 6) [ ] Administrator 7) Groups Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 5 ================================================================================ ================================================================================ Password: Password (confirm): ================================================================================ ================================================================================ Question The password you have provided is weak: The password fails the dictionary check - it is based on a dictionary word. Would you like to use it anyway? Please respond 'yes' or 'no': yes ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname Pawan Kumar v 3) Username cipher 4) [x] Use password 5) Password Password set. 6) [ ] Administrator 7) Groups Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 6 ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname Pawan Kumar v 3) Username cipher 4) [x] Use password 5) Password Password set. 6) [x] Administrator 7) Groups wheel Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 7 ================================================================================ ================================================================================ Enter new value for 'Groups' and press enter c ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname Pawan Kumar v 3) Username cipher 4) [x] Use password 5) Password Password set. 6) [x] Administrator 7) Groups c, wheel Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 7 ================================================================================ ================================================================================ Enter new value for 'Groups' and press enter wheel ================================================================================ ================================================================================ User creation 1) [x] Create user 2) Fullname Pawan Kumar v 3) Username cipher 4) [x] Use password 5) Password Password set. 6) [x] Administrator 7) Groups wheel Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [!] Time settings (English (United States)) (Timezone is not set.) 3) [x] Installation source 4) [!] Software selection (Local media) (Source changed - please 5) [!] Installation Destination verify) (No disks selected) 6) [x] Kdump 7) [x] Network configuration (Kdump is enabled) Probing storage... Installation Destination [x] 1) : 25 GiB (vda) 1 disk selected; 25 GiB capacity; 0 B free ... Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c ================================================================================ ================================================================================ Autopartitioning Options [ ] 1) Replace Existing Linux system(s) [x] 2) Use All Space [ ] 3) Use Free Space Installation requires partitioning of your hard drive. Select what space to use for the install target. Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c ================================================================================ ================================================================================ Partition Scheme Options [ ] 1) Standard Partition [ ] 2) Btrfs [x] 3) LVM [ ] 4) LVM Thin Provisioning Select a partition scheme configuration. Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 4 ================================================================================ ================================================================================ Partition Scheme Options [ ] 1) Standard Partition [ ] 2) Btrfs [ ] 3) LVM [x] 4) LVM Thin Provisioning Select a partition scheme configuration. Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c Generating updated storage configuration Checking storage configuration... ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [!] Time settings (English (United States)) (Timezone is not set.) 3) [x] Installation source 4) [!] Software selection (Local media) (Source changed - please 5) [x] Installation Destination verify) (Automatic partitioning 6) [x] Kdump selected) (Kdump is enabled) 7) [x] Network configuration 8) [ ] Root password (Wired (eth0) connected) (Password is not set.) 9) [x] User creation (Administrator cipher will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: 2 ================================================================================ ================================================================================ Time settings Timezone: not set NTP servers:not configured 1) Set timezone 2) Configure NTP servers Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 1 ================================================================================ ================================================================================ Timezone settings Available regions 1) Europe 6) Pacific 10) Arctic 2) Asia 7) Australia 11) US 3) America 8) Atlantic 12) Etc 4) Africa 9) Indian 5) Antarctica Please select the timezone. Use numbers or type names directly [b to region list, q to quit]: 2 ================================================================================ ================================================================================ Timezone settings Available timezones in region Asia 1) Aden 29) Hong_Kong 56) Pontianak 2) Almaty 30) Hovd 57) Pyongyang 3) Amman 31) Irkutsk 58) Qatar 4) Anadyr 32) Jakarta 59) Qyzylorda 5) Aqtau 33) Jayapura 60) Riyadh 6) Aqtobe 34) Jerusalem 61) Sakhalin 7) Ashgabat 35) Kabul 62) Samarkand 8) Atyrau 36) Kamchatka 63) Seoul 9) Baghdad 37) Karachi 64) Shanghai 10) Bahrain 38) Kathmandu 65) Singapore 11) Baku 39) Khandyga 66) Srednekolymsk 12) Bangkok 40) Kolkata 67) Taipei 13) Barnaul 41) Krasnoyarsk 68) Tashkent 14) Beirut 42) Kuala_Lumpur 69) Tbilisi 15) Bishkek 43) Kuching 70) Tehran 16) Brunei 44) Kuwait 71) Thimphu 17) Chita 45) Macau 72) Tokyo 18) Choibalsan 46) Magadan 73) Tomsk 19) Colombo 47) Makassar 74) Ulaanbaatar 26) Gaza 54) Oral 81) Yekaterinburg 27) Hebron 55) Phnom_Penh 82) Yerevan 28) Ho_Chi_Minh Please select the timezone. Use numbers or type names directly [b to region list, q to quit]: 40 ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [x] Time settings (English (United States)) (Asia/Kolkata timezone) 3) [x] Installation source 4) [!] Software selection (Local media) (Source changed - please 5) [x] Installation Destination verify) (Automatic partitioning 6) [x] Kdump selected) (Kdump is enabled) 7) [x] Network configuration 8) [ ] Root password (Wired (eth0) connected) (Password is not set.) 9) [x] User creation (Administrator cipher will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: 4 ================================================================================ ================================================================================ Base environment Software selection Base environment 1) [x] Minimal Install Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: c ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [x] Time settings (English (United States)) (Asia/Kolkata timezone) 3) [!] Installation source 4) [!] Software selection (Processing...) (Processing...) 5) [x] Installation Destination 6) [x] Kdump (Automatic partitioning (Kdump is enabled) selected) 8) [ ] Root password 7) [x] Network configuration (Password is not set.) (Wired (eth0) connected) 9) [x] User creation (Administrator cipher will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: 8 ================================================================================ ================================================================================ Please select new root password. You will have to type it twice. Password: Password (confirm): ================================================================================ ================================================================================ Question The password you have provided is weak: The password fails the dictionary check - it is based on a dictionary word. Would you like to use it anyway? Please respond 'yes' or 'no': yes ================================================================================ ================================================================================ Installation 1) [x] Language settings 2) [x] Time settings (English (United States)) (Asia/Kolkata timezone) 3) [x] Installation source 4) [x] Software selection (Local media) (Minimal Install) 5) [x] Installation Destination 6) [x] Kdump (Automatic partitioning (Kdump is enabled) selected) 8) [x] Root password 7) [x] Network configuration (Password is set.) (Wired (eth0) connected) 9) [x] User creation (Administrator cipher will be created) Please make your choice from above ['q' to quit | 'b' to begin installation | 'r' to refresh]: b ================================================================================ ================================================================================ Progress Setting up the installation environment . Creating disklabel on /dev/vda . Creating xfs on /dev/vda1 . Creating lvmpv on /dev/vda2 . Creating swap on /dev/mapper/centos-swap . Creating xfs on /dev/mapper/centos-root .^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B Running pre-installation scripts .^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B Starting package installation process ^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[B^[[BPreparing transaction from installation source Installing libgcc (1/299) Installing centos-release (2/299) Installing grub2-common (3/299) Installing setup (4/299) Installing filesystem (5/299) Installing basesystem (6/299) Installing grub2-pc-modules (7/299) Installing bind-license (8/299) Installing ncurses-base (9/299) Installing firewalld-filesystem (10/299) Installing tzdata (11/299) Installing glibc-common (12/299) Installing nss-softokn-freebl (13/299) Installing glibc (14/299) Installing libstdc++ (15/299) Installing ncurses-libs (16/299) Installing bash (17/299) Installing libsepol (18/299) Installing pcre (19/299) Installing libselinux (20/299) Installing zlib (21/299) Installing info (22/299) Installing xz-libs (23/299) Installing nspr (24/299) Installing libuuid (25/299) Installing nss-util (26/299) Installing sed (27/299) Installing libcom_err (28/299) Installing popt (29/299) Installing chkconfig (30/299) Installing libdb (31/299) Installing bzip2-libs (32/299) Installing readline (33/299) Installing grep (34/299) Installing gawk (35/299) Installing elfutils-libelf (36/299) Installing libxml2 (37/299) Installing libffi (38/299) Installing libgpg-error (39/299) Installing libattr (40/299) Installing libacl (41/299) Installing libcap (42/299) Installing libcap-ng (43/299) Installing audit-libs (44/299) Installing libgcrypt (45/299) Installing cpio (46/299) Installing libnl3 (47/299) Installing jansson (48/299) Installing expat (49/299) Installing dbus-libs (50/299) Installing lua (51/299) Installing which (52/299) Installing diffutils (53/299) Installing findutils (54/299) Installing sqlite (55/299) Installing file-libs (56/299) Installing file (57/299) Installing libmnl (58/299) Installing nss-softokn (59/299) Installing libnl3-cli (60/299) Installing libassuan (61/299) Installing p11-kit (62/299) Installing cyrus-sasl-lib (63/299) Installing e2fsprogs-libs (64/299) Installing groff-base (65/299) Installing xz (66/299) Installing libgomp (67/299) Installing libunistring (68/299) Installing libidn (69/299) Installing libedit (70/299) Installing sysvinit-tools (71/299) Installing pciutils-libs (72/299) Installing ethtool (73/299) Installing hostname (74/299) Installing libnfnetlink (75/299) Installing tcp_wrappers-libs (76/299) Installing slang (77/299) Installing newt (78/299) Installing lzo (79/299) Installing gdbm (80/299) Installing keyutils-libs (81/299) Installing libnetfilter_conntrack (82/299) Installing iptables (83/299) Installing iproute (84/299) Installing less (85/299) Installing libteam (86/299) Installing ipset-libs (87/299) Installing ipset (88/299) Installing tar (89/299) Installing acl (90/299) Installing vim-minimal (91/299) Installing libdb-utils (92/299) Installing pinentry (93/299) Installing libss (94/299) Installing mozjs17 (95/299) Installing kmod-libs (96/299) Installing make (97/299) Installing GeoIP (98/299) Installing libselinux-utils (99/299) Installing elfutils-default-yama-scope (100/299) Installing elfutils-libs (101/299) Installing freetype (102/299) Installing ncurses (103/299) Installing gmp (104/299) Installing snappy (105/299) Installing pth (106/299) Installing numactl-libs (107/299) Installing libverto (108/299) Installing dmidecode (109/299) Installing ustr (110/299) Installing libsemanage (111/299) Installing libtasn1 (112/299) Installing p11-kit-trust (113/299) Installing ca-certificates (114/299) Installing openssl-libs (115/299) Installing coreutils (116/299) Installing krb5-libs (117/299) Installing libblkid (118/299) Installing python-libs (119/299) Installing python (120/299) Installing shadow-utils (121/299) Installing gzip (122/299) Installing cracklib (123/299) Installing python-decorator (124/299) Installing libmount (125/299) Installing glib2 (126/299) Installing shared-mime-info (127/299) Installing libcroco (128/299) Installing cracklib-dicts (129/299) Installing libpwquality (130/299) Installing pam (131/299) Installing systemd-libs (132/299) Installing procps-ng (133/299) Installing python-pyudev (134/299) Installing plymouth-core-libs (135/299) Installing gettext-libs (136/299) Installing gettext (137/299) Installing dbus-glib (138/299) Installing dbus-python (139/299) Installing pkgconfig (140/299) Installing gobject-introspection (141/299) Installing python-gobject-base (142/299) Installing yum-metadata-parser (143/299) Installing libutempter (144/299) Installing python-iniparse (145/299) Installing pyliblzma (146/299) Installing libselinux-python (147/299) Installing python-slip (148/299) Installing python-slip-dbus (149/299) Installing python-firewall (150/299) Installing python-linux-procfs (151/299) Installing newt-python (152/299) Installing python-configobj (153/299) Installing python-schedutils (154/299) Installing python-perf (155/299) Installing pyxattr (156/299) Installing grubby (157/299) Installing openssl (158/299) Installing bind-libs-lite (159/299) Installing nss-pem (160/299) Installing nss (161/299) Installing nss-sysinit (162/299) Installing NetworkManager-libnm (163/299) Installing nss-tools (164/299) Installing alsa-lib (165/299) Installing binutils (166/299) Installing logrotate (167/299) Installing centos-logos (168/299) Installing fipscheck (169/299) Installing fipscheck-lib (170/299) Installing libssh2 (171/299) Installing libcurl (172/299) Installing curl (173/299) Installing rpm-libs (174/299) Installing rpm (175/299) Installing openldap (176/299) Installing dhcp-libs (177/299) Installing gnupg2 (178/299) Installing libuser (179/299) Installing util-linux (180/299) Installing policycoreutils (181/299) Installing openssh (182/299) Installing selinux-policy (183/299) Installing virt-what (184/299) Installing gpgme (185/299) Installing pygpgme (186/299) Installing rpm-build-libs (187/299) Installing rpm-python (188/299) Installing dhcp-common (189/299) Installing python-pycurl (190/299) Installing python-urlgrabber (191/299) Installing yum-plugin-fastestmirror (192/299) Installing yum (193/299) Installing mariadb-libs (194/299) Installing kernel-tools-libs (195/299) Installing libndp (196/299) Installing libseccomp (197/299) Installing libdaemon (198/299) Installing teamd (199/299) Installing qrencode-libs (200/299) Installing libaio (201/299) Installing device-mapper-persistent-data (202/299) Installing libpipeline (203/299) Installing libestr (204/299) Installing lsscsi (205/299) Installing libfastjson (206/299) Installing hardlink (207/299) Installing kpartx (208/299) Installing device-mapper (209/299) Installing device-mapper-libs (210/299) Installing cryptsetup-libs (211/299) Installing dracut (212/299) Installing kmod (213/299) Installing systemd (214/299) Installing dbus (215/299) Installing polkit (216/299) Installing polkit-pkla-compat (217/299) Installing iputils (218/299) Installing initscripts (219/299) Installing systemd-sysv (220/299) Installing device-mapper-event-libs (221/299) Installing wpa_supplicant (222/299) Installing NetworkManager (223/299) Installing os-prober (224/299) Installing crontabs (225/299) Installing cronie-anacron (226/299) Installing cronie (227/299) Installing grub2-tools-minimal (228/299) Installing grub2-tools-extra (229/299) Installing grub2-tools (230/299) Installing grub2-pc (231/299) Installing device-mapper-event (232/299) Installing lvm2-libs (233/299) Installing dhclient (234/299) Installing dracut-network (235/299) Installing ebtables (236/299) Installing fxload (237/299) Installing alsa-firmware (238/299) Installing alsa-tools-firmware (239/299) Installing hwdata (240/299) Installing libpciaccess (241/299) Installing libdrm (242/299) Installing plymouth-scripts (243/299) Installing plymouth (244/299) Installing kbd-misc (245/299) Installing linux-firmware (246/299) Installing kbd-legacy (247/299) Installing kbd (248/299) Installing kernel (249/299) Installing firewalld (250/299) Installing kexec-tools (251/299) Installing lvm2 (252/299) Installing grub2 (253/299) Installing NetworkManager-tui (254/299) Installing NetworkManager-team (255/299) Installing NetworkManager-wifi (256/299) Installing audit (257/299) Installing postfix (258/299) Installing tuned (259/299) Installing irqbalance (260/299) Installing chrony (261/299) Installing aic94xx-firmware (262/299) Installing microcode_ctl (263/299) Installing openssh-server (264/299) Installing rsyslog (265/299) Installing biosdevname (266/299) Installing dracut-config-rescue (267/299) Installing parted (268/299) Installing iprutils (269/299) Installing man-db (270/299) Installing kernel-tools (271/299) Installing selinux-policy-targeted (272/299) Installing openssh-clients (273/299) Installing authconfig (274/299) Installing passwd (275/299) Installing sudo (276/299) Installing btrfs-progs (277/299) Installing xfsprogs (278/299) Installing e2fsprogs (279/299) Installing libsysfs (280/299) Installing iwl135-firmware (281/299) Installing iwl3160-firmware (282/299) Installing iwl7260-firmware (283/299) Installing iwl6000g2b-firmware (284/299) Installing iwl6050-firmware (285/299) Installing iwl2030-firmware (286/299) Installing iwl6000g2a-firmware (287/299) Installing iwl5000-firmware (288/299) Installing rootfiles (289/299) Installing ivtv-firmware (290/299) Installing iwl1000-firmware (291/299) Installing iwl100-firmware (292/299) Installing iwl4965-firmware (293/299) Installing iwl5150-firmware (294/299) Installing iwl7265-firmware (295/299) Installing iwl2000-firmware (296/299) Installing iwl105-firmware (297/299) Installing iwl3945-firmware (298/299) Installing iwl6000-firmware (299/299) Performing post-installation setup tasks . Installing boot loader . Writing network configuration . Creating users . Configuring addons . Generating initramfs . Configuring addons . [ OK ] Started Show Plymouth Reboot Screen. [ OK ] Deactivated swap /dev/zram0. [ OK ] Deactivated swap /dev/zram1. [ OK ] Stopped Service enabling compressing RAM with zRam. [ OK ] Stopped Availability of block devices. Stopping Logout off all iSCSI sessions on shutdown... [ OK ] Stopped Logout off all iSCSI sessions on shutdown. [ OK ] Stopped target Network. Stopping Network Manager... [ OK ] Stopped Network Manager. Stopping D-Bus System Message Bus... [ OK ] Stopped D-Bus System Message Bus. [ OK ] Stopped target Basic System. [ OK ] Stopped target Sockets. [ OK ] Closed Open-iSCSI iscsid Socket. [ OK ] Closed Open-iSCSI iscsiuio Socket. [ OK ] Stopped target Paths. [ OK ] Stopped target Slices. [ OK ] Removed slice User and Session Slice. [ OK ] Closed D-Bus System Message Bus Socket. [ OK ] Stopped target System Initialization. Stopping Load/Save Random Seed... [ OK ] Stopped Migrate local SELinux polic... structure to the new structure. Stopping Migrate local SELinux poli...tructure to the new structure... [ OK ] Removed slice system-selinux\x2dpol...grate\x2dlocal\x2dchanges.slice. [ OK ] Stopped Setup Virtual Console. Stopping Setup Virtual Console... [ OK ] Stopped target Encrypted Volumes. [ OK ] Stopped Update is Completed. Stopping Update is Completed... [ OK ] Stopped Rebuild Journal Catalog. Stopping Rebuild Journal Catalog... [ OK ] Stopped Rebuild Hardware Database. Stopping Rebuild Hardware Database... [ OK ] Stopped Apply Kernel Variables. Stopping Apply Kernel Variables... [ OK ] Stopped Create Volatile Files and Directories. Stopping Create Volatile Files and Directories... [ OK ] Stopped Import network configuration from initramfs. Stopping Import network configuration from initramfs... [ OK ] Stopped target Local File Systems. Unmounting /mnt/sysimage/run... Unmounting Configuration File System... Unmounting Temporary Directory... Unmounting /mnt/sysimage/dev/pts... Unmounting /mnt/sysimage/dev/shm... Unmounting /mnt/sysimage/proc... Unmounting /mnt/sysimage/sys/fs/selinux... Unmounting /mnt/sysimage/boot... Unmounting /run/install/repo... [ OK ] Stopped Configure read-only root support. Stopping Configure read-only root support... [ OK ] Stopped Load/Save Random Seed. [ OK ] Unmounted /mnt/sysimage/run. [ OK ] Unmounted Configuration File System. [ OK ] Unmounted Temporary Directory. [ OK ] Unmounted /mnt/sysimage/dev/pts. [ OK ] Unmounted /mnt/sysimage/dev/shm. [ OK ] Unmounted /mnt/sysimage/proc. [ OK ] Unmounted /mnt/sysimage/sys/fs/selinux. [ OK ] Failed unmounting /run/install/repo. Unmounting /mnt/sysimage/sys... Unmounting /mnt/sysimage/dev... [ OK ] Stopped target Swap. Deactivating swap /dev/dm-2... [ OK ] Unmounted /mnt/sysimage/dev. [ OK ] Deactivated swap /dev/mapper/centos-swap. [ OK ] Deactivated swap /dev/disk/by-uuid/...bc4-8f96-48d4-8082-e96f778b1c47. [ OK ] Deactivated swap /dev/disk/by-id/dm...OwPmYbpUv8XOMeFx3UqQxN5Gof4Y538. [ OK ] Deactivated swap /dev/disk/by-id/dm-name-centos-swap. [ OK ] Deactivated swap /dev/centos/swap. [ OK ] Unmounted /mnt/sysimage/sys. [ OK ] Deactivated swap /dev/dm-2. [ OK ] Unmounted /mnt/sysimage/boot. Unmounting /mnt/sysimage... [ OK ] Unmounted /mnt/sysimage. [ OK ] Reached target Unmount All Filesystems. [ OK ] Stopped target Local File Systems (Pre). [ OK ] Stopped Create Static Device Nodes in /dev. Stopping Create Static Device Nodes in /dev... [ OK ] Stopped Remount Root and Kernel File Systems. Stopping Remount Root and Kernel File Systems... Stopping Monitoring of LVM2 mirrors... dmeventd or progress polling... [ OK ] Stopped Monitoring of LVM2 mirrors,...ng dmeventd or progress polling. Stopping LVM2 metadata daemon... [ OK ] Stopped LVM2 metadata daemon. [ OK ] Started Restore /run/initramfs. [ OK ] Reached target Shutdown. dracut Warning: Killing all remaining processes Rebooting. [ 1493.158869] Restarting system. Domain creation completed. Restarting guest. Connected to domain linux1 Escape character is ^] error: operation failed: Active console session exists for this domain
Connecting to kvm host which is created now
$virsh console --force linux1 Connected to domain linux1 Escape character is ^] CentOS Linux 7 (Core) Kernel 3.10.0-693.el7.x86_64 on an x86_64 localhost login: CentOS Linux 7 (Core) Kernel 3.10.0-693.el7.x86_64 on an x86_64 localhost login: root Password: [root@localhost ~]# free -h total used free shared buff/cache available Mem: 992M 119M 732M 6.5M 139M 713M Swap: 2.0G 0B 2.0G [root@localhost ~]#