Advertisement
GeorgiosDoumas

KVM virt-install problem

Jul 4th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 100.84 KB | None | 0 0
  1. >>I have a laptop with scientific linux 7.4
  2. >>Have prepared it as an httpd server.
  3. >>The server has a directory /var/www/html/inst (all selinux is well taken care of) and in this directory I have
  4. >>copied-pasted the contents of the Everything.iso so I can see the files and dirs
  5. >>(for example Packages, images, isolinux). There is no problem with the operation of the httpd service.
  6.  
  7. >>A kickstart file exists under /var/www/html/virt-install-ks.cfg :
  8. >> (you can see that I have tried using vda and sda for names of disks, but both have the same problem)
  9. #version=DEVEL
  10. # System authorization information
  11. auth --enableshadow --passalgo=sha512
  12. # Use installation media from the http server, where we have copied the contents of the Everything.iso
  13. url --url http://192.168.122.1/inst
  14.  
  15. # Use graphical install
  16. graphical
  17. # Do NOT Run the Setup Agent on first boot
  18. firstboot --disable
  19.  
  20. ####
  21. #ignoredisk --only-use=sda
  22. ignoredisk --only-use=vda
  23. ####
  24. # Keyboard layouts
  25. keyboard --vckeymap=us --xlayouts='us'
  26. # System language
  27. lang en_US.UTF-8
  28.  
  29. # Network information
  30. network --bootproto=static --device=eth0 --gateway=192.168.122.1 --ip=192.168.122.104 --nameserver=192.168.122.1 --netmask=255.255.255.0 --ipv6=auto --activate
  31. network --hostname=virtinst-urimedia-ks.example.com
  32.  
  33. # Root password
  34. rootpw --iscrypted $6$.******(some-value-here!!!)
  35. # System services
  36. services --enabled="chronyd"
  37. # System timezone
  38. timezone Europe/Prague --isUtc --ntpservers=0.centos.pool.ntp.org,1.centos.pool.ntp.org,2.centos.pool.ntp.org,3.centos.pool.ntp.org
  39. user --groups=wheel --name=gdoumas --password=**************(some-value-here!!!) --iscrypted --gecos="Georgios Doumas"
  40. # X Window System configuration information
  41. xconfig --startxonboot
  42. #### System bootloader configuration
  43. bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=vda
  44. #bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda
  45. #### Partition clearing information
  46. clearpart --none --initlabel
  47. #### Disk partitioning information , INSTEAD of vda I try sda as value for --ondisk but still the virt-install fails
  48. #part /boot --fstype="xfs" --ondisk=sda --size=476 --label=bootpart
  49. part /boot --fstype="xfs" --ondisk=vda --size=476 --label=bootpart
  50. #part pv.357 --fstype="lvmpv" --ondisk=sda --size=12835
  51. part pv.357 --fstype="lvmpv" --ondisk=vda --size=12835
  52. volgroup virtinstvg --pesize=4096 pv.357
  53. logvol /var --fstype="xfs" --size=4683 --label="varlvm" --name=var --vgname=virtinstvg
  54. logvol / --fstype="xfs" --size=7629 --label="rootlvm" --name=root --vgname=virtinstvg
  55. logvol swap --fstype="swap" --size=512 --name=swap --vgname=virtinstvg
  56. %packages
  57. @base
  58. %end
  59. %addon com_redhat_kdump --enable --reserve-mb='auto'
  60. %end
  61. %anaconda
  62. pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  63. pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
  64. pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  65. %end
  66.  
  67.  
  68. >>Then on my laptop (the virtualization host) I do the following command to prepare a disk-image for a new virtual-guest:
  69. sudo qemu-img create -f qcow2 /var/lib/libvirt/images/virtinst.qcow2 16G
  70. >>And the command to create the new VM and deploy it using the kickstart file and also using the httpd directory
  71. >>that has the installation-media (the packages , vmlinuz and all the things that would normally exist in
  72. >>the installation DVD.iso)
  73. virt-install --name virt-installed --memory 1024 --vcpus 2 --disk size=16,path=/var/lib/libvirt/images/virtinst.qcow2 --location http://192.168.122.1/inst --os-type linux --os-variant rhel7 --network network=default192-168-122 --graphics none --extra-args="ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8"
  74.  
  75. >> The result is that a VM is created (and it has the 16 GB disk as I can see on the GUI on the properties
  76. >> of the VM) but the installation does not happen properly. Here is the output form the --debug of virt-install:
  77.  
  78. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (cli:264) Launched with command line: /usr/share/virt-manager/virt-install --name virt-installed --memory 1024 --vcpus 2 --disk size=16,path=/var/lib/libvirt/images/virtinst.qcow2 --location http://192.168.122.1/inst --os-type linux --os-variant rhel7 --network network=default192-168-122 --graphics none --extra-args=ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 --debug
  79. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (cli:278) Requesting libvirt URI default
  80. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (cli:281) Received libvirt URI qemu:///system
  81. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (virt-install:358) Requesting virt method 'default', hv type 'default'.
  82. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (virt-install:583) Received virt method 'kvm'
  83. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (virt-install:584) Hypervisor name is 'hvm'
  84. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (virt-install:270) Distilled --network options: ['network=default192-168-122']
  85. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (virt-install:183) Distilled --disk options: ['size=16,path=/var/lib/libvirt/images/virtinst.qcow2']
  86. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (connection:221) Fetching volume XML failed: Storage volume not found: no storage vol with matching path '/var/kvmimages/TestCentos7.5-1.qcow2'
  87. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (connection:221) Fetching volume XML failed: Storage volume not found: no storage vol with matching path '/var/kvmimages/TestCentos7.5.qcow2'
  88. [Thu, 05 Jul 2018 00:44:58 virt-install 10815] DEBUG (distroinstaller:180) DistroInstaller location is a network source.
  89. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (guest:251) Setting Guest.os_variant to 'rhel7'
  90. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:57) Using scratchdir=/var/lib/libvirt/boot
  91. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:479) Finding distro store for location=http://192.168.122.1/inst
  92. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:90) Fetching URI: http://192.168.122.1/inst/.treeinfo
  93. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:165) Saved file to /var/lib/libvirt/boot/virtinst-.treeinfo.wwtiWz
  94. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:383) treeinfo family=CentOS
  95. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:498) variant=rhel7.0 has distro=rhel, looking for matching distro store to prioritize
  96. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:505) Prioritizing distro store=<class 'virtinst.urlfetcher.RHELDistro'>
  97. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:519) Detected distro name=CentOS osvariant=centos7.0
  98. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (virt-install:697) Guest.has_install_phase: True
  99.  
  100. Starting install...
  101. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:90) Fetching URI: http://192.168.122.1/inst/images/pxeboot/vmlinuz
  102. Retrieving file vmlinuz... | 5.9 MB 00:00:00
  103. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:165) Saved file to /var/lib/libvirt/boot/virtinst-vmlinuz.2utzPp
  104. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:90) Fetching URI: http://192.168.122.1/inst/images/pxeboot/initrd.img
  105. Retrieving file initrd.img... | 50 MB 00:00:00
  106. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (urlfetcher:165) Saved file to /var/lib/libvirt/boot/virtinst-initrd.img.eab4kg
  107. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (kernelupload:134) Have access to preferred scratchdir so nothing to upload
  108. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (guest:384) Generated install XML:
  109. <domain type="kvm">
  110. <name>virt-installed</name>
  111. <uuid>d437ddc1-0e32-4278-a04a-df80fcf49684</uuid>
  112. <memory>1048576</memory>
  113. <currentMemory>1048576</currentMemory>
  114. <vcpu>2</vcpu>
  115. <os>
  116. <type arch="x86_64">hvm</type>
  117. <kernel>/var/lib/libvirt/boot/virtinst-vmlinuz.2utzPp</kernel>
  118. <initrd>/var/lib/libvirt/boot/virtinst-initrd.img.eab4kg</initrd>
  119. <cmdline>ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst</cmdline>
  120. </os>
  121. <features>
  122. <acpi/>
  123. <apic/>
  124. </features>
  125. <cpu mode="custom" match="exact">
  126. <model>Nehalem-IBRS</model>
  127. </cpu>
  128. <clock offset="utc">
  129. <timer name="rtc" tickpolicy="catchup"/>
  130. <timer name="pit" tickpolicy="delay"/>
  131. <timer name="hpet" present="no"/>
  132. </clock>
  133. <on_reboot>destroy</on_reboot>
  134. <pm>
  135. <suspend-to-mem enabled="no"/>
  136. <suspend-to-disk enabled="no"/>
  137. </pm>
  138. <devices>
  139. <emulator>/usr/libexec/qemu-kvm</emulator>
  140. <disk type="file" device="disk">
  141. <driver name="qemu" type="qcow2"/>
  142. <source file="/var/lib/libvirt/images/virtinst.qcow2"/>
  143. <target dev="vda" bus="virtio"/>
  144. </disk>
  145. <controller type="usb" index="0" model="ich9-ehci1"/>
  146. <controller type="usb" index="0" model="ich9-uhci1">
  147. <master startport="0"/>
  148. </controller>
  149. <controller type="usb" index="0" model="ich9-uhci2">
  150. <master startport="2"/>
  151. </controller>
  152. <controller type="usb" index="0" model="ich9-uhci3">
  153. <master startport="4"/>
  154. </controller>
  155. <interface type="network">
  156. <source network="default192-168-122"/>
  157. <mac address="52:54:00:65:99:31"/>
  158. <model type="virtio"/>
  159. </interface>
  160. <console type="pty"/>
  161. <channel type="unix">
  162. <source mode="bind"/>
  163. <target type="virtio" name="org.qemu.guest_agent.0"/>
  164. </channel>
  165. </devices>
  166. </domain>
  167.  
  168. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (guest:385) Generated boot XML:
  169. <domain type="kvm">
  170. <name>virt-installed</name>
  171. <uuid>d437ddc1-0e32-4278-a04a-df80fcf49684</uuid>
  172. <memory>1048576</memory>
  173. <currentMemory>1048576</currentMemory>
  174. <vcpu>2</vcpu>
  175. <os>
  176. <type arch="x86_64">hvm</type>
  177. <boot dev="hd"/>
  178. </os>
  179. <features>
  180. <acpi/>
  181. <apic/>
  182. </features>
  183. <cpu mode="custom" match="exact">
  184. <model>Nehalem-IBRS</model>
  185. </cpu>
  186. <clock offset="utc">
  187. <timer name="rtc" tickpolicy="catchup"/>
  188. <timer name="pit" tickpolicy="delay"/>
  189. <timer name="hpet" present="no"/>
  190. </clock>
  191. <pm>
  192. <suspend-to-mem enabled="no"/>
  193. <suspend-to-disk enabled="no"/>
  194. </pm>
  195. <devices>
  196. <emulator>/usr/libexec/qemu-kvm</emulator>
  197. <disk type="file" device="disk">
  198. <driver name="qemu" type="qcow2"/>
  199. <source file="/var/lib/libvirt/images/virtinst.qcow2"/>
  200. <target dev="vda" bus="virtio"/>
  201. </disk>
  202. <controller type="usb" index="0" model="ich9-ehci1"/>
  203. <controller type="usb" index="0" model="ich9-uhci1">
  204. <master startport="0"/>
  205. </controller>
  206. <controller type="usb" index="0" model="ich9-uhci2">
  207. <master startport="2"/>
  208. </controller>
  209. <controller type="usb" index="0" model="ich9-uhci3">
  210. <master startport="4"/>
  211. </controller>
  212. <interface type="network">
  213. <source network="default192-168-122"/>
  214. <mac address="52:54:00:65:99:31"/>
  215. <model type="virtio"/>
  216. </interface>
  217. <console type="pty"/>
  218. <channel type="unix">
  219. <source mode="bind"/>
  220. <target type="virtio" name="org.qemu.guest_agent.0"/>
  221. </channel>
  222. </devices>
  223. </domain>
  224.  
  225. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (guest:441) XML fetched from libvirt object:
  226. <domain type='kvm' id='46'>
  227. <name>virt-installed</name>
  228. <uuid>d437ddc1-0e32-4278-a04a-df80fcf49684</uuid>
  229. <memory unit='KiB'>1048576</memory>
  230. <currentMemory unit='KiB'>1048576</currentMemory>
  231. <vcpu placement='static'>2</vcpu>
  232. <resource>
  233. <partition>/machine</partition>
  234. </resource>
  235. <os>
  236. <type arch='x86_64' machine='pc-i440fx-rhel7.0.0'>hvm</type>
  237. <kernel>/var/lib/libvirt/boot/virtinst-vmlinuz.2utzPp</kernel>
  238. <initrd>/var/lib/libvirt/boot/virtinst-initrd.img.eab4kg</initrd>
  239. <cmdline>ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst</cmdline>
  240. <boot dev='hd'/>
  241. </os>
  242. <features>
  243. <acpi/>
  244. <apic/>
  245. </features>
  246. <cpu mode='custom' match='exact' check='full'>
  247. <model fallback='forbid'>Nehalem-IBRS</model>
  248. <feature policy='require' name='x2apic'/>
  249. <feature policy='require' name='hypervisor'/>
  250. </cpu>
  251. <clock offset='utc'>
  252. <timer name='rtc' tickpolicy='catchup'/>
  253. <timer name='pit' tickpolicy='delay'/>
  254. <timer name='hpet' present='no'/>
  255. </clock>
  256. <on_poweroff>destroy</on_poweroff>
  257. <on_reboot>destroy</on_reboot>
  258. <on_crash>destroy</on_crash>
  259. <pm>
  260. <suspend-to-mem enabled='no'/>
  261. <suspend-to-disk enabled='no'/>
  262. </pm>
  263. <devices>
  264. <emulator>/usr/libexec/qemu-kvm</emulator>
  265. <disk type='file' device='disk'>
  266. <driver name='qemu' type='qcow2'/>
  267. <source file='/var/lib/libvirt/images/virtinst.qcow2'/>
  268. <backingStore/>
  269. <target dev='vda' bus='virtio'/>
  270. <alias name='virtio-disk0'/>
  271. <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/>
  272. </disk>
  273. <controller type='usb' index='0' model='ich9-ehci1'>
  274. <alias name='usb'/>
  275. <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x7'/>
  276. </controller>
  277. <controller type='usb' index='0' model='ich9-uhci1'>
  278. <alias name='usb'/>
  279. <master startport='0'/>
  280. <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0' multifunction='on'/>
  281. </controller>
  282. <controller type='usb' index='0' model='ich9-uhci2'>
  283. <alias name='usb'/>
  284. <master startport='2'/>
  285. <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x1'/>
  286. </controller>
  287. <controller type='usb' index='0' model='ich9-uhci3'>
  288. <alias name='usb'/>
  289. <master startport='4'/>
  290. <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x2'/>
  291. </controller>
  292. <controller type='pci' index='0' model='pci-root'>
  293. <alias name='pci.0'/>
  294. </controller>
  295. <controller type='virtio-serial' index='0'>
  296. <alias name='virtio-serial0'/>
  297. <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
  298. </controller>
  299. <interface type='network'>
  300. <mac address='52:54:00:65:99:31'/>
  301. <source network='default192-168-122' bridge='virbr0'/>
  302. <target dev='vnet0'/>
  303. <model type='virtio'/>
  304. <alias name='net0'/>
  305. <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
  306. </interface>
  307. <serial type='pty'>
  308. <source path='/dev/pts/1'/>
  309. <target type='isa-serial' port='0'>
  310. <model name='isa-serial'/>
  311. </target>
  312. <alias name='serial0'/>
  313. </serial>
  314. <console type='pty' tty='/dev/pts/1'>
  315. <source path='/dev/pts/1'/>
  316. <target type='serial' port='0'/>
  317. <alias name='serial0'/>
  318. </console>
  319. <channel type='unix'>
  320. <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-46-virt-installed/org.qemu.guest_agent.0'/>
  321. <target type='virtio' name='org.qemu.guest_agent.0' state='disconnected'/>
  322. <alias name='channel0'/>
  323. <address type='virtio-serial' controller='0' bus='0' port='1'/>
  324. </channel>
  325. <input type='mouse' bus='ps2'>
  326. <alias name='input0'/>
  327. </input>
  328. <input type='keyboard' bus='ps2'>
  329. <alias name='input1'/>
  330. </input>
  331. <memballoon model='virtio'>
  332. <alias name='balloon0'/>
  333. <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/>
  334. </memballoon>
  335. </devices>
  336. <seclabel type='dynamic' model='selinux' relabel='yes'>
  337. <label>system_u:system_r:svirt_t:s0:c1000,c1006</label>
  338. <imagelabel>system_u:object_r:svirt_image_t:s0:c1000,c1006</imagelabel>
  339. </seclabel>
  340. <seclabel type='dynamic' model='dac' relabel='yes'>
  341. <label>+107:+107</label>
  342. <imagelabel>+107:+107</imagelabel>
  343. </seclabel>
  344. </domain>
  345.  
  346. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (installer:187) Removing /var/lib/libvirt/boot/virtinst-vmlinuz.2utzPp
  347. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (installer:187) Removing /var/lib/libvirt/boot/virtinst-initrd.img.eab4kg
  348. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (cli:459) Connecting to text console
  349. [Thu, 05 Jul 2018 00:44:59 virt-install 10815] DEBUG (cli:424) Running: virsh --connect qemu:///system console virt-installed
  350. Connected to domain virt-installed
  351. Escape character is ^]
  352. [ 0.000000] Initializing cgroup subsys cpuset
  353. [ 0.000000] Initializing cgroup subsys cpu
  354. [ 0.000000] Initializing cgroup subsys cpuacct
  355. [ 0.000000] Linux version 3.10.0-862.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) ) #1 SMP Fri Apr 20 16:44:24 UTC 2018
  356. [ 0.000000] Command line: ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst
  357. [ 0.000000] e820: BIOS-provided physical RAM map:
  358. [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
  359. [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
  360. [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
  361. [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fff6fff] usable
  362. [ 0.000000] BIOS-e820: [mem 0x000000003fff7000-0x000000003fffffff] reserved
  363. [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
  364. [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
  365. [ 0.000000] NX (Execute Disable) protection: active
  366. [ 0.000000] SMBIOS 2.4 present.
  367. [ 0.000000] Hypervisor detected: KVM
  368. [ 0.000000] e820: last_pfn = 0x3fff7 max_arch_pfn = 0x400000000
  369. [ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WP UC- UC
  370. [ 0.000000] found SMP MP-table at [mem 0x000f6370-0x000f637f] mapped at [ffffffffff200370]
  371. [ 0.000000] RAMDISK: [mem 0x3cd7e000-0x3ffeffff]
  372. [ 0.000000] Early table checksum verification disabled
  373. [ 0.000000] ACPI: RSDP 00000000000f61a0 00014 (v00 BOCHS )
  374. [ 0.000000] ACPI: RSDT 000000003ffffb40 00030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
  375. [ 0.000000] ACPI: FACP 000000003ffff177 00074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
  376. [ 0.000000] ACPI: DSDT 000000003fffe040 01137 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
  377. [ 0.000000] ACPI: FACS 000000003fffe000 00040
  378. [ 0.000000] ACPI: SSDT 000000003ffff1eb 008D5 (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)
  379. [ 0.000000] ACPI: APIC 000000003ffffac0 00080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
  380. [ 0.000000] No NUMA configuration found
  381. [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000003fff6fff]
  382. [ 0.000000] NODE_DATA(0) allocated [mem 0x3cd57000-0x3cd7dfff]
  383. [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
  384. [ 0.000000] kvm-clock: cpu 0, msr 0:3cd07001, primary cpu clock
  385. [ 0.000000] kvm-clock: using sched offset of 2117800730 cycles
  386. [ 0.000000] Zone ranges:
  387. [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
  388. [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
  389. [ 0.000000] Normal empty
  390. [ 0.000000] Movable zone start for each node
  391. [ 0.000000] Early memory node ranges
  392. [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
  393. [ 0.000000] node 0: [mem 0x00100000-0x3fff6fff]
  394. [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x3fff6fff]
  395. [ 0.000000] ACPI: PM-Timer IO Port: 0x608
  396. [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
  397. [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
  398. [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
  399. [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
  400. [ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
  401. [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
  402. [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
  403. [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
  404. [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
  405. [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
  406. [ 0.000000] Using ACPI (MADT) for SMP configuration information
  407. [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
  408. [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
  409. [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
  410. [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
  411. [ 0.000000] e820: [mem 0x40000000-0xfeffbfff] available for PCI devices
  412. [ 0.000000] Booting paravirtualized kernel on KVM
  413. [ 0.000000] setup_percpu: NR_CPUS:5120 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
  414. [ 0.000000] PERCPU: Embedded 35 pages/cpu @ffff900a3ca00000 s104856 r8192 d30312 u1048576
  415. [ 0.000000] KVM setup async PF for cpu 0
  416. [ 0.000000] kvm-stealtime: cpu 0, msr 3ca134c0
  417. [ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
  418. [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 257920
  419. [ 0.000000] Policy zone: DMA32
  420. [ 0.000000] Kernel command line: ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst
  421. [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
  422. [ 0.000000] Memory: 960348k/1048540k available (7324k kernel code, 392k absent, 87800k reserved, 6305k data, 1832k init)
  423. [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
  424. [ 0.000000] x86/pti: Unmapping kernel while in userspace
  425. [ 0.000000] Hierarchical RCU implementation.
  426. [ 0.000000] RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=2.
  427. [ 0.000000] NR_IRQS:327936 nr_irqs:440 0
  428. [ 0.000000] Console: colour *CGA 80x25
  429. [ 0.000000] console [tty0] enabled
  430. [ 0.000000] console [ttyS0] enabled
  431. [ 0.000000] allocated 4194304 bytes of page_cgroup
  432. [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
  433. [ 0.000000] tsc: Detected 2594.106 MHz processor
  434. [ 0.145381] Calibrating delay loop (skipped) preset value.. 5188.21 BogoMIPS (lpj=2594106)
  435. [ 0.147505] pid_max: default: 32768 minimum: 301
  436. [ 0.148509] Security Framework initialized
  437. [ 0.149255] SELinux: Initializing.
  438. [ 0.149889] Yama: becoming mindful.
  439. [ 0.150654] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
  440. [ 0.152660] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
  441. [ 0.154251] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
  442. [ 0.155420] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
  443. [ 0.156937] Initializing cgroup subsys memory
  444. [ 0.157892] Initializing cgroup subsys devices
  445. [ 0.159066] Initializing cgroup subsys freezer
  446. [ 0.159898] Initializing cgroup subsys net_cls
  447. [ 0.160834] Initializing cgroup subsys blkio
  448. [ 0.161979] Initializing cgroup subsys perf_event
  449. [ 0.163234] Initializing cgroup subsys hugetlb
  450. [ 0.164447] Initializing cgroup subsys pids
  451. [ 0.165562] Initializing cgroup subsys net_prio
  452. [ 0.166876] mce: CPU supports 10 MCE banks
  453. [ 0.167983] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
  454. [ 0.169218] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0
  455. [ 0.170623] tlb_flushall_shift: 6
  456. [ 0.171930] FEATURE SPEC_CTRL Present
  457. [ 0.172884] FEATURE IBPB_SUPPORT Present
  458. [ 0.174283] Spectre V2 : Mitigation: Full retpoline
  459. [ 0.175790] Freeing SMP alternatives: 24k freed
  460. [ 0.184450] ACPI: Core revision 20130517
  461. [ 0.186295] ACPI: All ACPI Tables successfully acquired
  462. [ 0.187827] ftrace: allocating 28047 entries in 110 pages
  463. [ 0.236323] Enabling x2apic
  464. [ 0.237024] Enabled x2apic
  465. [ 0.237927] Switched APIC routing to physical x2apic.
  466. [ 0.240337] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
  467. [ 0.241681] smpboot: CPU0: Intel Core i7 9xx (Nehalem Core i7, IBRS update) (fam: 06, model: 1a, stepping: 03)
  468. [ 0.345070] Performance Events: unsupported p6 CPU model 26 no PMU driver, software events only.
  469. [ 0.353238] KVM setup paravirtual spinlock
  470. [ 0.358112] smpboot: Booting Node 0, Processors #1 OK
  471. [ 0.367593] kvm-clock: cpu 1, msr 0:3cd07041, secondary cpu clock
  472. [ 0.392579] Brought up 2 CPUs
  473. [ 0.392587] KVM setup async PF for cpu 1
  474. [ 0.392593] kvm-stealtime: cpu 1, msr 3cb134c0
  475. [ 0.395679] smpboot: Max logical packages: 2
  476. [ 0.400785] smpboot: Total of 2 processors activated (10376.42 BogoMIPS)
  477. [ 0.404906] devtmpfs: initialized
  478. [ 0.411275] EVM: security.selinux
  479. [ 0.412101] EVM: security.ima
  480. [ 0.412714] EVM: security.capability
  481. [ 0.415829] atomic64 test passed for x86-64 platform with CX8 and with SSE
  482. [ 0.417043] pinctrl core: initialized pinctrl subsystem
  483. [ 0.418114] RTC time: 22:45:01, date: 07/04/18
  484. [ 0.419382] NET: Registered protocol family 16
  485. [ 0.420748] ACPI: bus type PCI registered
  486. [ 0.421774] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
  487. [ 0.423859] PCI: Using configuration type 1 for base access
  488. [ 0.429753] ACPI: Added _OSI(Module Device)
  489. [ 0.430678] ACPI: Added _OSI(Processor Device)
  490. [ 0.431455] ACPI: Added _OSI(3.0 _SCP Extensions)
  491. [ 0.432324] ACPI: Added _OSI(Processor Aggregator Device)
  492. [ 0.436842] ACPI: Interpreter enabled
  493. [ 0.437966] ACPI: (supports S0 S5)
  494. [ 0.438976] ACPI: Using IOAPIC for interrupt routing
  495. [ 0.440438] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
  496. [ 0.443808] ACPI: Enabled 16 GPEs in block 00 to 0F
  497. [ 0.449710] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
  498. [ 0.451369] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
  499. [ 0.453534] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
  500. [ 0.455447] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
  501. [ 0.457918] acpiphp: Slot [3] registered
  502. [ 0.458664] acpiphp: Slot [5] registered
  503. [ 0.459358] acpiphp: Slot [6] registered
  504. [ 0.460062] acpiphp: Slot [7] registered
  505. [ 0.460768] acpiphp: Slot [8] registered
  506. [ 0.461488] acpiphp: Slot [9] registered
  507. [ 0.462224] acpiphp: Slot [10] registered
  508. [ 0.462935] acpiphp: Slot [11] registered
  509. [ 0.463770] acpiphp: Slot [12] registered
  510. [ 0.464579] acpiphp: Slot [13] registered
  511. [ 0.465605] acpiphp: Slot [14] registered
  512. [ 0.466655] acpiphp: Slot [15] registered
  513. [ 0.467720] acpiphp: Slot [16] registered
  514. [ 0.468731] acpiphp: Slot [17] registered
  515. [ 0.469442] acpiphp: Slot [18] registered
  516. [ 0.470148] acpiphp: Slot [19] registered
  517. [ 0.470926] acpiphp: Slot [20] registered
  518. [ 0.471966] acpiphp: Slot [21] registered
  519. [ 0.472785] acpiphp: Slot [22] registered
  520. [ 0.473706] acpiphp: Slot [23] registered
  521. [ 0.474969] acpiphp: Slot [24] registered
  522. [ 0.475971] acpiphp: Slot [25] registered
  523. [ 0.476877] acpiphp: Slot [26] registered
  524. [ 0.477748] acpiphp: Slot [27] registered
  525. [ 0.478622] acpiphp: Slot [28] registered
  526. [ 0.479528] acpiphp: Slot [29] registered
  527. [ 0.480427] acpiphp: Slot [30] registered
  528. [ 0.481297] acpiphp: Slot [31] registered
  529. [ 0.482159] PCI host bridge to bus 0000:00
  530. [ 0.483014] pci_bus 0000:00: root bus resource [bus 00-ff]
  531. [ 0.483982] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
  532. [ 0.485276] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
  533. [ 0.487011] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
  534. [ 0.488641] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfebfffff window]
  535. [ 0.503376] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
  536. [ 0.505365] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
  537. [ 0.507580] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
  538. [ 0.510252] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
  539. [ 0.512401] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
  540. [ 0.513933] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
  541. [ 0.648940] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
  542. [ 0.650568] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
  543. [ 0.652128] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
  544. [ 0.653677] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
  545. [ 0.655188] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
  546. [ 0.656763] vgaarb: loaded
  547. [ 0.657519] SCSI subsystem initialized
  548. [ 0.658359] ACPI: bus type USB registered
  549. [ 0.659245] usbcore: registered new interface driver usbfs
  550. [ 0.660621] usbcore: registered new interface driver hub
  551. [ 0.661803] usbcore: registered new device driver usb
  552. [ 0.663013] EDAC MC: Ver: 3.0.0
  553. [ 0.664131] PCI: Using ACPI for IRQ routing
  554. [ 0.665542] NetLabel: Initializing
  555. [ 0.666231] NetLabel: domain hash size = 128
  556. [ 0.666987] NetLabel: protocols = UNLABELED CIPSOv4
  557. [ 0.667938] NetLabel: unlabeled traffic allowed by default
  558. [ 0.669161] amd_nb: Cannot enumerate AMD northbridges
  559. [ 0.670271] Switched to clocksource kvm-clock
  560. [ 0.682209] pnp: PnP ACPI init
  561. [ 0.683097] ACPI: bus type PNP registered
  562. [ 0.684551] pnp: PnP ACPI: found 5 devices
  563. [ 0.685506] ACPI: bus type PNP unregistered
  564. [ 0.694033] NET: Registered protocol family 2
  565. [ 0.695245] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
  566. [ 0.696741] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
  567. [ 0.698195] TCP: Hash tables configured (established 8192 bind 8192)
  568. [ 0.699620] TCP: reno registered
  569. [ 0.700328] UDP hash table entries: 512 (order: 2, 16384 bytes)
  570. [ 0.701591] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
  571. [ 0.703015] NET: Registered protocol family 1
  572. [ 0.703971] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
  573. [ 0.705234] pci 0000:00:01.0: PIIX3: Enabling Passive Release
  574. [ 0.706469] pci 0000:00:01.0: Activating ISA DMA hang workarounds
  575. [ 0.708482] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
  576. [ 0.711319] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
  577. [ 0.713884] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10
  578. [ 0.716211] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
  579. [ 0.718139] Unpacking initramfs...
  580. [ 4.465467] Freeing initrd memory: 51656k freed
  581. [ 4.473554] sha1_ssse3: Using SSSE3 optimized SHA-1 implementation
  582. [ 4.475733] sha256_ssse3: Using SSSE3 optimized SHA-256 implementation
  583. [ 4.478287] futex hash table entries: 512 (order: 3, 32768 bytes)
  584. [ 4.480204] Initialise system trusted keyring
  585. [ 4.481660] audit: initializing netlink socket (disabled)
  586. [ 4.483450] type=2000 audit(1530744305.871:1): initialized
  587. [ 4.506623] HugeTLB registered 2 MB page size, pre-allocated 0 pages
  588. [ 4.510261] zpool: loaded
  589. [ 4.511136] zbud: loaded
  590. [ 4.512324] VFS: Disk quotas dquot_6.5.2
  591. [ 4.513681] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
  592. [ 4.515974] msgmni has been set to 1976
  593. [ 4.517285] Key type big_key registered
  594. [ 4.519376] NET: Registered protocol family 38
  595. [ 4.520819] Key type asymmetric registered
  596. [ 4.522144] Asymmetric key parser 'x509' registered
  597. [ 4.523714] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
  598. [ 4.525954] io scheduler noop registered
  599. [ 4.527180] io scheduler deadline registered (default)
  600. [ 4.528849] io scheduler cfq registered
  601. [ 4.530107] io scheduler mq-deadline registered
  602. [ 4.531605] io scheduler kyber registered
  603. [ 4.533068] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
  604. [ 4.534848] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
  605. [ 4.537124] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
  606. [ 4.539342] ACPI: Power Button [PWRF]
  607. [ 4.540722] GHES: HEST is not enabled!
  608. [ 4.542034] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
  609. [ 4.566613] 00:04: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
  610. [ 4.568242] Non-volatile memory driver v1.3
  611. [ 4.569062] Linux agpgart interface v0.103
  612. [ 4.569924] crash memory driver: version 1.1
  613. [ 4.571404] rdac: device handler registered
  614. [ 4.572813] hp_sw: device handler registered
  615. [ 4.574207] emc: device handler registered
  616. [ 4.575586] alua: device handler registered
  617. [ 4.576998] libphy: Fixed MDIO Bus: probed
  618. [ 4.578409] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
  619. [ 4.580485] ehci-pci: EHCI PCI platform driver
  620. [ 4.582678] ehci-pci 0000:00:04.7: EHCI Host Controller
  621. [ 4.584438] ehci-pci 0000:00:04.7: new USB bus registered, assigned bus number 1
  622. [ 4.586964] ehci-pci 0000:00:04.7: irq 11, io mem 0xfebc1000
  623. [ 4.594460] ehci-pci 0000:00:04.7: USB 2.0 started, EHCI 1.00
  624. [ 4.595458] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
  625. [ 4.596353] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  626. [ 4.597293] usb usb1: Product: EHCI Host Controller
  627. [ 4.597955] usb usb1: Manufacturer: Linux 3.10.0-862.el7.x86_64 ehci_hcd
  628. [ 4.598981] usb usb1: SerialNumber: 0000:00:04.7
  629. [ 4.600436] hub 1-0:1.0: USB hub found
  630. [ 4.601429] hub 1-0:1.0: 6 ports detected
  631. [ 4.602710] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
  632. [ 4.604277] ohci-pci: OHCI PCI platform driver
  633. [ 4.605425] uhci_hcd: USB Universal Host Controller Interface driver
  634. [ 4.608032] uhci_hcd 0000:00:04.0: UHCI Host Controller
  635. [ 4.609448] uhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
  636. [ 4.611318] uhci_hcd 0000:00:04.0: detected 2 ports
  637. [ 4.612616] uhci_hcd 0000:00:04.0: irq 11, io base 0x0000c060
  638. [ 4.614154] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
  639. [ 4.615947] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  640. [ 4.617651] usb usb2: Product: UHCI Host Controller
  641. [ 4.618526] usb usb2: Manufacturer: Linux 3.10.0-862.el7.x86_64 uhci_hcd
  642. [ 4.619681] usb usb2: SerialNumber: 0000:00:04.0
  643. [ 4.621664] hub 2-0:1.0: USB hub found
  644. [ 4.622408] hub 2-0:1.0: 2 ports detected
  645. [ 4.625353] uhci_hcd 0000:00:04.1: UHCI Host Controller
  646. [ 4.626845] uhci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 3
  647. [ 4.628340] uhci_hcd 0000:00:04.1: detected 2 ports
  648. [ 4.629644] uhci_hcd 0000:00:04.1: irq 10, io base 0x0000c080
  649. [ 4.631017] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
  650. [ 4.632516] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  651. [ 4.634184] usb usb3: Product: UHCI Host Controller
  652. [ 4.635429] usb usb3: Manufacturer: Linux 3.10.0-862.el7.x86_64 uhci_hcd
  653. [ 4.636810] usb usb3: SerialNumber: 0000:00:04.1
  654. [ 4.637714] hub 3-0:1.0: USB hub found
  655. [ 4.638612] hub 3-0:1.0: 2 ports detected
  656. [ 4.640731] uhci_hcd 0000:00:04.2: UHCI Host Controller
  657. [ 4.641975] uhci_hcd 0000:00:04.2: new USB bus registered, assigned bus number 4
  658. [ 4.643674] uhci_hcd 0000:00:04.2: detected 2 ports
  659. [ 4.644886] uhci_hcd 0000:00:04.2: irq 10, io base 0x0000c0a0
  660. [ 4.646338] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
  661. [ 4.648000] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  662. [ 4.649730] usb usb4: Product: UHCI Host Controller
  663. [ 4.650948] usb usb4: Manufacturer: Linux 3.10.0-862.el7.x86_64 uhci_hcd
  664. [ 4.652764] usb usb4: SerialNumber: 0000:00:04.2
  665. [ 4.654152] hub 4-0:1.0: USB hub found
  666. [ 4.655177] hub 4-0:1.0: 2 ports detected
  667. [ 4.656313] usbcore: registered new interface driver usbserial
  668. [ 4.657504] usbcore: registered new interface driver usbserial_generic
  669. [ 4.658827] usbserial: USB Serial support registered for generic
  670. [ 4.660023] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
  671. [ 4.663532] serio: i8042 KBD port at 0x60,0x64 irq 1
  672. [ 4.664505] serio: i8042 AUX port at 0x60,0x64 irq 12
  673. [ 4.665791] mousedev: PS/2 mouse device common for all mice
  674. [ 4.667407] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
  675. [ 4.669469] rtc_cmos 00:00: RTC can wake from S4
  676. [ 4.670196] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input2
  677. [ 4.670648] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
  678. [ 4.674715] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
  679. [ 4.676368] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram
  680. [ 4.678031] cpuidle: using governor menu
  681. [ 4.679364] hidraw: raw HID events driver (C) Jiri Kosina
  682. [ 4.680992] usbcore: registered new interface driver usbhid
  683. [ 4.682203] usbhid: USB HID core driver
  684. [ 4.683027] drop_monitor: Initializing network drop monitor service
  685. [ 4.684192] TCP: cubic registered
  686. [ 4.685194] Initializing XFRM netlink socket
  687. [ 4.686266] NET: Registered protocol family 10
  688. [ 4.688059] NET: Registered protocol family 17
  689. [ 4.688923] mpls_gso: MPLS GSO support
  690. [ 4.689868] microcode: CPU0 sig=0x106a3, pf=0x1, revision=0x1
  691. [ 4.691041] microcode: CPU1 sig=0x106a3, pf=0x1, revision=0x1
  692. [ 4.692462] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
  693. [ 4.694175] Loading compiled-in X.509 certificates
  694. [ 4.695627] Loaded X.509 cert 'CentOS Linux kpatch signing key: ea0413152cde1d98ebdca3fe6f0230904c9ef717'
  695. [ 4.697307] Loaded X.509 cert 'CentOS Linux Driver update signing key: 7f421ee0ab69461574bb358861dbe77762a4201b'
  696. [ 4.699522] Loaded X.509 cert 'CentOS Linux kernel signing key: 3af3ce8a74696ef1bd0f37e552627b7109e32b96'
  697. [ 4.701221] registered taskstats version 1
  698. [ 4.705468] Key type trusted registered
  699. [ 4.709487] Key type encrypted registered
  700. [ 4.710493] IMA: No TPM chip found, activating TPM-bypass! (rc=-19)
  701. [ 4.712243] Magic number: 10:875:804
  702. [ 4.713235] rtc_cmos 00:00: setting system clock to 2018-07-04 22:45:05 UTC (1530744305)
  703. [ 4.715878] Freeing unused kernel memory: 1832k freed
  704. [ 4.717410] Write protecting the kernel read-only data: 12288k
  705. [ 4.721009] Freeing unused kernel memory: 856k freed
  706. [ 4.724023] Freeing unused kernel memory: 684k freed
  707. [ 4.729699] random: systemd: uninitialized urandom read (16 bytes read)
  708. [ 4.731740] random: systemd: uninitialized urandom read (16 bytes read)
  709. [ 4.732916] random: systemd: uninitialized urandom read (16 bytes read)
  710. [ 4.734930] 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)
  711. [ 4.738032] systemd[1]: Detected virtualization kvm.
  712. [ 4.738935] systemd[1]: Detected architecture x86-64.
  713. [ 4.739967] systemd[1]: Running in initial RAM disk.
  714.  
  715. Welcome to CentOS Linux 7 (Core) dracut-033-535.el7 (Initramfs)!
  716.  
  717. [ 4.742469] systemd[1]: No hostname configured.
  718. [ 4.743335] systemd[1]: Set hostname to <localhost>.
  719. [ 4.744297] systemd[1]: Initializing machine ID from KVM UUID.
  720. [ 4.752233] random: systemd-cryptse: uninitialized urandom read (16 bytes read)
  721. [ 4.774332] random: systemd: uninitialized urandom read (16 bytes read)
  722. [ 4.776811] random: systemd: uninitialized urandom read (16 bytes read)
  723. [ 4.779244] random: systemd: uninitialized urandom read (16 bytes read)
  724. [ 4.780449] random: systemd: uninitialized urandom read (16 bytes read)
  725. [ 4.782467] random: systemd: uninitialized urandom read (16 bytes read)
  726. [ 4.783822] random: systemd: uninitialized urandom read (16 bytes read)
  727. [ 4.790533] systemd[1]: Cannot add dependency job for unit blk-availability.service, ignoring: Unit not found.
  728. [ OK ] Reached target Timers.
  729. [ 4.793805] systemd[1]: Reached target Timers.
  730. [ 4.794636] systemd[1]: Starting Timers.
  731. [ OK ] Reached target Swap.
  732. [ 4.796501] systemd[1]: Reached target Swap.
  733. [ 4.797248] systemd[1]: Starting Swap.
  734. [ OK ] Reached target Local Encrypted Volumes.
  735. [ 4.799132] systemd[1]: Reached target Local Encrypted Volumes.
  736. [ 4.800155] systemd[1]: Starting Local Encrypted Volumes.
  737. [ OK ] Created slice Root Slice.
  738. [ 4.802455] systemd[1]: Created slice Root Slice.
  739. [ 4.803259] systemd[1]: Starting Root Slice.
  740. [ OK ] Listening on Journal Socket.
  741. [ 4.805138] systemd[1]: Listening on Journal Socket.
  742. [ 4.806028] systemd[1]: Starting Journal Socket.
  743. [ OK ] Created slice System Slice.
  744. [ 4.808097] systemd[1]: Created slice System Slice.
  745. [ 4.809043] systemd[1]: Starting System Slice.
  746. [ 4.810622] systemd[1]: Starting Journal Service...
  747. Starting Journal Service...
  748. [ 4.814175] systemd[1]: Starting Setup Virtual Console...
  749. Starting Setup Virtual Console...
  750. [ 4.818095] systemd[1]: Starting Create list of required static device nodes for the current kernel...
  751. Starting Create list of required st... nodes for the current kernel...
  752. [ 4.825618] systemd[1]: Starting dracut cmdline hook...
  753. Starting dracut cmdline hook...
  754. [ OK ] Reached target Local File Systems.
  755. [ 4.830859] systemd[1]: Reached target Local File Systems.
  756. [ 4.833440] systemd[1]: Starting Local File Systems.
  757. [ OK ] Reached target Slices.
  758. [ 4.836020] systemd[1]: Reached target Slices.
  759. [ 4.837097] systemd[1]: Starting Slices.
  760. [ OK ] Listening on udev Kernel Socket.
  761. [ 4.840081] systemd[1]: Listening on udev Kernel Socket.
  762. [ 4.841543] systemd[1]: Starting udev Kernel Socket.
  763. [ 4.843897] systemd[1]: Starting Apply Kernel Variables...
  764. Starting Apply Kernel Variables...
  765. [ OK ] Listening on udev Control Socket.
  766. [ 4.852490] systemd[1]: Listening on udev Control Socket.
  767. [ 4.854034] systemd[1]: Starting udev Control Socket.
  768. [ OK ] Started Setup Virtual Console.
  769. [ 4.857982] systemd[1]: Started Setup Virtual Console.
  770. [ OK ] Started Create list of required sta...ce nodes for the current kernel.
  771. [ 4.866518] systemd[1]: Started Create list of required static device nodes for the current kernel.
  772. [ OK ] Started Apply Kernel Variables.
  773. [ 4.869761] systemd[1]: Started Apply Kernel Variables.
  774. [ 4.871839] systemd[1]: Starting Create Static Device Nodes in /dev...
  775. Starting Create Static Device Nodes in /dev...
  776. [ OK ] Started Create Static Device Nodes in /dev.
  777. [ 4.885779] systemd[1]: Started Create Static Device Nodes in /dev.
  778. [ OK ] Started Journal Service.
  779. [ 4.896876] systemd[1]: Started Journal Service.
  780. [ 4.961331] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
  781. [ 4.657019] dracut-cmdline[83]: Warning: 'method=' is deprecated. Using 'repo=http://192.168.122.1/inst' instead.
  782. [ OK ] Started dracut cmdline hook.
  783. Starting dracut pre-udev hook...
  784. [ 5.287617] squashfs: version 4.0 (2009/01/31) Phillip Lougher
  785. [ 5.312556] Loading iSCSI transport class v2.0-870.
  786. [ 5.322591] iscsi: registered transport (tcp)
  787. [ 5.358913] FDC 0 is a S82078B
  788. [ 5.393712] No iBFT detected.
  789. [ 5.443188] async_tx: api initialized (async)
  790. [ 5.445535] xor: measuring software checksum speed
  791. [ 5.456297] prefetch64-sse: 12076.000 MB/sec
  792. [ 5.467281] generic_sse: 11736.000 MB/sec
  793. [ 5.468152] xor: using function: prefetch64-sse (12076.000 MB/sec)
  794. [ 5.475441] tsc: Refined TSC clocksource calibration: 2594.098 MHz
  795. [ 5.497320] raid6: sse2x1 gen() 7824 MB/s
  796. [ 5.514288] raid6: sse2x2 gen() 9421 MB/s
  797. [ 5.531289] raid6: sse2x4 gen() 11527 MB/s
  798. [ 5.532040] raid6: using algorithm sse2x4 gen() (11527 MB/s)
  799. [ 5.532995] raid6: using ssse3x2 recovery algorithm
  800. [ 5.616401] device-mapper: uevent: version 1.0.3
  801. [ 5.617424] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
  802. [ 5.688671] device-mapper: multipath round-robin: version 1.2.0 loaded
  803. [ 5.803514] RPC: Registered named UNIX socket transport module.
  804. [ 5.804806] RPC: Registered udp transport module.
  805. [ 5.805801] RPC: Registered tcp transport module.
  806. [ 5.806714] RPC: Registered tcp NFSv4.1 backchannel transport module.
  807. [ OK ] Started dracut pre-udev hook.
  808. [ 5.930535] random: fast init done
  809. Starting udev Kernel Device Manager...
  810. [ OK ] Started udev Kernel Device Manager.
  811. Starting dracut pre-trigger hook...
  812. [ OK ] Started dracut pre-trigger hook.
  813. Starting udev Coldplug all Devices...
  814. Mounting Configuration File System...
  815. [ OK ] Started udev Coldplug all Devices.
  816. [ OK ] Mounted Configuration File System.
  817. [ OK ] Reached target System Initialization.
  818. [ OK ] Listening on Open-iSCSI iscsiuio Socket.
  819. [ OK ] Reached target Sockets.
  820. Starting Device-Mapper Multipath Device Controller...
  821. Starting Show Plymouth Boot Screen...
  822. [ 6.172003] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
  823. [ 6.206810] virtio-pci 0000:00:05.0: virtio_pci: leaving for legacy driver
  824. [ OK ] Started Show Plymouth Boot Screen.
  825. [ OK ] Reached target Paths.
  826. [ OK ] Reached target Basic System.
  827. [ 6.240328] virtio-pci 0000:00:06.0: virtio_pci: leaving for legacy driver
  828. [ 6.270246] scsi host0: ata_piix
  829. [ 6.271863] scsi host1: ata_piix
  830. [ 6.272956] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc100 irq 14
  831. [ 6.275010] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc108 irq 15
  832. [ 6.288407] virtio-pci 0000:00:07.0: virtio_pci: leaving for legacy driver
  833. [ OK ] Started Device-Mapper Multipath Device Controller.
  834. Starting Open-iSCSI...
  835. [ OK ] Started Open-iSCSI.
  836. Starting dracut initqueue hook...
  837. [ 6.402048] 8021q: 802.1Q VLAN Support v1.8
  838. [ 6.569813] 8021q: adding VLAN 0 to HW filter on device eth0
  839. [ 11.144694] dracut-initqueue[703]: RTNETLINK answers: File exists
  840. [ 11.971101] dracut-initqueue[703]: % Total % Received % Xferd Average Speed Time Time Time Current
  841. [ 11.973531] dracut-initqueue[703]: Dload Upload Total Spent Left Speed
  842. 78 420M 78 329M 0 0 299M 0 0:00:01 0:00:01 --:--:-- 299M 0 --:--:-- --:--:-- --:--:-- 0
  843. [ 13.075500] dracut-initqueue[703]: curl: (23) Failed writing body (8664 != 16384)
  844. [ 13.644397] loop: module loaded
  845. [ 13.296086] dracut-initqueue[703]: mount: wrong fs type, bad option, bad superblock on /dev/loop0,
  846. [ 13.299159] dracut-initqueue[703]: missing codepage or helper program, or other error
  847. [ 13.301747] dracut-initqueue[703]: In some cases useful info is found in syslog - try
  848. [ 13.305228] dracut-initqueue[703]: dmesg | tail or so.
  849. [ 13.309046] dracut-initqueue[703]: umount: /run/initramfs/squashfs: not mounted
  850. [ 13.316261] dracut-initqueue[703]: /sbin/dmsquash-live-root: line 286: printf: write error: No space left on device
  851. [ 13.968026] dracut-initqueue[703]: % Total % Received % Xferd Average Speed Time Time Time Current
  852. [ 13.971512] dracut-initqueue[703]: Dload Upload Total Spent Left Speed
  853. 100 2702 100 2702 0 0 334k 0 --:--:-- --:--:-- --:--:-- 376k 0 --:--:-- --:--:-- --:--:-- 0
  854. [ 14.472535] dracut-initqueue[703]: Traceback (most recent call last):
  855. [ 14.473261] dracut-initqueue[703]: File "/sbin/parse-kickstart", line 688, in <module>
  856. [ 14.474399] dracut-initqueue[703]: outfile, output = process_kickstart(path)
  857. [ 14.474845] dracut-initqueue[703]: File "/sbin/parse-kickstart", line 675, in process_kickstart
  858. [ 14.475393] dracut-initqueue[703]: processed_file = preprocessKickstart(ksfile)
  859. [ 14.475797] dracut-initqueue[703]: File "/usr/lib/python2.7/site-packages/pykickstart/parser.py", line 136, in preprocessKickstart
  860. [ 14.476600] dracut-initqueue[703]: rc = _preprocessStateMachine (iter(fh.readlines()))
  861. [ 14.479308] dracut-initqueue[703]: File "/usr/lib/python2.7/site-packages/pykickstart/parser.py", line 81, in _preprocessStateMachine
  862. [ 14.480391] dracut-initqueue[703]: os.write(outF, l)
  863. [ 14.483313] dracut-initqueue[703]: OSError: [Errno 28] No space left on device
  864. [ 14.503528] dracut-initqueue[703]: /lib/anaconda-lib.sh: line 217: /tmp/ks.info: No such file or directory
  865. [ OK ] Started dracut initqueue hook.
  866. Starting dracut pre-mount hook...
  867. [ OK ] Reached target Remote File Systems (Pre).
  868. [ OK ] Reached target Remote File Systems.
  869. [ OK ] Started dracut pre-mount hook.
  870. [ OK ] Reached target Initrd Root File System.
  871. Starting Reload Configuration from the Real Root...
  872. [ OK ] Started Reload Configuration from the Real Root.
  873. Starting dracut mount hook...
  874. [ OK ] Reached target Initrd File Systems.
  875. [ 14.815128] dracut-mount[1073]: Warning: Can't mount root filesystem
  876. [ OK ] Started Show Plymouth Boot Screen.
  877. [ OK ] Reached target Paths.
  878. [ OK ] Reached target Basic System.
  879. [ OK ] Started Device-Mapper Multipath Device Controller.
  880. Starting Open-iSCSI...
  881. [ OK ] Started Open-iSCSI.
  882. Starting dracut initqueue hook...
  883. [ 11.144694] dracut-initqueue[703]: RTNETLINK answers: File exists
  884. [ 11.971101] dracut-initqueue[703]: % Total % Received % Xferd Average Speed Time Time Time Current
  885. [ 11.973531] dracut-initqueue[703]: Dload Upload Total Spent Left Speed
  886. 78 420M 78 329M 0 0 299M 0 0:00:01 0:00:01 --:--:-- 299M 0 --:--:-- --:--:-- --:--:-- 0
  887. [ 13.075500] dracut-initqueue[703]: curl: (23) Failed writing body (8664 != 16384)
  888. [ 13.296086] dracut-initqueue[703]: mount: wrong fs type, bad option, bad superblock on /dev/loop0,
  889. [ 13.299159] dracut-initqueue[703]: missing codepage or helper program, or other error
  890. [ 13.301747] dracut-initqueue[703]: In some cases useful info is found in syslog - try
  891. [ 13.305228] dracut-initqueue[703]: dmesg | tail or so.
  892. [ 13.309046] dracut-initqueue[703]: umount: /run/initramfs/squashfs: not mounted
  893. [ 13.316261] dracut-initqueue[703]: /sbin/dmsquash-live-root: line 286: printf: write error: No space left on device
  894. [ 13.968026] dracut-initqueue[703]: % Total % Received % Xferd Average Speed Time Time Time Current
  895. [ 13.971512] dracut-initqueue[703]: Dload Upload Total Spent Left Speed
  896. 100 2702 100 2702 0 0 334k 0 --:--:-- --:--:-- --:--:-- 376k 0 --:--:-- --:--:-- --:--:-- 0
  897. [ 14.472535] dracut-initqueue[703]: Traceback (most recent call last):
  898. [ 14.473261] dracut-initqueue[703]: File "/sbin/parse-kickstart", line 688, in <module>
  899. [ 14.474399] dracut-initqueue[703]: outfile, output = process_kickstart(path)
  900. [ 14.474845] dracut-initqueue[703]: File "/sbin/parse-kickstart", line 675, in process_kickstart
  901. [ 14.475393] dracut-initqueue[703]: processed_file = preprocessKickstart(ksfile)
  902. [ 14.475797] dracut-initqueue[703]: File "/usr/lib/python2.7/site-packages/pykickstart/parser.py", line 136, in preprocessKickstart
  903. [ 14.476600] dracut-initqueue[703]: rc = _preprocessStateMachine (iter(fh.readlines()))
  904. [ 14.479308] dracut-initqueue[703]: File "/usr/lib/python2.7/site-packages/pykickstart/parser.py", line 81, in _preprocessStateMachine
  905. [ 14.480391] dracut-initqueue[703]: os.write(outF, l)
  906. [ 14.483313] dracut-initqueue[703]: OSError: [Errno 28] No space left on device
  907. [ 14.503528] dracut-initqueue[703]: /lib/anaconda-lib.sh: line 217: /tmp/ks.info: No such file or directory
  908. [ OK ] Started dracut initqueue hook.
  909. Starting dracut pre-mount hook...
  910. [ OK ] Reached target Remote File Systems (Pre).
  911. [ OK ] Reached target Remote File Systems.
  912. [ OK ] Started dracut pre-mount hook.
  913. [ OK ] Reached target Initrd Root File System.
  914. Starting Reload Configuration from the Real Root...
  915. [ OK ] Started Reload Configuration from the Real Root.
  916. Starting dracut mount hook...
  917. [ OK ] Reached target Initrd File Systems.
  918. [ 14.815128] dracut-mount[1073]: Warning: Can't mount root filesystem
  919. [ 14.880902] dracut-mount[1073]: Warning: /dev/root does not exist
  920. [ 14.892317] dracut-mount[1073]: /lib/dracut-lib.sh: line 1049: echo: write error: No space left on device
  921. Starting Dracut Emergency Shell...
  922. Warning: /dev/root does not exist
  923.  
  924. Generating "/run/initramfs/rdsosreport.txt"
  925.  
  926.  
  927. Entering emergency mode. Exit the shell to continue.
  928. Type "journalctl" to view system logs.
  929. You might want to save "/run/initramfs/rdsosreport.txt" to a USB stick or /boot
  930. after mounting them and attach it to a bug report.
  931.  
  932.  
  933. :/#
  934. :/# cat /etc/passwd
  935. rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin
  936. rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin
  937. nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin
  938. adm:x:3:4:adm:/var/adm:/sbin/nologin
  939. root:x:0:0::/root:/bin/sh
  940. nobody:x:99:99:Nobody:/:/sbin/nologin
  941. :/# ls /root/
  942. :/#
  943. :/#
  944. :/# ls -la /root/
  945. total 0
  946. drwxr-xr-x 2 root 0 40 May 3 20:32 .
  947. drwxr-xr-x 12 root 0 440 Jul 4 22:15 ..
  948. :/# ls -l /
  949. total 8
  950. lrwxrwxrwx 1 root 0 7 May 3 20:32 bin -> usr/bin
  951. drwxr-xr-x 13 root 0 2560 Jul 4 22:06 dev
  952. -rw-r--r-- 1 root 0 523 Jul 4 22:06 dracut-state.sh
  953. drwxr-xr-x 14 root 0 740 Jul 4 22:15 etc
  954. lrwxrwxrwx 1 root 0 23 May 3 20:32 init -> usr/lib/systemd/systemd
  955. lrwxrwxrwx 1 root 0 7 May 3 20:32 lib -> usr/lib
  956. lrwxrwxrwx 1 root 0 9 May 3 20:32 lib64 -> usr/lib64
  957. dr-xr-xr-x 79 root 0 0 Jul 4 22:05 proc
  958. drwxr-xr-x 2 root 0 40 May 3 20:32 root
  959. drwxr-xr-x 14 root 0 380 Jul 4 22:06 run
  960. lrwxrwxrwx 1 root 0 8 May 3 20:32 sbin -> usr/sbin
  961. -rwxr-xr-x 1 root 0 3117 Apr 11 07:30 shutdown
  962. dr-xr-xr-x 13 root 0 0 Jul 4 22:16 sys
  963. drwxr-xr-x 2 root 0 40 May 3 20:32 sysroot
  964. drwxr-xr-x 6 root 0 540 Jul 4 22:06 tmp
  965. drwxr-xr-x 9 root 0 180 May 3 20:32 usr
  966. drwxr-xr-x 3 root 0 120 Jul 4 22:06 var
  967. :/# ls -l /dev/
  968. total 0
  969. crw------- 1 root 0 10, 235 Jul 4 22:06 autofs
  970. drwxr-xr-x 2 root 0 80 Jul 4 22:06 block
  971. crw------- 1 root 0 10, 234 Jul 4 22:06 btrfs-control
  972. drwxr-xr-x 3 root 0 60 Jul 4 22:06 bus
  973. drwxr-xr-x 2 root 0 2440 Jul 4 22:06 char
  974. crw------- 1 root 0 5, 1 Jul 4 22:19 console
  975. lrwxrwxrwx 1 root 0 11 Jul 4 22:06 core -> /proc/kcore
  976. drwxr-xr-x 4 root 0 100 Jul 4 22:06 cpu
  977. crw------- 1 root 0 10, 61 Jul 4 22:06 cpu_dma_latency
  978. crw------- 1 root 0 10, 62 Jul 4 22:06 crash
  979. drwxr-xr-x 3 root 0 60 Jul 4 22:06 disk
  980. lrwxrwxrwx 1 root 0 13 Jul 4 22:06 fd -> /proc/self/fd
  981. crw-rw-rw- 1 root 0 1, 7 Jul 4 22:06 full
  982. crw-rw-rw- 1 root 0 10, 229 Jul 4 22:06 fuse
  983. crw------- 1 root 0 10, 228 Jul 4 22:06 hpet
  984. crw------- 1 root 0 10, 183 Jul 4 22:06 hwrng
  985. drwxr-xr-x 2 root 0 180 Jul 4 22:06 input
  986. crw-r--r-- 1 root 0 1, 11 Jul 4 22:06 kmsg
  987. srw-rw-rw- 1 root 0 0 Jul 4 22:06 log
  988. crw-rw---- 1 root disk 10, 237 Jul 4 22:06 loop-control
  989. brw-rw---- 1 root disk 7, 0 Jul 4 22:06 loop0
  990. drwxr-xr-x 2 root 0 60 Jul 4 22:06 mapper
  991. crw------- 1 root 0 10, 227 Jul 4 22:06 mcelog
  992. crw-r----- 1 root kmem 1, 1 Jul 4 22:06 mem
  993. drwxr-xr-x 2 root 0 60 Jul 4 22:06 net
  994. crw------- 1 root 0 10, 60 Jul 4 22:06 network_latency
  995. crw------- 1 root 0 10, 59 Jul 4 22:06 network_throughput
  996. crw-rw-rw- 1 root 0 1, 3 Jul 4 22:06 null
  997. crw------- 1 root 0 10, 144 Jul 4 22:06 nvram
  998. crw------- 1 root 0 1, 12 Jul 4 22:06 oldmem
  999. crw-r----- 1 root kmem 1, 4 Jul 4 22:06 port
  1000. crw-rw-rw- 1 root tty 5, 2 Jul 4 22:06 ptmx
  1001. drwxr-xr-x 2 root 0 0 Jul 4 22:06 pts
  1002. crw-rw-rw- 1 root 0 1, 8 Jul 4 22:06 random
  1003. drwxr-xr-x 2 root 0 60 Jul 4 22:06 raw
  1004. lrwxrwxrwx 1 root 0 19 Jul 4 22:06 root -> /dev/mapper/live-rw
  1005. lrwxrwxrwx 1 root 0 4 Jul 4 22:06 rtc -> rtc0
  1006. crw------- 1 root 0 252, 0 Jul 4 22:06 rtc0
  1007. drwxrwxrwt 2 root 0 60 Jul 4 22:06 shm
  1008. crw------- 1 root 0 10, 231 Jul 4 22:06 snapshot
  1009. lrwxrwxrwx 1 root 0 15 Jul 4 22:06 stderr -> /proc/self/fd/2
  1010. lrwxrwxrwx 1 root 0 15 Jul 4 22:06 stdin -> /proc/self/fd/0
  1011. lrwxrwxrwx 1 root 0 15 Jul 4 22:06 stdout -> /proc/self/fd/1
  1012. crw-rw-rw- 1 root tty 5, 0 Jul 4 22:06 tty
  1013. crw--w---- 1 root tty 4, 0 Jul 4 22:06 tty0
  1014. crw--w---- 1 root tty 4, 1 Jul 4 22:06 tty1
  1015. crw--w---- 1 root tty 4, 10 Jul 4 22:06 tty10
  1016. crw--w---- 1 root tty 4, 11 Jul 4 22:06 tty11
  1017. crw--w---- 1 root tty 4, 12 Jul 4 22:06 tty12
  1018. crw--w---- 1 root tty 4, 13 Jul 4 22:06 tty13
  1019. crw--w---- 1 root tty 4, 14 Jul 4 22:06 tty14
  1020. crw--w---- 1 root tty 4, 15 Jul 4 22:06 tty15
  1021. crw--w---- 1 root tty 4, 16 Jul 4 22:06 tty16
  1022. crw--w---- 1 root tty 4, 17 Jul 4 22:06 tty17
  1023. crw--w---- 1 root tty 4, 18 Jul 4 22:06 tty18
  1024. crw--w---- 1 root tty 4, 19 Jul 4 22:06 tty19
  1025. crw--w---- 1 root tty 4, 2 Jul 4 22:06 tty2
  1026. crw--w---- 1 root tty 4, 20 Jul 4 22:06 tty20
  1027. crw--w---- 1 root tty 4, 21 Jul 4 22:06 tty21
  1028. crw--w---- 1 root tty 4, 22 Jul 4 22:06 tty22
  1029. crw--w---- 1 root tty 4, 23 Jul 4 22:06 tty23
  1030. crw--w---- 1 root tty 4, 24 Jul 4 22:06 tty24
  1031. crw--w---- 1 root tty 4, 25 Jul 4 22:06 tty25
  1032. crw--w---- 1 root tty 4, 26 Jul 4 22:06 tty26
  1033. crw--w---- 1 root tty 4, 27 Jul 4 22:06 tty27
  1034. crw--w---- 1 root tty 4, 28 Jul 4 22:06 tty28
  1035. crw--w---- 1 root tty 4, 29 Jul 4 22:06 tty29
  1036. crw--w---- 1 root tty 4, 3 Jul 4 22:06 tty3
  1037. crw--w---- 1 root tty 4, 30 Jul 4 22:06 tty30
  1038. crw--w---- 1 root tty 4, 31 Jul 4 22:06 tty31
  1039. crw--w---- 1 root tty 4, 32 Jul 4 22:06 tty32
  1040. crw--w---- 1 root tty 4, 33 Jul 4 22:06 tty33
  1041. crw--w---- 1 root tty 4, 34 Jul 4 22:06 tty34
  1042. crw--w---- 1 root tty 4, 35 Jul 4 22:06 tty35
  1043. crw--w---- 1 root tty 4, 36 Jul 4 22:06 tty36
  1044. crw--w---- 1 root tty 4, 37 Jul 4 22:06 tty37
  1045. crw--w---- 1 root tty 4, 38 Jul 4 22:06 tty38
  1046. crw--w---- 1 root tty 4, 39 Jul 4 22:06 tty39
  1047. crw--w---- 1 root tty 4, 4 Jul 4 22:06 tty4
  1048. crw--w---- 1 root tty 4, 40 Jul 4 22:06 tty40
  1049. crw--w---- 1 root tty 4, 41 Jul 4 22:06 tty41
  1050. crw--w---- 1 root tty 4, 42 Jul 4 22:06 tty42
  1051. crw--w---- 1 root tty 4, 43 Jul 4 22:06 tty43
  1052. crw--w---- 1 root tty 4, 44 Jul 4 22:06 tty44
  1053. crw--w---- 1 root tty 4, 45 Jul 4 22:06 tty45
  1054. crw--w---- 1 root tty 4, 46 Jul 4 22:06 tty46
  1055. crw--w---- 1 root tty 4, 47 Jul 4 22:06 tty47
  1056. crw--w---- 1 root tty 4, 48 Jul 4 22:06 tty48
  1057. crw--w---- 1 root tty 4, 49 Jul 4 22:06 tty49
  1058. crw--w---- 1 root tty 4, 5 Jul 4 22:06 tty5
  1059. crw--w---- 1 root tty 4, 50 Jul 4 22:06 tty50
  1060. crw--w---- 1 root tty 4, 51 Jul 4 22:06 tty51
  1061. crw--w---- 1 root tty 4, 52 Jul 4 22:06 tty52
  1062. crw--w---- 1 root tty 4, 53 Jul 4 22:06 tty53
  1063. crw--w---- 1 root tty 4, 54 Jul 4 22:06 tty54
  1064. crw--w---- 1 root tty 4, 55 Jul 4 22:06 tty55
  1065. crw--w---- 1 root tty 4, 56 Jul 4 22:06 tty56
  1066. crw--w---- 1 root tty 4, 57 Jul 4 22:06 tty57
  1067. crw--w---- 1 root tty 4, 58 Jul 4 22:06 tty58
  1068. crw--w---- 1 root tty 4, 59 Jul 4 22:06 tty59
  1069. crw--w---- 1 root tty 4, 6 Jul 4 22:06 tty6
  1070. crw--w---- 1 root tty 4, 60 Jul 4 22:06 tty60
  1071. crw--w---- 1 root tty 4, 61 Jul 4 22:06 tty61
  1072. crw--w---- 1 root tty 4, 62 Jul 4 22:06 tty62
  1073. crw--w---- 1 root tty 4, 63 Jul 4 22:06 tty63
  1074. crw--w---- 1 root tty 4, 7 Jul 4 22:06 tty7
  1075. crw--w---- 1 root tty 4, 8 Jul 4 22:06 tty8
  1076. crw--w---- 1 root tty 4, 9 Jul 4 22:06 tty9
  1077. crw-rw---- 1 root dialout 4, 64 Jul 4 22:06 ttyS0
  1078. crw-rw---- 1 root dialout 4, 65 Jul 4 22:06 ttyS1
  1079. crw-rw---- 1 root dialout 4, 66 Jul 4 22:06 ttyS2
  1080. crw-rw---- 1 root dialout 4, 67 Jul 4 22:06 ttyS3
  1081. crw------- 1 root 0 10, 239 Jul 4 22:06 uhid
  1082. crw-rw-rw- 1 root 0 1, 9 Jul 4 22:06 urandom
  1083. crw------- 1 root 0 247, 0 Jul 4 22:06 usbmon0
  1084. crw------- 1 root 0 247, 1 Jul 4 22:06 usbmon1
  1085. crw------- 1 root 0 247, 2 Jul 4 22:06 usbmon2
  1086. crw------- 1 root 0 247, 3 Jul 4 22:06 usbmon3
  1087. crw------- 1 root 0 247, 4 Jul 4 22:06 usbmon4
  1088. crw-rw---- 1 root tty 7, 0 Jul 4 22:06 vcs
  1089. crw-rw---- 1 root tty 7, 1 Jul 4 22:06 vcs1
  1090. crw-rw---- 1 root tty 7, 128 Jul 4 22:06 vcsa
  1091. crw-rw---- 1 root tty 7, 129 Jul 4 22:06 vcsa1
  1092. brw-rw---- 1 root disk 252, 0 Jul 4 22:06 vda
  1093. crw------- 1 root 0 10, 63 Jul 4 22:06 vga_arbiter
  1094. crw-rw-rw- 1 root 0 1, 5 Jul 4 22:06 zero
  1095. :/#
  1096. :/# free
  1097. sh: free: command not found
  1098. :/# mount
  1099. rootfs on / type rootfs (rw,size=480172k,nr_inodes=120043)
  1100. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  1101. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  1102. devtmpfs on /dev type devtmpfs (rw,nosuid,size=480184k,nr_inodes=120046,mode=755)
  1103. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  1104. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
  1105. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
  1106. tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
  1107. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  1108. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)
  1109. pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
  1110. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
  1111. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpuacct,cpu)
  1112. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
  1113. cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
  1114. cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_prio,net_cls)
  1115. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
  1116. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
  1117. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
  1118. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
  1119. cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
  1120. rpc_pipefs on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw,relatime)
  1121. configfs on /sys/kernel/config type configfs (rw,relatime)
  1122. :/#
  1123. :/# ip a
  1124. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
  1125. link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  1126. inet 127.0.0.1/8 scope host lo
  1127. valid_lft forever preferred_lft forever
  1128. inet6 ::1/128 scope host
  1129. valid_lft forever preferred_lft forever
  1130. 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
  1131. link/ether 52:54:00:15:b8:9f brd ff:ff:ff:ff:ff:ff
  1132. inet 192.168.122.168/24 brd 192.168.122.255 scope global dynamic eth0
  1133. valid_lft 2959sec preferred_lft 2959sec
  1134. inet6 fe80::5054:ff:fe15:b89f/64 scope link
  1135. valid_lft forever preferred_lft forever
  1136. :/#
  1137. :/#
  1138. :/# less /run/initramfs/rdsosreport.txt
  1139. + cat /lib/dracut/dracut-033-535.el7
  1140. dracut-033-535.el7
  1141. + cat /proc/cmdline
  1142. ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst
  1143. + '[' -f /etc/cmdline ']'
  1144. + for _i in '/etc/cmdline.d/*.conf'
  1145. + '[' -f /etc/cmdline.d/75-anaconda-options.conf ']'
  1146. + echo /etc/cmdline.d/75-anaconda-options.conf
  1147. /etc/cmdline.d/75-anaconda-options.conf
  1148. + cat /etc/cmdline.d/75-anaconda-options.conf
  1149. repo=http://192.168.122.1/inst
  1150. + for _i in '/etc/cmdline.d/*.conf'
  1151. + '[' -f /etc/cmdline.d/80-kickstart.conf ']'
  1152. + echo /etc/cmdline.d/80-kickstart.conf
  1153. /etc/cmdline.d/80-kickstart.conf
  1154. + cat /etc/cmdline.d/80-kickstart.conf
  1155. + for _i in '/etc/cmdline.d/*.conf'
  1156. + '[' -f /etc/cmdline.d/99-anaconda-disable-disk-activation.conf ']'
  1157. + echo /etc/cmdline.d/99-anaconda-disable-disk-activation.conf
  1158. /etc/cmdline.d/99-anaconda-disable-disk-activation.conf
  1159. + cat /etc/cmdline.d/99-anaconda-disable-disk-activation.conf
  1160. rd.dm=0
  1161. rd.md=0
  1162. rd.lvm=0
  1163. rd.luks=0
  1164. + cat /proc/self/mountinfo
  1165. 1 1 0:2 / / rw shared:1 - rootfs rootfs rw,size=480172k,nr_inodes=120043
  1166. 17 1 0:17 / /sys rw,nosuid,nodev,noexec,relatime shared:2 - sysfs sysfs rw
  1167. 18 1 0:4 / /proc rw,nosuid,nodev,noexec,relatime shared:7 - proc proc rw
  1168. 19 1 0:5 / /dev rw,nosuid shared:8 - devtmpfs devtmpfs rw,size=480184k,nr_inodes=120046,mode=755
  1169. 20 17 0:16 / /sys/kernel/security rw,nosuid,nodev,noexec,relatime shared:3 - securityfs securityfs rw
  1170. 21 19 0:18 / /dev/shm rw,nosuid,nodev shared:9 - tmpfs tmpfs rw
  1171. 22 19 0:12 / /dev/pts rw,nosuid,noexec,relatime shared:10 - devpts devpts rw,gid=5,mode=620,ptmxmode=000
  1172. 23 1 0:19 / /run rw,nosuid,nodev shared:11 - tmpfs tmpfs rw,mode=755
  1173. 24 17 0:20 / /sys/fs/cgroup ro,nosuid,nodev,noexec shared:4 - tmpfs tmpfs ro,mode=755
  1174. 25 24 0:21 / /sys/fs/cgroup/systemd rw,nosuid,nodev,noexec,relatime shared:5 - cgroup cgroup rw,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd
  1175. 26 17 0:22 / /sys/fs/pstore rw,nosuid,nodev,noexec,relatime shared:6 - pstore pstore rw
  1176. group cgroup rw,cpuset
  1177. 28 24 0:24 / /sys/fs/cgroup/cpu,cpuacct rw,nosuid,nodev,noexec,relatime shared:13 - cgroup cgroup rw,cpuacct,cpu
  1178. 29 24 0:25 / /sys/fs/cgroup/memory rw,nosuid,nodev,noexec,relatime shared:14 - cgroup cgroup rw,memory
  1179. 30 24 0:26 / /sys/fs/cgroup/perf_event rw,nosuid,nodev,noexec,relatime shared:15 - cgroup cgroup rw,perf_event
  1180. 31 24 0:27 / /sys/fs/cgroup/net_cls,net_prio rw,nosuid,nodev,noexec,relatime shared:16 - cgroup cgroup rw,net_prio,net_cls
  1181. 32 24 0:28 / /sys/fs/cgroup/blkio rw,nosuid,nodev,noexec,relatime shared:17 - cgroup cgroup rw,blkio
  1182. 33 24 0:29 / /sys/fs/cgroup/devices rw,nosuid,nodev,noexec,relatime shared:18 - cgroup cgroup rw,devices
  1183. 34 24 0:30 / /sys/fs/cgroup/freezer rw,nosuid,nodev,noexec,relatime shared:19 - cgroup cgroup rw,freezer
  1184. 35 24 0:31 / /sys/fs/cgroup/pids rw,nosuid,nodev,noexec,relatime shared:20 - cgroup cgroup rw,pids
  1185. 36 24 0:32 / /sys/fs/cgroup/hugetlb rw,nosuid,nodev,noexec,relatime shared:21 - cgroup cgroup rw,hugetlb
  1186. 37 1 0:33 / /var/lib/nfs/rpc_pipefs rw,relatime shared:22 - rpc_pipefs rpc_pipefs rw
  1187. 60 17 0:34 / /sys/kernel/config rw,relatime shared:23 - configfs configfs rw
  1188. + cat /proc/mounts
  1189. rootfs / rootfs rw,size=480172k,nr_inodes=120043 0 0
  1190. sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
  1191. proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
  1192. devtmpfs /dev devtmpfs rw,nosuid,size=480184k,nr_inodes=120046,mode=755 0 0
  1193. securityfs /sys/kernel/security securityfs rw,nosuid,nodev,noexec,relatime 0 0
  1194. tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
  1195. devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
  1196. tmpfs /run tmpfs rw,nosuid,nodev,mode=755 0 0
  1197. tmpfs /sys/fs/cgroup tmpfs ro,nosuid,nodev,noexec,mode=755 0 0
  1198. cgroup /sys/fs/cgroup/systemd cgroup rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd 0 0
  1199. pstore /sys/fs/pstore pstore rw,nosuid,nodev,noexec,relatime 0 0
  1200. cgroup /sys/fs/cgroup/cpuset cgroup rw,nosuid,nodev,noexec,relatime,cpuset 0 0
  1201. cgroup /sys/fs/cgroup/cpu,cpuacct cgroup rw,nosuid,nodev,noexec,relatime,cpuacct,cpu 0 0
  1202. cgroup /sys/fs/cgroup/memory cgroup rw,nosuid,nodev,noexec,relatime,memory 0 0
  1203. cgroup /sys/fs/cgroup/perf_event cgroup rw,nosuid,nodev,noexec,relatime,perf_event 0 0
  1204. cgroup /sys/fs/cgroup/net_cls,net_prio cgroup rw,nosuid,nodev,noexec,relatime,net_prio,net_cls 0 0
  1205. cgroup /sys/fs/cgroup/blkio cgroup rw,nosuid,nodev,noexec,relatime,blkio 0 0
  1206. cgroup /sys/fs/cgroup/devices cgroup rw,nosuid,nodev,noexec,relatime,devices 0 0
  1207. cgroup /sys/fs/cgroup/freezer cgroup rw,nosuid,nodev,noexec,relatime,freezer 0 0
  1208. cgroup /sys/fs/cgroup/pids cgroup rw,nosuid,nodev,noexec,relatime,pids 0 0
  1209. cgroup /sys/fs/cgroup/hugetlb cgroup rw,nosuid,nodev,noexec,relatime,hugetlb 0 0
  1210. rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs rw,relatime 0 0
  1211. configfs /sys/kernel/config configfs rw,relatime 0 0
  1212. + blkid
  1213. /dev/loop0: TYPE="squashfs"
  1214. + blkid -o udev
  1215. ID_FS_TYPE=squashfs
  1216. + ls -l /dev/disk/by-path
  1217. total 0
  1218. lrwxrwxrwx 1 root 0 9 Jul 4 22:06 pci-0000:00:06.0 -> ../../vda
  1219. lrwxrwxrwx 1 root 0 9 Jul 4 22:06 virtio-pci-0000:00:06.0 -> ../../vda
  1220. + for _i in '/etc/conf.d/*.conf'
  1221. + '[' -f /etc/conf.d/systemd.conf ']'
  1222. + echo /etc/conf.d/systemd.conf
  1223. /etc/conf.d/systemd.conf
  1224. + cat /etc/conf.d/systemd.conf
  1225. systemdutildir="/usr/lib/systemd"
  1226. systemdsystemunitdir="/usr/lib/systemd/system"
  1227. systemdsystemconfdir="/etc/systemd/system"
  1228. + command -v lvm
  1229. + lvm pvdisplay
  1230. + lvm vgdisplay
  1231. + lvm lvdisplay
  1232. + command -v dmsetup
  1233. + dmsetup ls --tree
  1234. No devices found
  1235. + cat /proc/mdstat
  1236. Personalities : [raid0] [raid1] [raid6] [raid5] [raid4] [raid10] [linear]
  1237. unused devices: <none>
  1238. + command -v ip
  1239. + ip addr
  1240. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
  1241. link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  1242. inet 127.0.0.1/8 scope host lo
  1243. valid_lft forever preferred_lft forever
  1244. inet6 ::1/128 scope host
  1245. valid_lft forever preferred_lft forever
  1246. 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
  1247. link/ether 52:54:00:15:b8:9f brd ff:ff:ff:ff:ff:ff
  1248. inet 192.168.122.168/24 brd 192.168.122.255 scope global dynamic eth0
  1249. valid_lft 3596sec preferred_lft 3596sec
  1250. inet6 fe80::5054:ff:fe15:b89f/64 scope link
  1251. valid_lft forever preferred_lft forever
  1252. + command -v journalctl
  1253. + journalctl -ab --no-pager -o short-monotonic
  1254. -- Logs begin at Wed 2018-07-04 22:06:00 UTC, end at Wed 2018-07-04 22:06:10 UTC. --
  1255. [ 4.468852] localhost systemd-journal[85]: Runtime journal is using 6.1M (max allowed 49.5M, trying to leave 74.3M free of 489.5M available <E2><86><92> current limit 49.5M).
  1256. [ 0.000000] localhost kernel: Initializing cgroup subsys cpuset
  1257. [ 0.000000] localhost kernel: Initializing cgroup subsys cpu
  1258. [ 0.000000] localhost kernel: Initializing cgroup subsys cpuacct
  1259. [ 0.000000] localhost kernel: Linux version 3.10.0-862.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) ) #1 SMP Fri Apr 20 16:44:24 UTC 2018
  1260. [ 0.000000] localhost kernel: Command line: ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst
  1261. [ 0.000000] localhost kernel: e820: BIOS-provided physical RAM map:
  1262. [ 0.000000] localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
  1263. [ 0.000000] localhost kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
  1264. [ 0.000000] localhost kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
  1265. ff6fff] usable
  1266. [ 0.000000] localhost kernel: BIOS-e820: [mem 0x000000003fff7000-0x000000003fffffff] reserved
  1267. [ 0.000000] localhost kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
  1268. [ 0.000000] localhost kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
  1269. [ 0.000000] localhost kernel: NX (Execute Disable) protection: active
  1270. [ 0.000000] localhost kernel: SMBIOS 2.4 present.
  1271. [ 0.000000] localhost kernel: DMI: Red Hat KVM, BIOS 0.5.1 01/01/2011
  1272. [ 0.000000] localhost kernel: Hypervisor detected: KVM
  1273. [ 0.000000] localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
  1274. [ 0.000000] localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
  1275. [ 0.000000] localhost kernel: e820: last_pfn = 0x3fff7 max_arch_pfn = 0x400000000
  1276. [ 0.000000] localhost kernel: MTRR default type: write-back
  1277. [ 0.000000] localhost kernel: MTRR fixed ranges enabled:
  1278. [ 0.000000] localhost kernel: 00000-9FFFF write-back
  1279. [ 0.000000] localhost kernel: A0000-BFFFF uncachable
  1280. [ 0.000000] localhost kernel: C0000-FFFFF write-protect
  1281. [ 0.000000] localhost kernel: MTRR variable ranges enabled:
  1282. [ 0.000000] localhost kernel: 0 base 080000000 mask F80000000 uncachable
  1283. [ 0.000000] localhost kernel: 1 disabled
  1284. [ 0.000000] localhost kernel: 2 disabled
  1285. [ 0.000000] localhost kernel: 3 disabled
  1286. [ 0.000000] localhost kernel: 4 disabled
  1287. [ 0.000000] localhost kernel: 5 disabled
  1288. [ 0.000000] localhost kernel: 6 disabled
  1289. [ 0.000000] localhost kernel: 7 disabled
  1290. [ 0.000000] localhost kernel: PAT configuration [0-7]: WB WC UC- UC WB WP UC- UC
  1291. [ 0.000000] localhost kernel: found SMP MP-table at [mem 0x000f6370-0x000f637f] mapped at [ffffffffff200370]
  1292. [ 0.000000] localhost kernel: Base memory trampoline at [ffff8d05c0099000] 99000 size 24576
  1293. [ 0.000000] localhost kernel: BRK [0x25e2e000, 0x25e2efff] PGTABLE
  1294. [ 0.000000] localhost kernel: BRK [0x25e2f000, 0x25e2ffff] PGTABLE
  1295. [ 0.000000] localhost kernel: BRK [0x25e30000, 0x25e30fff] PGTABLE
  1296. [ 0.000000] localhost kernel: BRK [0x25e31000, 0x25e31fff] PGTABLE
  1297. [ 0.000000] localhost kernel: BRK [0x25e32000, 0x25e32fff] PGTABLE
  1298. [ 0.000000] localhost kernel: RAMDISK: [mem 0x3cd7e000-0x3ffeffff]
  1299. [ 0.000000] localhost kernel: Early table checksum verification disabled
  1300. [ 0.000000] localhost kernel: ACPI: RSDP 00000000000f61a0 00014 (v00 BOCHS )
  1301. [ 0.000000] localhost kernel: ACPI: RSDT 000000003ffffb40 00030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
  1302. [ 0.000000] localhost kernel: ACPI: FACP 000000003ffff177 00074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
  1303. [ 0.000000] localhost kernel: ACPI: DSDT 000000003fffe040 01137 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
  1304. [ 0.000000] localhost kernel: ACPI: FACS 000000003fffe000 00040
  1305. [ 0.000000] localhost kernel: ACPI: SSDT 000000003ffff1eb 008D5 (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)
  1306. [ 0.000000] localhost kernel: ACPI: APIC 000000003ffffac0 00080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
  1307. [ 0.000000] localhost kernel: ACPI: Local APIC address 0xfee00000
  1308. [ 0.000000] localhost kernel: No NUMA configuration found
  1309. [ 0.000000] localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000003fff6fff]
  1310. [ 0.000000] localhost kernel: NODE_DATA(0) allocated [mem 0x3cd57000-0x3cd7dfff]
  1311. [ 0.000000] localhost kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
  1312. [ 0.000000] localhost kernel: kvm-clock: cpu 0, msr 0:3cd07001, primary cpu clock
  1313. [ 0.000000] localhost kernel: kvm-clock: using sched offset of 2125326254 cycles
  1314. [ 0.000000] localhost kernel: Zone ranges:
  1315. [ 0.000000] localhost kernel: DMA [mem 0x00001000-0x00ffffff]
  1316. [ 0.000000] localhost kernel: DMA32 [mem 0x01000000-0xffffffff]
  1317. [ 0.000000] localhost kernel: Normal empty
  1318. [ 0.000000] localhost kernel: Movable zone start for each node
  1319. [ 0.000000] localhost kernel: Early memory node ranges
  1320. [ 0.000000] localhost kernel: node 0: [mem 0x00001000-0x0009efff]
  1321. [ 0.000000] localhost kernel: node 0: [mem 0x00100000-0x3fff6fff]
  1322. [ 0.000000] localhost kernel: Initmem setup node 0 [mem 0x00001000-0x3fff6fff]
  1323. [ 0.000000] localhost kernel: On node 0 totalpages: 262037
  1324. [ 0.000000] localhost kernel: DMA zone: 64 pages used for memmap
  1325. [ 0.000000] localhost kernel: DMA zone: 21 pages reserved
  1326. [ 0.000000] localhost kernel: DMA zone: 3998 pages, LIFO batch:0
  1327. [ 0.000000] localhost kernel: DMA32 zone: 4032 pages used for memmap
  1328. [ 0.000000] localhost kernel: DMA32 zone: 258039 pages, LIFO batch:31
  1329. [ 0.000000] localhost kernel: ACPI: PM-Timer IO Port: 0x608
  1330. [ 0.000000] localhost kernel: ACPI: Local APIC address 0xfee00000
  1331. [ 0.000000] localhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
  1332. [ 0.000000] localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
  1333. [ 0.000000] localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
  1334. [ 0.000000] localhost kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
  1335. [ 0.000000] localhost kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
  1336. [ 0.000000] localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
  1337. [ 0.000000] localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
  1338. [ 0.000000] localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
  1339. [ 0.000000] localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
  1340. [ 0.000000] localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
  1341. [ 0.000000] localhost kernel: ACPI: IRQ0 used by override.
  1342. [ 0.000000] localhost kernel: ACPI: IRQ5 used by override.
  1343. [ 0.000000] localhost kernel: ACPI: IRQ9 used by override.
  1344. [ 0.000000] localhost kernel: ACPI: IRQ10 used by override.
  1345. [ 0.000000] localhost kernel: ACPI: IRQ11 used by override.
  1346. [ 0.000000] localhost kernel: Using ACPI (MADT) for SMP configuration information
  1347. [ 0.000000] localhost kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
  1348. [ 0.000000] localhost kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
  1349. x000effff]
  1350. [ 0.000000] localhost kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
  1351. [ 0.000000] localhost kernel: e820: [mem 0x40000000-0xfeffbfff] available for PCI devices
  1352. [ 0.000000] localhost kernel: Booting paravirtualized kernel on KVM
  1353. [ 0.000000] localhost kernel: setup_percpu: NR_CPUS:5120 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
  1354. [ 0.000000] localhost kernel: PERCPU: Embedded 35 pages/cpu @ffff8d05fca00000 s104856 r8192 d30312 u1048576
  1355. [ 0.000000] localhost kernel: pcpu-alloc: s104856 r8192 d30312 u1048576 alloc=1*2097152
  1356. [ 0.000000] localhost kernel: pcpu-alloc: [0] 0 1
  1357. [ 0.000000] localhost kernel: KVM setup async PF for cpu 0
  1358. [ 0.000000] localhost kernel: kvm-stealtime: cpu 0, msr 3ca134c0
  1359. [ 0.000000] localhost kernel: PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
  1360. [ 0.000000] localhost kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 257920
  1361. [ 0.000000] localhost kernel: Policy zone: DMA32
  1362. [ 0.000000] localhost kernel: Kernel command line: ks=http://192.168.122.1/virt-install-ks.cfg console=tty0 console=ttyS0,115200n8 method=http://192.168.122.1/inst
  1363. [ 0.000000] localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
  1364. [ 0.000000] localhost kernel: Memory: 960348k/1048540k available (7324k kernel code, 392k absent, 87800k reserved, 6305k data, 1832k init)
  1365. [ 0.000000] localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
  1366. [ 0.000000] localhost kernel: x86/pti: Unmapping kernel while in userspace
  1367. [ 0.000000] localhost kernel: Hierarchical RCU implementation.
  1368. [ 0.000000] localhost kernel: RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=2.
  1369. [ 0.000000] localhost kernel: NR_IRQS:327936 nr_irqs:440 0
  1370. [ 0.000000] localhost kernel: Console: colour *CGA 80x25
  1371. [ 0.000000] localhost kernel: console [tty0] enabled
  1372. [ 0.000000] localhost kernel: console [ttyS0] enabled
  1373. [ 0.000000] localhost kernel: allocated 4194304 bytes of page_cgroup
  1374. [ 0.000000] localhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
  1375. [ 0.000000] localhost kernel: tsc: Detected 2594.106 MHz processor
  1376. [ 0.154427] localhost kernel: Calibrating delay loop (skipped) preset value.. 5188.21 BogoMIPS (lpj=2594106)
  1377. [ 0.156505] localhost kernel: pid_max: default: 32768 minimum: 301
  1378. [ 0.157356] localhost kernel: Security Framework initialized
  1379. [ 0.158519] localhost kernel: SELinux: Initializing.
  1380. [ 0.159242] localhost kernel: SELinux: Starting in permissive mode
  1381. [ 0.159245] localhost kernel: Yama: becoming mindful.
  1382. [ 0.160218] localhost kernel: Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
  1383. [ 0.162553] localhost kernel: Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
  1384. [ 0.164474] localhost kernel: Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
  1385. [ 0.165905] localhost kernel: Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
  1386. [ 0.167651] localhost kernel: Initializing cgroup subsys memory
  1387. [ 0.168621] localhost kernel: Initializing cgroup subsys devices
  1388. [ 0.169550] localhost kernel: Initializing cgroup subsys freezer
  1389. [ 0.170359] localhost kernel: Initializing cgroup subsys net_cls
  1390. [ 0.171191] localhost kernel: Initializing cgroup subsys blkio
  1391. [ 0.172092] localhost kernel: Initializing cgroup subsys perf_event
  1392. [ 0.173112] localhost kernel: Initializing cgroup subsys hugetlb
  1393. [ 0.174077] localhost kernel: Initializing cgroup subsys pids
  1394. [ 0.174979] localhost kernel: Initializing cgroup subsys net_prio
  1395. [ 0.176077] localhost kernel: mce: CPU supports 10 MCE banks
  1396. [ 0.177025] localhost kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
  1397. [ 0.178156] localhost kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0
  1398. [ 0.179304] localhost kernel: tlb_flushall_shift: 6
  1399. [ 0.180451] localhost kernel: FEATURE SPEC_CTRL Present
  1400. [ 0.181254] localhost kernel: FEATURE IBPB_SUPPORT Present
  1401. [ 0.182569] localhost kernel: Spectre V2 : Mitigation: Full retpoline
  1402. [ 0.183796] localhost kernel: Freeing SMP alternatives: 24k freed
  1403. [ 0.193042] localhost kernel: ACPI: Core revision 20130517
  1404. [ 0.194807] localhost kernel: ACPI: All ACPI Tables successfully acquired
  1405. [ 0.196113] localhost kernel: ftrace: allocating 28047 entries in 110 pages
  1406. [ 0.243805] localhost kernel: Enabling x2apic
  1407. [ 0.244503] localhost kernel: Enabled x2apic
  1408. [ 0.245398] localhost kernel: Switched APIC routing to physical x2apic.
  1409. [ 0.247798] localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
  1410. [ 0.249832] localhost kernel: smpboot: CPU0: Intel Core i7 9xx (Nehalem Core i7, IBRS update) (fam: 06, model: 1a, stepping: 03)
  1411. [ 0.357341] localhost kernel: Performance Events: unsupported p6 CPU model 26 no PMU driver, software events only.
  1412. [ 0.360565] localhost kernel: KVM setup paravirtual spinlock
  1413. [ 0.364157] localhost kernel: smpboot: Booting Node 0, Processors #1 OK
  1414. [ 0.366598] localhost kernel: kvm-clock: cpu 1, msr 0:3cd07041, secondary cpu clock
  1415. [ 0.388298] localhost kernel: Brought up 2 CPUs
  1416. [ 0.388299] localhost kernel: KVM setup async PF for cpu 1
  1417. [ 0.388305] localhost kernel: kvm-stealtime: cpu 1, msr 3cb134c0
  1418. [ 0.390442] localhost kernel: smpboot: Max logical packages: 2
  1419. [ 0.391196] localhost kernel: smpboot: Total of 2 processors activated (10376.42 BogoMIPS)
  1420. [ 0.393265] localhost kernel: devtmpfs: initialized
  1421. [ 0.395856] localhost kernel: EVM: security.selinux
  1422. [ 0.396540] localhost kernel: EVM: security.ima
  1423. [ 0.397075] localhost kernel: EVM: security.capability
  1424. [ 0.399128] localhost kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
  1425. [ 0.400421] localhost kernel: pinctrl core: initialized pinctrl subsystem
  1426. [ 0.401450] localhost kernel: RTC time: 22:05:56, date: 07/04/18
  1427. [ 0.402364] localhost kernel: NET: Registered protocol family 16
  1428. [ 0.403437] localhost kernel: ACPI: bus type PCI registered
  1429. [ 0.404149] localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
  1430. [ 0.405401] localhost kernel: PCI: Using configuration type 1 for base access
  1431. [ 0.410985] localhost kernel: ACPI: Added _OSI(Module Device)
  1432. [ 0.411799] localhost kernel: ACPI: Added _OSI(Processor Device)
  1433. [ 0.412615] localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
  1434. [ 0.413453] localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
  1435. [ 0.414939] localhost kernel: ACPI: EC: Look up EC in DSDT
  1436. [ 0.416383] localhost kernel: ACPI: Interpreter enabled
  1437. [ 0.417448] localhost kernel: ACPI: (supports S0 S5)
  1438. [ 0.418074] localhost kernel: ACPI: Using IOAPIC for interrupt routing
  1439. [ 0.419279] localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
  1440. [ 0.421659] localhost kernel: ACPI: Enabled 16 GPEs in block 00 to 0F
  1441. [ 0.425604] localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
  1442. [ 0.426713] localhost kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
  1443. [ 0.427891] localhost kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
  1444. [ 0.429068] localhost kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
  1445. [ 0.431299] localhost kernel: acpiphp: Slot [3] registered
  1446. [ 0.432026] localhost kernel: acpiphp: Slot [5] registered
  1447. [ 0.432778] localhost kernel: acpiphp: Slot [6] registered
  1448. [ 0.433545] localhost kernel: acpiphp: Slot [7] registered
  1449. [ 0.434267] localhost kernel: acpiphp: Slot [8] registered
  1450. [ 0.434986] localhost kernel: acpiphp: Slot [9] registered
  1451. [ 0.435703] localhost kernel: acpiphp: Slot [10] registered
  1452. [ 0.436479] localhost kernel: acpiphp: Slot [11] registered
  1453. [ 0.437431] localhost kernel: acpiphp: Slot [12] registered
  1454. [ 0.438921] localhost kernel: acpiphp: Slot [13] registered
  1455. [ 0.440030] localhost kernel: acpiphp: Slot [14] registered
  1456. [ 0.441155] localhost kernel: acpiphp: Slot [15] registered
  1457. [ 0.442247] localhost kernel: acpiphp: Slot [16] registered
  1458. [ 0.443312] localhost kernel: acpiphp: Slot [17] registered
  1459. [ 0.444056] localhost kernel: acpiphp: Slot [18] registered
  1460. [ 0.444815] localhost kernel: acpiphp: Slot [19] registered
  1461. [ 0.445552] localhost kernel: acpiphp: Slot [20] registered
  1462. [ 0.446278] localhost kernel: acpiphp: Slot [21] registered
  1463. [ 0.446998] localhost kernel: acpiphp: Slot [22] registered
  1464. [ 0.447733] localhost kernel: acpiphp: Slot [23] registered
  1465. [ 0.448488] localhost kernel: acpiphp: Slot [24] registered
  1466. [ 0.449319] localhost kernel: acpiphp: Slot [25] registered
  1467. [ 0.450095] localhost kernel: acpiphp: Slot [26] registered
  1468. [ 0.450849] localhost kernel: acpiphp: Slot [27] registered
  1469. [ 0.451643] localhost kernel: acpiphp: Slot [28] registered
  1470. [ 0.452504] localhost kernel: acpiphp: Slot [29] registered
  1471. [ 0.453397] localhost kernel: acpiphp: Slot [30] registered
  1472. [ 0.454128] localhost kernel: acpiphp: Slot [31] registered
  1473. [ 0.454873] localhost kernel: PCI host bridge to bus 0000:00
  1474. [ 0.455638] localhost kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
  1475. [ 0.456622] localhost kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
  1476. [ 0.457768] localhost kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
  1477. [ 0.458916] localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
  1478. [ 0.460178] localhost kernel: pci_bus 0000:00: root bus resource [mem 0x40000000-0xfebfffff window]
  1479. [ 0.461490] localhost kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
  1480. [ 0.461910] localhost kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
  1481. [ 0.462479] localhost kernel: pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
  1482. [ 0.471180] localhost kernel: pci 0000:00:01.1: reg 0x20: [io 0xc100-0xc10f]
  1483. [ 0.474693] localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
  1484. [ 0.475911] localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
  1485. [ 0.477023] localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
  1486. [ 0.478219] localhost kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
  1487. [ 0.479547] localhost kernel: pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
  1488. [ 0.479936] localhost kernel: pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
  1489. [ 0.481584] localhost kernel: pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
  1490. [ 0.483642] localhost kernel: pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000
  1491. [ 0.487220] localhost kernel: pci 0000:00:03.0: reg 0x10: [io 0xc040-0xc05f]
  1492. [ 0.490647] localhost kernel: pci 0000:00:03.0: reg 0x14: [mem 0xfebc0000-0xfebc0fff]
  1493. [ 0.507400] localhost kernel: pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
  1494. [ 0.507749] localhost kernel: pci 0000:00:04.0: [8086:2934] type 00 class 0x0c0300
  1495. [ 0.516566] localhost kernel: pci 0000:00:04.0: reg 0x20: [io 0xc060-0xc07f]
  1496. [ 0.520201] localhost kernel: pci 0000:00:04.1: [8086:2935] type 00 class 0x0c0300
  1497. [ 0.528749] localhost kernel: pci 0000:00:04.1: reg 0x20: [io 0xc080-0xc09f]
  1498. [ 0.532361] localhost kernel: pci 0000:00:04.2: [8086:2936] type 00 class 0x0c0300
  1499. [ 0.540808] localhost kernel: pci 0000:00:04.2: reg 0x20: [io 0xc0a0-0xc0bf]
  1500. [ 0.544425] localhost kernel: pci 0000:00:04.7: [8086:293a] type 00 class 0x0c0320
  1501. [ 0.546089] localhost kernel: pci 0000:00:04.7: reg 0x10: [mem 0xfebc1000-0xfebc1fff]
  1502. 78000
  1503. [ 0.559499] localhost kernel: pci 0000:00:05.0: reg 0x10: [io 0xc0c0-0xc0df]
  1504. [ 0.562730] localhost kernel: pci 0000:00:05.0: reg 0x14: [mem 0xfebc2000-0xfebc2fff]
  1505. [ 0.579318] localhost kernel: pci 0000:00:06.0: [1af4:1001] type 00 class 0x010000
  1506. [ 0.582587] localhost kernel: pci 0000:00:06.0: reg 0x10: [io 0xc000-0xc03f]
  1507. [ 0.585834] localhost kernel: pci 0000:00:06.0: reg 0x14: [mem 0xfebc3000-0xfebc3fff]
  1508. [ 0.602376] localhost kernel: pci 0000:00:07.0: [1af4:1002] type 00 class 0x00ff00
  1509. [ 0.604064] localhost kernel: pci 0000:00:07.0: reg 0x10: [io 0xc0e0-0xc0ff]
  1510. [ 0.614743] localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
  1511. [ 0.616538] localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
  1512. [ 0.617838] localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
  1513. [ 0.619147] localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
  1514. [ 0.620442] localhost kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
  1515. [ 0.621802] localhost kernel: vgaarb: loaded
  1516. [ 0.622431] localhost kernel: SCSI subsystem initialized
  1517. [ 0.623122] localhost kernel: ACPI: bus type USB registered
  1518. [ 0.623867] localhost kernel: usbcore: registered new interface driver usbfs
  1519. [ 0.624824] localhost kernel: usbcore: registered new interface driver hub
  1520. [ 0.625768] localhost kernel: usbcore: registered new device driver usb
  1521. [ 0.626854] localhost kernel: EDAC MC: Ver: 3.0.0
  1522. [ 0.627895] localhost kernel: PCI: Using ACPI for IRQ routing
  1523. [ 0.628674] localhost kernel: PCI: pci_cache_line_size set to 64 bytes
  1524. [ 0.628883] localhost kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
  1525. [ 0.628886] localhost kernel: e820: reserve RAM buffer [mem 0x3fff7000-0x3fffffff]
  1526. [ 0.629089] localhost kernel: NetLabel: Initializing
  1527. [ 0.629711] localhost kernel: NetLabel: domain hash size = 128
  1528. [ 0.630484] localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
  1529. [ 0.631363] localhost kernel: NetLabel: unlabeled traffic allowed by default
  1530. [ 0.632480] localhost kernel: amd_nb: Cannot enumerate AMD northbridges
  1531. [ 0.633381] localhost kernel: Switched to clocksource kvm-clock
  1532. [ 0.643741] localhost kernel: pnp: PnP ACPI init
  1533. [ 0.644538] localhost kernel: ACPI: bus type PNP registered
  1534. [ 0.645569] localhost kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
  1535. [ 0.645650] localhost kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
  1536. [ 0.645698] localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
  1537. [ 0.645740] localhost kernel: pnp 00:03: [dma 2]
  1538. 00 (active)
  1539. [ 0.645869] localhost kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
  1540. [ 0.646074] localhost kernel: pnp: PnP ACPI: found 5 devices
  1541. [ 0.647114] localhost kernel: ACPI: bus type PNP unregistered
  1542. [ 0.657477] localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
  1543. [ 0.657482] localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
  1544. [ 0.657484] localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
  1545. [ 0.657486] localhost kernel: pci_bus 0000:00: resource 7 [mem 0x40000000-0xfebfffff window]
  1546. [ 0.657545] localhost kernel: NET: Registered protocol family 2
  1547. [ 0.658814] localhost kernel: TCP established hash table entries: 8192 (order: 4, 65536 bytes)
  1548. [ 0.660443] localhost kernel: TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
  1549. [ 0.661925] localhost kernel: TCP: Hash tables configured (established 8192 bind 8192)
  1550. [ 0.663365] localhost kernel: TCP: reno registered
  1551. [ 0.664084] localhost kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
  1552. [ 0.665340] localhost kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
  1553. [ 0.666805] localhost kernel: NET: Registered protocol family 1
  1554. [ 0.667454] localhost kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
  1555. [ 0.668240] localhost kernel: pci 0000:00:01.0: PIIX3: Enabling Passive Release
  1556. [ 0.669047] localhost kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
  1557. [ 0.670213] localhost kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
  1558. [ 0.672239] localhost kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
  1559. [ 0.674545] localhost kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10
  1560. [ 0.677592] localhost kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
  1561. [ 0.679338] localhost kernel: PCI: CLS 0 bytes, default 64
  1562. [ 0.679453] localhost kernel: Unpacking initramfs...
  1563. [ 4.403189] localhost kernel: Freeing initrd memory: 51656k freed
  1564. [ 4.410444] localhost kernel: sha1_ssse3: Using SSSE3 optimized SHA-1 implementation
  1565. lementation
  1566. [ 4.413145] localhost kernel: futex hash table entries: 512 (order: 3, 32768 bytes)
  1567. [ 4.414248] localhost kernel: Initialise system trusted keyring
  1568. [ 4.415053] localhost kernel: audit: initializing netlink socket (disabled)
  1569. [ 4.416067] localhost kernel: type=2000 audit(1530741960.263:1): initialized
  1570. [ 4.438330] localhost kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
  1571. [ 4.441197] localhost kernel: zpool: loaded
  1572. [ 4.441706] localhost kernel: zbud: loaded
  1573. [ 4.442480] localhost kernel: VFS: Disk quotas dquot_6.5.2
  1574. [ 4.443194] localhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
  1575. [ 4.444521] localhost kernel: msgmni has been set to 1976
  1576. [ 4.445244] localhost kernel: Key type big_key registered
  1577. [ 4.445928] localhost kernel: SELinux: Registering netfilter hooks
  1578. [ 4.447042] localhost kernel: NET: Registered protocol family 38
  1579. [ 4.447887] localhost kernel: Key type asymmetric registered
  1580. [ 4.448638] localhost kernel: Asymmetric key parser 'x509' registered
  1581. [ 4.449665] localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
  1582. [ 4.450979] localhost kernel: io scheduler noop registered
  1583. [ 4.451683] localhost kernel: io scheduler deadline registered (default)
  1584. [ 4.452628] localhost kernel: io scheduler cfq registered
  1585. [ 4.453297] localhost kernel: io scheduler mq-deadline registered
  1586. [ 4.454084] localhost kernel: io scheduler kyber registered
  1587. [ 4.454907] localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
  1588. [ 4.455869] localhost kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
  1589. [ 4.457087] localhost kernel: intel_idle: does not run on family 6 model 26
  1590. [ 4.457159] localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
  1591. [ 4.458415] localhost kernel: ACPI: Power Button [PWRF]
  1592. [ 4.459250] localhost kernel: GHES: HEST is not enabled!
  1593. [ 4.460069] localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
  1594. [ 4.483419] localhost kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
  1595. [ 4.484987] localhost kernel: Non-volatile memory driver v1.3
  1596. [ 4.485779] localhost kernel: Linux agpgart interface v0.103
  1597. [ 4.486654] localhost kernel: crash memory driver: version 1.1
  1598. [ 4.487485] localhost kernel: rdac: device handler registered
  1599. [ 4.488266] localhost kernel: hp_sw: device handler registered
  1600. [ 4.489085] localhost kernel: emc: device handler registered
  1601. [ 4.489857] localhost kernel: alua: device handler registered
  1602. [ 4.490671] localhost kernel: libphy: Fixed MDIO Bus: probed
  1603. HCI) Driver
  1604. [ 4.492538] localhost kernel: ehci-pci: EHCI PCI platform driver
  1605. [ 4.494073] localhost kernel: ehci-pci 0000:00:04.7: EHCI Host Controller
  1606. [ 4.495086] localhost kernel: ehci-pci 0000:00:04.7: new USB bus registered, assigned bus number 1
  1607. [ 4.496579] localhost kernel: ehci-pci 0000:00:04.7: irq 11, io mem 0xfebc1000
  1608. [ 4.503543] localhost kernel: ehci-pci 0000:00:04.7: USB 2.0 started, EHCI 1.00
  1609. [ 4.504684] localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
  1610. [ 4.505961] localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  1611. [ 4.507140] localhost kernel: usb usb1: Product: EHCI Host Controller
  1612. [ 4.507963] localhost kernel: usb usb1: Manufacturer: Linux 3.10.0-862.el7.x86_64 ehci_hcd
  1613. [ 4.509065] localhost kernel: usb usb1: SerialNumber: 0000:00:04.7
  1614. [ 4.510019] localhost kernel: hub 1-0:1.0: USB hub found
  1615. [ 4.510700] localhost kernel: hub 1-0:1.0: 6 ports detected
  1616. [ 4.511680] localhost kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
  1617. [ 4.512740] localhost kernel: ohci-pci: OHCI PCI platform driver
  1618. ce driver
  1619. [ 4.515631] localhost kernel: uhci_hcd 0000:00:04.0: UHCI Host Controller
  1620. [ 4.516964] localhost kernel: uhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
  1621. [ 4.518896] localhost kernel: uhci_hcd 0000:00:04.0: detected 2 ports
  1622. [ 4.520277] localhost kernel: uhci_hcd 0000:00:04.0: irq 11, io base 0x0000c060
  1623. [ 4.521835] localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
  1624. [ 4.523584] localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  1625. [ 4.525424] localhost kernel: usb usb2: Product: UHCI Host Controller
  1626. [ 4.526369] localhost kernel: usb usb2: Manufacturer: Linux 3.10.0-862.el7.x86_64 uhci_hcd
  1627. [ 4.528111] localhost kernel: usb usb2: SerialNumber: 0000:00:04.0
  1628. [ 4.529378] localhost kernel: hub 2-0:1.0: USB hub found
  1629. [ 4.530267] localhost kernel: hub 2-0:1.0: 2 ports detected
  1630. [ 4.532529] localhost kernel: uhci_hcd 0000:00:04.1: UHCI Host Controller
  1631. [ 4.533600] localhost kernel: uhci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 3
  1632. [ 4.535681] localhost kernel: uhci_hcd 0000:00:04.1: detected 2 ports
  1633. [ 4.536651] localhost kernel: uhci_hcd 0000:00:04.1: irq 10, io base 0x0000c080
  1634. [ 4.537733] localhost kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
  1635. [ 4.538895] localhost kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  1636. [ 4.540182] localhost kernel: usb usb3: Product: UHCI Host Controller
  1637. [ 4.541087] localhost kernel: usb usb3: Manufacturer: Linux 3.10.0-862.el7.x86_64 uhci_hcd
  1638. [ 4.542258] localhost kernel: usb usb3: SerialNumber: 0000:00:04.1
  1639. [ 4.543255] localhost kernel: hub 3-0:1.0: USB hub found
  1640. [ 4.544031] localhost kernel: hub 3-0:1.0: 2 ports detected
  1641. [ 4.546072] localhost kernel: uhci_hcd 0000:00:04.2: UHCI Host Controller
  1642. [ 4.547073] localhost kernel: uhci_hcd 0000:00:04.2: new USB bus registered, assigned bus number 4
  1643. [ 4.548359] localhost kernel: uhci_hcd 0000:00:04.2: detected 2 ports
  1644. [ 4.549320] localhost kernel: uhci_hcd 0000:00:04.2: irq 10, io base 0x0000c0a0
  1645. [ 4.550436] localhost kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
  1646. [ 4.551618] localhost kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  1647. [ 4.552854] localhost kernel: usb usb4: Product: UHCI Host Controller
  1648. [ 4.553728] localhost kernel: usb usb4: Manufacturer: Linux 3.10.0-862.el7.x86_64 uhci_hcd
  1649. [ 4.554893] localhost kernel: usb usb4: SerialNumber: 0000:00:04.2
  1650. [ 4.555850] localhost kernel: hub 4-0:1.0: USB hub found
  1651. [ 4.556583] localhost kernel: hub 4-0:1.0: 2 ports detected
  1652. [ 4.557567] localhost kernel: usbcore: registered new interface driver usbserial
  1653. [ 4.558640] localhost kernel: usbcore: registered new interface driver usbserial_generic
  1654. [ 4.559846] localhost kernel: usbserial: USB Serial support registered for generic
  1655. [ 4.561013] localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
  1656. [ 4.563327] localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
  1657. [ 4.564402] localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
  1658. [ 4.565841] localhost kernel: mousedev: PS/2 mouse device common for all mice
  1659. [ 4.567735] localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
  1660. [ 4.569147] localhost kernel: rtc_cmos 00:00: RTC can wake from S4
  1661. [ 4.570059] localhost kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input2
  1662. [ 4.570719] localhost kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
  1663. [ 4.575389] localhost kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
  1664. :/#
  1665. :/#
  1666. :/#
  1667. :/# w
  1668. sh: w: command not found
  1669. :/# who
  1670. sh: who: command not found
  1671.  
  1672.  
  1673.  
  1674. >> So as can be seen by the above output, I enter a shell with limited commands available, and also the IP that the VM
  1675. >> has got isn't the static IP 192.168.122.104 that I request in the ks.cfg, but it is a random (DHCP given I suppose)
  1676. >> 192.168.122.168. Why the virt-install command has this problems? Is it really impossible to have a kickstart file on
  1677. >> some http server on the local network, and installation media on the same http server ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement