We need to install VirtualBox and Vagrant in Windows and download the DVD ISO image of CentOS 8 to be able to build CentOS 8 vagrant box. It is recomended to use Chocolatey (a software management automation for Windows) to install these software. To install Chocolatey, follow the procedure here.
Steps:
-
Install VirtualBox by executing the following command from the command line or from PowerShell:
PS C:\> choco install virtualbox
-
Install Vagrant by executing the following command from the command line or from PowerShell:
PS C:\> choco install vagrant
-
Download the DVD ISO image of CentOS 8 here. Note: it is recomended to download using torrent if you have slow internet connection.
-
Open the VirtualBox then click "Machine" > "New" from the menu. In "Name" field, enter "CentOS 8". Under "Machine Folder" field, enter the location path of the CentOS 8 VirtualBox files will be stored. Select "Linux" under "Type" field. Choose "Red Hat (64-bit)" under "Version" field and click "Next" button:
-
Set the memory size to "2048 MB" and click "Next" button:
-
Select "Create a virtual hard disk now" and click "Create" button:
-
Select "VDI (VirtualBox Disk Image)" and click "Next" button:
-
Select "Dynamically allocated" and click "Next" button:
-
Allocate hard disk size to "100 GB" and click "Create" button:
-
Click the "CentOS 8" Virtual Machine that has been created from the list then click "Machine" > "Settings..." from the menu. In left side bar menu, select "System". Under "Boot Order" uncheck "Floppy" and move down the "Optical" under "Hard Disk":
-
Still in left side bar menu, select "Storage". Under "Controller: IDE", click "Empty" and on the right side of the "Optical Drive" field, click the CD icon. Select "Choose Virtual Optical Disk File…":
-
Click the "Add" tab and browse the DVD ISO image of CentOS 8. Click "Choose" button:
-
Click "OK" button:
-
In left side bar menu, select "Network". Make sure that the "Enable Network Adapter" is checked and "Attached to" field is set to "NAT":
-
Select "USB" in left side bar menu. Uncheck the "Enable USB Controller" and click "OK" button:
-
Lets boot it. Click the "CentOS 8" Virtual Machine from the list then click "Machine" > "Start" > "Normal Start" from the menu. Wait until you get to CentOS Linux 8 installation initial menu then use your arrow key to select "Install CentOS Linux 8" and hit "Enter" key:
-
Wait until it boot to GUI part of the installation. Select your preferred language and click "Continue" button:
-
Under "Software", click the "Software Selection":
-
Select the "Minimal Install" under "Base Environment" and click "Done" button in your upper left:
-
Click "Network & Host Name" under "System":
-
Turn "ON" the "Ethernet (enp0s3)" and click "Done" button in your upper left:
-
You may want to change your timezone in "Time & Date" under "Localization". After changing it, click "Begin Installation" button:
-
Click "Root Password":
-
Type "vagrant" in both fields and click "Done" twice:
-
Click "User Creation":
-
Type "vagrant" in all fields and click "Done" twice:
-
Wait until the installation completes and a "Reboot" button at the bottom right will appear and click it.
-
The Virtual Machine will restart and wait until the terminal login prompt shows:
-
Enter "root" and type "vagrant" under password:
-
Install tar (this is needed when installing the "VirtualBox Guest Additions" without error later). Execute:
yum install tar
-
Enter "y" to confirm the installation:
-
Just enter "y" to accept the "CentOS Official Signing Key":
When the tar installation is done, you should see output like this:
-
Lets update the system (also a requirement when installing the "VirtualBox Guest Additions" without error later). Execute:
yum update
-
Enter "y" to confirm the update:
When the update is done, you should see output like this:
-
Lets make the Virtual Machine image file size smallest possible in the next steps. Download the clean script and run it by executing the following:
curl https://www.webfoobar.com/sites/webfoobar.com/files/article_attachment/vagrantbox-clean.txt --output clean.sh chmod +x clean.sh ./clean.sh
After executing the commands above, you should see output like this:
The content of the clean script are as follows:
yum -y install yum-utils package-cleanup -y --oldkernels --count=1 yum -y autoremove yum -y remove yum-utils yum clean all rm -rf /tmp/* rm -f /var/log/wtmp /var/log/btmp dd if=/dev/zero of=/EMPTY bs=1M rm -f /EMPTY cat /dev/null > ~/.bash_history && history -c
-
To be able Vagrant work with the Virtual Machine image, the CentOS needs to be configured. Execute the following commands:
echo "vagrant ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers sed -i 's/^\(Defaults.*requiretty\)/#\1/' /etc/sudoers mkdir -m 0700 /home/vagrant/.ssh curl https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub >> /home/vagrant/.ssh/authorized_keys chmod 600 /home/vagrant/.ssh/authorized_keys chown -R vagrant:vagrant /home/vagrant sed -i -e 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config sed -i -e 's/#UseDNS yes/UseDNS no/' /etc/ssh/sshd_config echo "LANG=en_US.utf-8" >> /etc/environment echo "LC_ALL=en_US.utf-8" >> /etc/environment echo "blacklist i2c_piix4" >> /etc/modprobe.d/modprobe.conf echo "blacklist intel_rapl" >> /etc/modprobe.d/modprobe.conf sed -i -e 's/installonly_limit=5/installonly_limit=2/' /etc/yum.conf sed -i -e 's/GRUB_TIMEOUT=5/GRUB_TIMEOUT=0/' /etc/default/grub sed -i -e 's/GRUB_DEFAULT=saved/GRUB_DEFAULT=0/' /etc/default/grub grub2-mkconfig -o /boot/grub2/grub.cfg
After executing the commands above, you should see output like this:
-
Remove unnecessary component "chrony", execute:
systemctl stop chronyd && systemctl disable chronyd && yum -y remove chrony
After executing the command above, you should see output like this:
-
Run the following commands to clean up the CentOS and shutdown:
./clean.sh rm -f clean.sh history -c && shutdown -h now
After executing the command above, you should see output like this:
-
Now, lets make the Vagrant box image. First, get the ID of the "CentOS 8" Virtual Machine that has been created by executing the following command in your PowerShell terminal:
vboxmanage list vms
After executing the command above, you should see output like this:
"CentOS 8" {e603489c-b743-466d-b8cb-8bd803855edf}
-
After getting the ID, execute the following command to package the "CentOS 8" Virtual Machine image:
vagrant package --base e603489c-b743-466d-b8cb-8bd803855edf --output centos8.box
You should see output like this after executing the command above:
==> e603489c-b743-466d-b8cb-8bd803855edf: Exporting VM... ==> e603489c-b743-466d-b8cb-8bd803855edf: Compressing package to: C:/webfoobar/centos8.box
-
Install the "VirtualBox Guest Additions"
vagrant plugin install vagrant-vbguest
After executing the command above, you should see output like this:
==> box: Box file was not detected as metadata. Adding it directly... ==> box: Adding box 'webfoobar' (v0) for provider: box: Unpacking necessary files from: file://C:/webfoobar/centos8.box box: The box you're attempting to add already exists. Remove it before adding it again or add it with the `--force` flag. Name: webfoobar Provider: virtualbox Version: 0 PS C:\webfoobar> e: PS E:\vagrantbox\linodeclone> ls Directory: E:\vagrantbox\linodeclone Mode LastWriteTime Length Name ---- ------------- ------ ---- -a---- 6/14/2020 9:18 PM 670612548 centos8.box
-
Lets add the Vagrant box image that has been created by executing:
vagrant box add webfoobar centos8.box
After executing the command above, you should see output like this:
==> box: Box file was not detected as metadata. Adding it directly... ==> box: Adding box 'webfoobar' (v0) for provider: box: Unpacking necessary files from: file://C:/webfoobar/centos8.box box: ==> box: Successfully added box 'webfoobar' (v0) for 'virtualbox'!
-
Initialize it to create "Vagrantfile":
vagrant init webfoobar
After executing the command above, you should see output like this:
A `Vagrantfile` has been placed in this directory. You are now ready to `vagrant up` your first virtual environment! Please read the comments in the Vagrantfile as well as documentation on `vagrantup.com` for more information on using Vagrant.
-
Replace the content of the "Vagrantfile" with the following codes:
# -*- mode: ruby -*- # vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure # configures the configuration version (we support older styles for # backwards compatibility). Please don't change it unless you know what # you're doing. Vagrant.configure("2") do |config| # The most common configuration options are documented and commented below. # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. # Every Vagrant development environment requires a box. You can search for # boxes at https://vagrantcloud.com/search. config.vm.box = "webfoobar" config.vm.hostname = "webfoobarvagrant" config.ssh.username = "vagrant" config.ssh.password = "vagrant" config.ssh.insert_key = "false" config.vm.boot_timeout = 888 config.vm.network "forwarded_port", guest: 80, host: 2345 config.vm.network "private_network", ip: "192.168.33.10" # Disable automatic box update checking. If you disable this, then # boxes will only be checked for updates when the user runs # `vagrant box outdated`. This is not recommended. # config.vm.box_check_update = false # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, # accessing "localhost:8080" will access port 80 on the guest machine. # NOTE: This will enable public access to the opened port # config.vm.network "forwarded_port", guest: 80, host: 8080 # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine and only allow access # via 127.0.0.1 to disable public access # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" # Create a private network, which allows host-only access to the machine # using a specific IP. # config.vm.network "private_network", ip: "192.168.33.10" # Create a public network, which generally matched to bridged network. # Bridged networks make the machine appear as another physical device on # your network. # config.vm.network "public_network" # Share an additional folder to the guest VM. The first argument is # the path on the host to the actual folder. The second argument is # the path on the guest to mount the folder. And the optional third # argument is a set of non-required options. # config.vm.synced_folder "../data", "/vagrant_data" # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options. # Example for VirtualBox: # # config.vm.provider "virtualbox" do |vb| # # Display the VirtualBox GUI when booting the machine # vb.gui = true # # # Customize the amount of memory on the VM: # vb.memory = "1024" # end # # View the documentation for the provider you are using for more # information on available options. # Enable provisioning with a shell script. Additional provisioners such as # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the # documentation for more information about their specific syntax and use. # config.vm.provision "shell", inline:
-
Boot the CentOS 8 Vagrant box:
vagrant up
After executing the command above, you should see output like this:
Bringing machine 'default' up with 'virtualbox' provider... ==> default: Importing base box 'webfoobar'... ==> default: Matching MAC address for NAT networking... ==> default: Setting the name of the VM: webfoobar_default_1592655089494_73059 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat default: Adapter 2: hostonly ==> default: Forwarding ports... default: 80 (guest) => 2345 (host) (adapter 1) default: 22 (guest) => 2222 (host) (adapter 1) ==> default: Booting VM... ==> default: Waiting for machine to boot. This may take a few minutes... default: SSH address: 127.0.0.1:2222 default: SSH username: vagrant default: SSH auth method: password default: default: Inserting generated public key within guest... default: Removing insecure key from the guest if it's present... default: Key inserted! Disconnecting and reconnecting using new SSH key... ==> default: Machine booted and ready! [default] No Virtualbox Guest Additions installation found. Last metadata expiration check: 0:00:04 ago on Sat 20 Jun 2020 08:22:29 PM PST. Dependencies resolved. ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: binutils x86_64 2.30-73.el8 BaseOS 5.7 M bzip2 x86_64 1.0.6-26.el8 BaseOS 60 k elfutils-libelf-devel x86_64 0.178-7.el8 BaseOS 58 k gcc x86_64 8.3.1-5.el8.0.2 AppStream 23 M kernel-devel x86_64 4.18.0-193.6.3.el8_2 BaseOS 15 M make x86_64 1:4.2.1-10.el8 BaseOS 498 k perl x86_64 4:5.26.3-416.el8 AppStream 72 k Installing dependencies: annobin x86_64 8.90-1.el8.0.1 AppStream 201 k cpp x86_64 8.3.1-5.el8.0.2 AppStream 10 M dwz x86_64 0.12-9.el8 AppStream 109 k efi-srpm-macros noarch 3-2.el8 AppStream 22 k ghc-srpm-macros noarch 1.4.2-7.el8 AppStream 9.3 k glibc-devel x86_64 2.28-101.el8 BaseOS 1.0 M glibc-headers x86_64 2.28-101.el8 BaseOS 473 k go-srpm-macros noarch 2-16.el8 AppStream 14 k isl x86_64 0.16.1-6.el8 AppStream 841 k kernel-headers x86_64 4.18.0-193.6.3.el8_2 BaseOS 4.0 M libmpc x86_64 1.0.2-9.el8 AppStream 59 k libpkgconf x86_64 1.4.2-1.el8 BaseOS 35 k libxcrypt-devel x86_64 4.1.1-4.el8 BaseOS 25 k ocaml-srpm-macros noarch 5-4.el8 AppStream 9.4 k openblas-srpm-macros noarch 2-2.el8 AppStream 7.9 k perl-Algorithm-Diff noarch 1.1903-9.el8 AppStream 52 k perl-Archive-Tar noarch 2.30-1.el8 AppStream 79 k perl-Archive-Zip noarch 1.60-3.el8 AppStream 108 k perl-Attribute-Handlers noarch 0.99-416.el8 AppStream 88 k perl-B-Debug noarch 1.26-2.el8 AppStream 26 k perl-CPAN noarch 2.18-397.el8 AppStream 554 k perl-CPAN-Meta noarch 2.150010-396.el8 AppStream 191 k perl-CPAN-Meta-Requirements noarch 2.140-396.el8 AppStream 37 k perl-CPAN-Meta-YAML noarch 0.018-397.el8 AppStream 34 k perl-Carp noarch 1.42-396.el8 BaseOS 30 k perl-Compress-Bzip2 x86_64 2.26-6.el8 AppStream 72 k perl-Compress-Raw-Bzip2 x86_64 2.081-1.el8 AppStream 40 k perl-Compress-Raw-Zlib x86_64 2.081-1.el8 AppStream 68 k perl-Config-Perl-V noarch 0.30-1.el8 AppStream 22 k perl-DB_File x86_64 1.842-1.el8 AppStream 83 k perl-Data-Dumper x86_64 2.167-399.el8 BaseOS 58 k perl-Data-OptList noarch 0.110-6.el8 AppStream 31 k perl-Data-Section noarch 0.200007-3.el8 AppStream 30 k perl-Devel-PPPort x86_64 3.36-5.el8 AppStream 118 k perl-Devel-Peek x86_64 1.26-416.el8 AppStream 93 k perl-Devel-SelfStubber noarch 1.06-416.el8 AppStream 75 k perl-Devel-Size x86_64 0.81-2.el8 AppStream 34 k perl-Digest noarch 1.17-395.el8 AppStream 27 k perl-Digest-MD5 x86_64 2.55-396.el8 AppStream 37 k perl-Digest-SHA x86_64 1:6.02-1.el8 AppStream 66 k perl-Encode x86_64 4:2.97-3.el8 BaseOS 1.5 M perl-Encode-devel x86_64 4:2.97-3.el8 AppStream 39 k perl-Env noarch 1.04-395.el8 AppStream 21 k perl-Errno x86_64 1.28-416.el8 BaseOS 76 k perl-Exporter noarch 5.72-396.el8 BaseOS 34 k perl-ExtUtils-CBuilder noarch 1:0.280230-2.el8 AppStream 48 k perl-ExtUtils-Command noarch 1:7.34-1.el8 AppStream 19 k perl-ExtUtils-Embed noarch 1.34-416.el8 AppStream 79 k perl-ExtUtils-Install noarch 2.14-4.el8 AppStream 46 k perl-ExtUtils-MM-Utils noarch 1:7.34-1.el8 AppStream 17 k perl-ExtUtils-MakeMaker noarch 1:7.34-1.el8 AppStream 300 k perl-ExtUtils-Manifest noarch 1.70-395.el8 AppStream 37 k perl-ExtUtils-Miniperl noarch 1.06-416.el8 AppStream 76 k perl-ExtUtils-ParseXS noarch 1:3.35-2.el8 AppStream 83 k perl-File-Fetch noarch 0.56-2.el8 AppStream 33 k perl-File-HomeDir noarch 1.002-4.el8 AppStream 61 k perl-File-Path noarch 2.15-2.el8 BaseOS 38 k perl-File-Temp noarch 0.230.600-1.el8 BaseOS 63 k perl-File-Which noarch 1.22-2.el8 AppStream 23 k perl-Filter x86_64 2:1.58-2.el8 AppStream 82 k perl-Filter-Simple noarch 0.94-2.el8 AppStream 29 k perl-Getopt-Long noarch 1:2.50-4.el8 BaseOS 63 k perl-HTTP-Tiny noarch 0.074-1.el8 BaseOS 58 k perl-IO x86_64 1.38-416.el8 BaseOS 141 k perl-IO-Compress noarch 2.081-1.el8 AppStream 258 k perl-IO-Socket-IP noarch 0.39-5.el8 AppStream 47 k perl-IO-Zlib noarch 1:1.10-416.el8 AppStream 80 k perl-IPC-Cmd noarch 2:1.02-1.el8 AppStream 43 k perl-IPC-SysV x86_64 2.07-397.el8 AppStream 43 k perl-IPC-System-Simple noarch 1.25-17.el8 AppStream 43 k perl-JSON-PP noarch 1:2.97.001-3.el8 AppStream 68 k perl-Locale-Codes noarch 3.57-1.el8 AppStream 311 k perl-Locale-Maketext noarch 1.28-396.el8 AppStream 99 k perl-Locale-Maketext-Simple noarch 1:0.21-416.el8 AppStream 78 k perl-MIME-Base64 x86_64 3.15-396.el8 BaseOS 31 k perl-MRO-Compat noarch 0.13-4.el8 AppStream 24 k perl-Math-BigInt noarch 1:1.9998.11-7.el8 BaseOS 196 k perl-Math-BigInt-FastCalc x86_64 0.500.600-6.el8 AppStream 27 k perl-Math-BigRat noarch 0.2614-1.el8 AppStream 40 k perl-Math-Complex noarch 1.59-416.el8 BaseOS 108 k perl-Memoize noarch 1.03-416.el8 AppStream 118 k perl-Module-Build noarch 2:0.42.24-5.el8 AppStream 273 k perl-Module-CoreList noarch 1:5.20181130-1.el8 AppStream 87 k perl-Module-CoreList-tools noarch 1:5.20181130-1.el8 AppStream 22 k perl-Module-Load noarch 1:0.32-395.el8 AppStream 19 k perl-Module-Load-Conditional noarch 0.68-395.el8 AppStream 24 k perl-Module-Loaded noarch 1:0.08-416.el8 AppStream 74 k perl-Module-Metadata noarch 1.000033-395.el8 AppStream 44 k perl-Net-Ping noarch 2.55-416.el8 AppStream 101 k perl-Net-SSLeay x86_64 1.88-1.el8 AppStream 379 k perl-Package-Generator noarch 1.106-11.el8 AppStream 27 k perl-Params-Check noarch 1:0.38-395.el8 AppStream 24 k perl-Params-Util x86_64 1.07-22.el8 AppStream 44 k perl-PathTools x86_64 3.74-1.el8 BaseOS 90 k perl-Perl-OSType noarch 1.010-396.el8 AppStream 29 k perl-PerlIO-via-QuotedPrint noarch 0.08-395.el8 AppStream 13 k perl-Pod-Checker noarch 4:1.73-395.el8 AppStream 33 k perl-Pod-Escapes noarch 1:1.07-395.el8 BaseOS 20 k perl-Pod-Html noarch 1.22.02-416.el8 AppStream 87 k perl-Pod-Parser noarch 1.63-396.el8 AppStream 108 k perl-Pod-Perldoc noarch 3.28-396.el8 BaseOS 86 k perl-Pod-Simple noarch 1:3.35-395.el8 BaseOS 213 k perl-Pod-Usage noarch 4:1.69-395.el8 BaseOS 34 k perl-Scalar-List-Utils x86_64 3:1.49-2.el8 BaseOS 68 k perl-SelfLoader noarch 1.23-416.el8 AppStream 82 k perl-Socket x86_64 4:2.027-3.el8 BaseOS 59 k perl-Software-License noarch 0.103013-2.el8 AppStream 138 k perl-Storable x86_64 1:3.11-3.el8 BaseOS 98 k perl-Sub-Exporter noarch 0.987-15.el8 AppStream 73 k perl-Sub-Install noarch 0.928-14.el8 AppStream 27 k perl-Sys-Syslog x86_64 0.35-397.el8 AppStream 50 k perl-Term-ANSIColor noarch 4.06-396.el8 BaseOS 46 k perl-Term-Cap noarch 1.17-395.el8 BaseOS 23 k perl-Test noarch 1.30-416.el8 AppStream 89 k perl-Test-Harness noarch 1:3.42-1.el8 AppStream 279 k perl-Test-Simple noarch 1:1.302135-1.el8 AppStream 516 k perl-Text-Balanced noarch 2.03-395.el8 AppStream 58 k perl-Text-Diff noarch 1.45-2.el8 AppStream 45 k perl-Text-Glob noarch 0.11-4.el8 AppStream 17 k perl-Text-ParseWords noarch 3.30-395.el8 BaseOS 18 k perl-Text-Tabs+Wrap noarch 2013.0523-395.el8 BaseOS 24 k perl-Text-Template noarch 1.51-1.el8 AppStream 64 k perl-Thread-Queue noarch 3.13-1.el8 AppStream 24 k perl-Time-HiRes x86_64 1.9758-1.el8 AppStream 61 k perl-Time-Local noarch 1:1.280-1.el8 BaseOS 34 k perl-Time-Piece x86_64 1.31-416.el8 AppStream 98 k perl-URI noarch 1.73-3.el8 AppStream 116 k perl-Unicode-Collate x86_64 1.25-2.el8 AppStream 686 k perl-Unicode-Normalize x86_64 1.25-396.el8 BaseOS 82 k perl-autodie noarch 2.29-396.el8 AppStream 98 k perl-bignum noarch 0.49-2.el8 AppStream 44 k perl-constant noarch 1.33-396.el8 BaseOS 25 k perl-devel x86_64 4:5.26.3-416.el8 AppStream 599 k perl-encoding x86_64 4:2.22-3.el8 AppStream 68 k perl-experimental noarch 0.019-2.el8 AppStream 24 k perl-inc-latest noarch 2:0.500-9.el8 AppStream 25 k perl-interpreter x86_64 4:5.26.3-416.el8 BaseOS 6.3 M perl-libnet noarch 3.11-3.el8 AppStream 121 k perl-libnetcfg noarch 4:5.26.3-416.el8 AppStream 77 k perl-libs x86_64 4:5.26.3-416.el8 BaseOS 1.6 M perl-local-lib noarch 2.000024-2.el8 AppStream 74 k perl-macros x86_64 4:5.26.3-416.el8 BaseOS 72 k perl-open noarch 1.11-416.el8 AppStream 77 k perl-parent noarch 1:0.237-1.el8 BaseOS 20 k perl-perlfaq noarch 5.20180605-1.el8 AppStream 386 k perl-podlators noarch 4.11-1.el8 BaseOS 118 k perl-srpm-macros noarch 1-25.el8 AppStream 11 k perl-threads x86_64 1:2.21-2.el8 BaseOS 61 k perl-threads-shared x86_64 1.58-2.el8 BaseOS 48 k perl-utils noarch 5.26.3-416.el8 AppStream 128 k perl-version x86_64 6:0.99.24-1.el8 AppStream 67 k pkgconf x86_64 1.4.2-1.el8 BaseOS 38 k pkgconf-m4 noarch 1.4.2-1.el8 BaseOS 17 k pkgconf-pkg-config x86_64 1.4.2-1.el8 BaseOS 15 k python-srpm-macros noarch 3-38.el8 AppStream 14 k python3-pyparsing noarch 2.1.10-7.el8 BaseOS 142 k python3-rpm-macros noarch 3-38.el8 AppStream 13 k qt5-srpm-macros noarch 5.12.5-3.el8 AppStream 10 k redhat-rpm-config noarch 122-1.el8 AppStream 83 k rust-srpm-macros noarch 5-2.el8 AppStream 9.2 k systemtap-sdt-devel x86_64 4.2-6.el8 AppStream 81 k unzip x86_64 6.0-43.el8 BaseOS 195 k zip x86_64 3.0-23.el8 BaseOS 270 k zlib-devel x86_64 1.2.11-13.el8 BaseOS 57 k Installing weak dependencies: perl-Encode-Locale noarch 1.05-9.el8 AppStream 21 k perl-IO-Socket-SSL noarch 2.066-4.el8 AppStream 297 k perl-Mozilla-CA noarch 20160104-7.el8 AppStream 15 k perl-TermReadKey x86_64 2.37-7.el8 AppStream 40 k Transaction Summary ================================================================================ Install 175 Packages Total download size: 84 M Installed size: 234 M Downloading Packages: (1/175): annobin-8.90-1.el8.0.1.x86_64.rpm 26 kB/s | 201 kB 00:07 (2/175): efi-srpm-macros-3-2.el8.noarch.rpm 6.7 kB/s | 22 kB 00:03 (3/175): dwz-0.12-9.el8.x86_64.rpm 7.6 kB/s | 109 kB 00:14 (4/175): ghc-srpm-macros-1.4.2-7.el8.noarch.rpm 3.4 kB/s | 9.3 kB 00:02 (5/175): go-srpm-macros-2-16.el8.noarch.rpm 13 kB/s | 14 kB 00:01 (6/175): isl-0.16.1-6.el8.x86_64.rpm 25 kB/s | 841 kB 00:34 (7/175): libmpc-1.0.2-9.el8.x86_64.rpm 14 kB/s | 59 kB 00:04 (8/175): ocaml-srpm-macros-5-4.el8.noarch.rpm 46 kB/s | 9.4 kB 00:00 (9/175): openblas-srpm-macros-2-2.el8.noarch.rp 38 kB/s | 7.9 kB 00:00 (10/175): perl-5.26.3-416.el8.x86_64.rpm 63 kB/s | 72 kB 00:01 (11/175): perl-Algorithm-Diff-1.1903-9.el8.noar 62 kB/s | 52 kB 00:00 (12/175): perl-Archive-Tar-2.30-1.el8.noarch.rp 45 kB/s | 79 kB 00:01 (13/175): perl-Archive-Zip-1.60-3.el8.noarch.rp 52 kB/s | 108 kB 00:02 (14/175): perl-Attribute-Handlers-0.99-416.el8. 64 kB/s | 88 kB 00:01 (15/175): perl-B-Debug-1.26-2.el8.noarch.rpm 55 kB/s | 26 kB 00:00 (16/175): perl-CPAN-2.18-397.el8.noarch.rpm 44 kB/s | 554 kB 00:12 (17/175): perl-CPAN-Meta-2.150010-396.el8.noarc 21 kB/s | 191 kB 00:09 (18/175): perl-CPAN-Meta-Requirements-2.140-396 22 kB/s | 37 kB 00:01 (19/175): perl-CPAN-Meta-YAML-0.018-397.el8.noa 26 kB/s | 34 kB 00:01 (20/175): perl-Compress-Bzip2-2.26-6.el8.x86_64 33 kB/s | 72 kB 00:02 (21/175): perl-Compress-Raw-Bzip2-2.081-1.el8.x 42 kB/s | 40 kB 00:00 (22/175): perl-Compress-Raw-Zlib-2.081-1.el8.x8 47 kB/s | 68 kB 00:01 (23/175): perl-Config-Perl-V-0.30-1.el8.noarch. 36 kB/s | 22 kB 00:00 (24/175): perl-DB_File-1.842-1.el8.x86_64.rpm 35 kB/s | 83 kB 00:02 (25/175): perl-Data-OptList-0.110-6.el8.noarch. 40 kB/s | 31 kB 00:00 (26/175): perl-Data-Section-0.200007-3.el8.noar 42 kB/s | 30 kB 00:00 (27/175): perl-Devel-PPPort-3.36-5.el8.x86_64.r 53 kB/s | 118 kB 00:02 (28/175): perl-Devel-Peek-1.26-416.el8.x86_64.r 42 kB/s | 93 kB 00:02 (29/175): perl-Devel-SelfStubber-1.06-416.el8.n 46 kB/s | 75 kB 00:01 (30/175): perl-Devel-Size-0.81-2.el8.x86_64.rpm 32 kB/s | 34 kB 00:01 (31/175): perl-Digest-1.17-395.el8.noarch.rpm 38 kB/s | 27 kB 00:00 (32/175): perl-Digest-MD5-2.55-396.el8.x86_64.r 21 kB/s | 37 kB 00:01 (33/175): perl-Digest-SHA-6.02-1.el8.x86_64.rpm 33 kB/s | 66 kB 00:02 (34/175): perl-Encode-Locale-1.05-9.el8.noarch. 50 kB/s | 21 kB 00:00 (35/175): perl-Encode-devel-2.97-3.el8.x86_64.r 37 kB/s | 39 kB 00:01 (36/175): perl-Env-1.04-395.el8.noarch.rpm 19 kB/s | 21 kB 00:01 (37/175): perl-ExtUtils-CBuilder-0.280230-2.el8 41 kB/s | 48 kB 00:01 (38/175): perl-ExtUtils-Command-7.34-1.el8.noar 33 kB/s | 19 kB 00:00 (39/175): perl-ExtUtils-Embed-1.34-416.el8.noar 48 kB/s | 79 kB 00:01 (40/175): perl-ExtUtils-Install-2.14-4.el8.noar 57 kB/s | 46 kB 00:00 (41/175): perl-ExtUtils-MM-Utils-7.34-1.el8.noa 40 kB/s | 17 kB 00:00 (42/175): perl-ExtUtils-MakeMaker-7.34-1.el8.no 47 kB/s | 300 kB 00:06 (43/175): perl-ExtUtils-Manifest-1.70-395.el8.n 28 kB/s | 37 kB 00:01 (44/175): perl-ExtUtils-Miniperl-1.06-416.el8.n 30 kB/s | 76 kB 00:02 (45/175): perl-ExtUtils-ParseXS-3.35-2.el8.noar 43 kB/s | 83 kB 00:01 (46/175): perl-File-Fetch-0.56-2.el8.noarch.rpm 41 kB/s | 33 kB 00:00 (47/175): perl-File-HomeDir-1.002-4.el8.noarch. 49 kB/s | 61 kB 00:01 (48/175): perl-File-Which-1.22-2.el8.noarch.rpm 58 kB/s | 23 kB 00:00 (49/175): perl-Filter-1.58-2.el8.x86_64.rpm 57 kB/s | 82 kB 00:01 (50/175): perl-Filter-Simple-0.94-2.el8.noarch. 50 kB/s | 29 kB 00:00 (51/175): perl-IO-Compress-2.081-1.el8.noarch.r 40 kB/s | 258 kB 00:06 (52/175): perl-IO-Socket-IP-0.39-5.el8.noarch.r 14 kB/s | 47 kB 00:03 (53/175): perl-IO-Socket-SSL-2.066-4.el8.noarch 29 kB/s | 297 kB 00:10 (54/175): perl-IO-Zlib-1.10-416.el8.noarch.rpm 54 kB/s | 80 kB 00:01 (55/175): perl-IPC-Cmd-1.02-1.el8.noarch.rpm 53 kB/s | 43 kB 00:00 (56/175): perl-IPC-SysV-2.07-397.el8.x86_64.rpm 22 kB/s | 43 kB 00:01 (57/175): perl-IPC-System-Simple-1.25-17.el8.no 35 kB/s | 43 kB 00:01 (58/175): perl-JSON-PP-2.97.001-3.el8.noarch.rp 53 kB/s | 68 kB 00:01 (59/175): perl-Locale-Codes-3.57-1.el8.noarch.r 63 kB/s | 311 kB 00:04 (60/175): perl-Locale-Maketext-1.28-396.el8.noa 42 kB/s | 99 kB 00:02 (61/175): perl-Locale-Maketext-Simple-0.21-416. 30 kB/s | 78 kB 00:02 (62/175): perl-MRO-Compat-0.13-4.el8.noarch.rpm 33 kB/s | 24 kB 00:00 (63/175): perl-Math-BigInt-FastCalc-0.500.600-6 52 kB/s | 27 kB 00:00 (64/175): perl-Math-BigRat-0.2614-1.el8.noarch. 58 kB/s | 40 kB 00:00 (65/175): perl-Memoize-1.03-416.el8.noarch.rpm 23 kB/s | 118 kB 00:05 (66/175): perl-Module-Build-0.42.24-5.el8.noarc 25 kB/s | 273 kB 00:10 (67/175): perl-Module-CoreList-5.20181130-1.el8 47 kB/s | 87 kB 00:01 (68/175): perl-Module-CoreList-tools-5.20181130 53 kB/s | 22 kB 00:00 (69/175): perl-Module-Load-0.32-395.el8.noarch. 43 kB/s | 19 kB 00:00 (70/175): perl-Module-Load-Conditional-0.68-395 31 kB/s | 24 kB 00:00 (71/175): perl-Module-Loaded-0.08-416.el8.noarc 32 kB/s | 74 kB 00:02 (72/175): perl-Module-Metadata-1.000033-395.el8 36 kB/s | 44 kB 00:01 (73/175): perl-Mozilla-CA-20160104-7.el8.noarch 38 kB/s | 15 kB 00:00 (74/175): perl-Net-Ping-2.55-416.el8.noarch.rpm 32 kB/s | 101 kB 00:03 (75/175): perl-Net-SSLeay-1.88-1.el8.x86_64.rpm 40 kB/s | 379 kB 00:09 (76/175): perl-Package-Generator-1.106-11.el8.n 36 kB/s | 27 kB 00:00 (77/175): perl-Params-Check-0.38-395.el8.noarch 37 kB/s | 24 kB 00:00 (78/175): perl-Params-Util-1.07-22.el8.x86_64.r 35 kB/s | 44 kB 00:01 (79/175): perl-Perl-OSType-1.010-396.el8.noarch 37 kB/s | 29 kB 00:00 (80/175): perl-PerlIO-via-QuotedPrint-0.08-395. 30 kB/s | 13 kB 00:00 (81/175): perl-Pod-Checker-1.73-395.el8.noarch. 31 kB/s | 33 kB 00:01 (82/175): perl-Pod-Html-1.22.02-416.el8.noarch. 26 kB/s | 87 kB 00:03 (83/175): perl-Pod-Parser-1.63-396.el8.noarch.r 48 kB/s | 108 kB 00:02 (84/175): perl-SelfLoader-1.23-416.el8.noarch.r 33 kB/s | 82 kB 00:02 (85/175): perl-Software-License-0.103013-2.el8. 25 kB/s | 138 kB 00:05 (86/175): perl-Sub-Exporter-0.987-15.el8.noarch 29 kB/s | 73 kB 00:02 (87/175): perl-Sub-Install-0.928-14.el8.noarch. 42 kB/s | 27 kB 00:00 (88/175): perl-Sys-Syslog-0.35-397.el8.x86_64.r 16 kB/s | 50 kB 00:03 (89/175): perl-TermReadKey-2.37-7.el8.x86_64.rp 39 kB/s | 40 kB 00:01 (90/175): perl-Test-1.30-416.el8.noarch.rpm 53 kB/s | 89 kB 00:01 (91/175): perl-Test-Harness-3.42-1.el8.noarch.r 33 kB/s | 279 kB 00:08 (92/175): cpp-8.3.1-5.el8.0.2.x86_64.rpm 43 kB/s | 10 MB 04:08 (93/175): perl-Text-Balanced-2.03-395.el8.noarc 55 kB/s | 58 kB 00:01 (94/175): perl-Text-Diff-1.45-2.el8.noarch.rpm 53 kB/s | 45 kB 00:00 (95/175): perl-Text-Glob-0.11-4.el8.noarch.rpm 39 kB/s | 17 kB 00:00 (96/175): perl-Text-Template-1.51-1.el8.noarch. 58 kB/s | 64 kB 00:01 (97/175): perl-Thread-Queue-3.13-1.el8.noarch.r 40 kB/s | 24 kB 00:00 (98/175): perl-Time-HiRes-1.9758-1.el8.x86_64.r 27 kB/s | 61 kB 00:02 (99/175): perl-Time-Piece-1.31-416.el8.x86_64.r 34 kB/s | 98 kB 00:02 (100/175): perl-Test-Simple-1.302135-1.el8.noar 35 kB/s | 516 kB 00:14 (101/175): perl-URI-1.73-3.el8.noarch.rpm 43 kB/s | 116 kB 00:02 (102/175): perl-autodie-2.29-396.el8.noarch.rpm 29 kB/s | 98 kB 00:03 (103/175): perl-bignum-0.49-2.el8.noarch.rpm 36 kB/s | 44 kB 00:01 (104/175): perl-Unicode-Collate-1.25-2.el8.x86_ 44 kB/s | 686 kB 00:15 (105/175): perl-encoding-2.22-3.el8.x86_64.rpm 58 kB/s | 68 kB 00:01 (106/175): perl-experimental-0.019-2.el8.noarch 37 kB/s | 24 kB 00:00 (107/175): perl-inc-latest-0.500-9.el8.noarch.r 41 kB/s | 25 kB 00:00 (108/175): perl-libnet-3.11-3.el8.noarch.rpm 46 kB/s | 121 kB 00:02 (109/175): perl-devel-5.26.3-416.el8.x86_64.rpm 37 kB/s | 599 kB 00:16 (110/175): perl-libnetcfg-5.26.3-416.el8.noarch 46 kB/s | 77 kB 00:01 (111/175): perl-local-lib-2.000024-2.el8.noarch 45 kB/s | 74 kB 00:01 (112/175): perl-open-1.11-416.el8.noarch.rpm 37 kB/s | 77 kB 00:02 (113/175): perl-srpm-macros-1-25.el8.noarch.rpm 16 kB/s | 11 kB 00:00 (114/175): perl-utils-5.26.3-416.el8.noarch.rpm 52 kB/s | 128 kB 00:02 (115/175): perl-version-0.99.24-1.el8.x86_64.rp 67 kB/s | 67 kB 00:01 (116/175): python-srpm-macros-3-38.el8.noarch.r 55 kB/s | 14 kB 00:00 (117/175): python3-rpm-macros-3-38.el8.noarch.r 60 kB/s | 13 kB 00:00 (118/175): qt5-srpm-macros-5.12.5-3.el8.noarch. 50 kB/s | 10 kB 00:00 (119/175): redhat-rpm-config-122-1.el8.noarch.r 48 kB/s | 83 kB 00:01 (120/175): rust-srpm-macros-5-2.el8.noarch.rpm 24 kB/s | 9.2 kB 00:00 (121/175): perl-perlfaq-5.20180605-1.el8.noarch 45 kB/s | 386 kB 00:08 (122/175): systemtap-sdt-devel-4.2-6.el8.x86_64 55 kB/s | 81 kB 00:01 (123/175): bzip2-1.0.6-26.el8.x86_64.rpm 30 kB/s | 60 kB 00:01 (124/175): elfutils-libelf-devel-0.178-7.el8.x8 15 kB/s | 58 kB 00:03 (125/175): glibc-devel-2.28-101.el8.x86_64.rpm 37 kB/s | 1.0 MB 00:27 (126/175): glibc-headers-2.28-101.el8.x86_64.rp 24 kB/s | 473 kB 00:20 (127/175): binutils-2.30-73.el8.x86_64.rpm 46 kB/s | 5.7 MB 02:05 (128/175): kernel-headers-4.18.0-193.6.3.el8_2. 37 kB/s | 4.0 MB 01:51 (129/175): libpkgconf-1.4.2-1.el8.x86_64.rpm 32 kB/s | 35 kB 00:01 (130/175): libxcrypt-devel-4.1.1-4.el8.x86_64.r 34 kB/s | 25 kB 00:00 (131/175): make-4.2.1-10.el8.x86_64.rpm 43 kB/s | 498 kB 00:11 (132/175): perl-Carp-1.42-396.el8.noarch.rpm 51 kB/s | 30 kB 00:00 (133/175): perl-Data-Dumper-2.167-399.el8.x86_6 56 kB/s | 58 kB 00:01 (134/175): perl-Encode-2.97-3.el8.x86_64.rpm 44 kB/s | 1.5 MB 00:34 (135/175): perl-Errno-1.28-416.el8.x86_64.rpm 51 kB/s | 76 kB 00:01 (136/175): perl-Exporter-5.72-396.el8.noarch.rp 50 kB/s | 34 kB 00:00 (137/175): perl-File-Path-2.15-2.el8.noarch.rpm 58 kB/s | 38 kB 00:00 (138/175): perl-File-Temp-0.230.600-1.el8.noarc 27 kB/s | 63 kB 00:02 (139/175): perl-Getopt-Long-2.50-4.el8.noarch.r 47 kB/s | 63 kB 00:01 (140/175): perl-HTTP-Tiny-0.074-1.el8.noarch.rp 51 kB/s | 58 kB 00:01 (141/175): gcc-8.3.1-5.el8.0.2.x86_64.rpm 42 kB/s | 23 MB 09:33 (142/175): perl-MIME-Base64-3.15-396.el8.x86_64 28 kB/s | 31 kB 00:01 (143/175): perl-IO-1.38-416.el8.x86_64.rpm 39 kB/s | 141 kB 00:03 (144/175): perl-Math-BigInt-1.9998.11-7.el8.noa 65 kB/s | 196 kB 00:03 (145/175): perl-PathTools-3.74-1.el8.x86_64.rpm 45 kB/s | 90 kB 00:02 (146/175): perl-Math-Complex-1.59-416.el8.noarc 32 kB/s | 108 kB 00:03 (147/175): perl-Pod-Escapes-1.07-395.el8.noarch 39 kB/s | 20 kB 00:00 (148/175): perl-Pod-Simple-3.35-395.el8.noarch. 53 kB/s | 213 kB 00:04 (149/175): perl-Pod-Perldoc-3.28-396.el8.noarch 20 kB/s | 86 kB 00:04 (150/175): perl-Pod-Usage-1.69-395.el8.noarch.r 60 kB/s | 34 kB 00:00 (151/175): perl-Socket-2.027-3.el8.x86_64.rpm 59 kB/s | 59 kB 00:00 (152/175): perl-Scalar-List-Utils-1.49-2.el8.x8 28 kB/s | 68 kB 00:02 (153/175): perl-Storable-3.11-3.el8.x86_64.rpm 60 kB/s | 98 kB 00:01 (154/175): perl-Term-ANSIColor-4.06-396.el8.noa 26 kB/s | 46 kB 00:01 (155/175): perl-Term-Cap-1.17-395.el8.noarch.rp 15 kB/s | 23 kB 00:01 (156/175): perl-Text-ParseWords-3.30-395.el8.no 23 kB/s | 18 kB 00:00 (157/175): perl-Text-Tabs+Wrap-2013.0523-395.el 36 kB/s | 24 kB 00:00 (158/175): perl-Time-Local-1.280-1.el8.noarch.r 28 kB/s | 34 kB 00:01 (159/175): perl-constant-1.33-396.el8.noarch.rp 14 kB/s | 25 kB 00:01 (160/175): perl-Unicode-Normalize-1.25-396.el8. 27 kB/s | 82 kB 00:03 (161/175): perl-libs-5.26.3-416.el8.x86_64.rpm 50 kB/s | 1.6 MB 00:32 (162/175): perl-macros-5.26.3-416.el8.x86_64.rp 49 kB/s | 72 kB 00:01 (163/175): perl-parent-0.237-1.el8.noarch.rpm 32 kB/s | 20 kB 00:00 (164/175): perl-podlators-4.11-1.el8.noarch.rpm 40 kB/s | 118 kB 00:02 (165/175): perl-threads-2.21-2.el8.x86_64.rpm 35 kB/s | 61 kB 00:01 (166/175): perl-threads-shared-1.58-2.el8.x86_6 15 kB/s | 48 kB 00:03 (167/175): pkgconf-1.4.2-1.el8.x86_64.rpm 17 kB/s | 38 kB 00:02 (168/175): pkgconf-m4-1.4.2-1.el8.noarch.rpm 11 kB/s | 17 kB 00:01 (169/175): pkgconf-pkg-config-1.4.2-1.el8.x86_6 19 kB/s | 15 kB 00:00 (170/175): python3-pyparsing-2.1.10-7.el8.noarc 27 kB/s | 142 kB 00:05 (171/175): unzip-6.0-43.el8.x86_64.rpm 40 kB/s | 195 kB 00:04 (172/175): zip-3.0-23.el8.x86_64.rpm 43 kB/s | 270 kB 00:06 (173/175): zlib-devel-1.2.11-13.el8.x86_64.rpm 42 kB/s | 57 kB 00:01 (174/175): kernel-devel-4.18.0-193.6.3.el8_2.x8 45 kB/s | 15 MB 05:39 (175/175): perl-interpreter-5.26.3-416.el8.x86_ 60 kB/s | 6.3 MB 01:46 -------------------------------------------------------------------------------- Total 121 kB/s | 84 MB 11:52 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : perl-Exporter-5.72-396.el8.noarch 1/175 Installing : perl-libs-4:5.26.3-416.el8.x86_64 2/175 Installing : perl-Carp-1.42-396.el8.noarch 3/175 Installing : perl-Scalar-List-Utils-3:1.49-2.el8.x86_64 4/175 Installing : perl-parent-1:0.237-1.el8.noarch 5/175 Installing : perl-Text-ParseWords-3.30-395.el8.noarch 6/175 Installing : perl-Time-HiRes-1.9758-1.el8.x86_64 7/175 Installing : perl-Term-ANSIColor-4.06-396.el8.noarch 8/175 Installing : perl-Perl-OSType-1.010-396.el8.noarch 9/175 Installing : perl-macros-4:5.26.3-416.el8.x86_64 10/175 Installing : perl-Errno-1.28-416.el8.x86_64 11/175 Installing : perl-Socket-4:2.027-3.el8.x86_64 12/175 Installing : perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch 13/175 Installing : perl-Unicode-Normalize-1.25-396.el8.x86_64 14/175 Installing : perl-File-Path-2.15-2.el8.noarch 15/175 Installing : perl-IO-1.38-416.el8.x86_64 16/175 Installing : perl-PathTools-3.74-1.el8.x86_64 17/175 Installing : perl-constant-1.33-396.el8.noarch 18/175 Installing : perl-threads-1:2.21-2.el8.x86_64 19/175 Installing : perl-threads-shared-1.58-2.el8.x86_64 20/175 Installing : perl-interpreter-4:5.26.3-416.el8.x86_64 21/175 Installing : perl-version-6:0.99.24-1.el8.x86_64 22/175 Installing : perl-Data-Dumper-2.167-399.el8.x86_64 23/175 Installing : perl-File-Temp-0.230.600-1.el8.noarch 24/175 Installing : perl-MIME-Base64-3.15-396.el8.x86_64 25/175 Installing : perl-Time-Local-1:1.280-1.el8.noarch 26/175 Installing : perl-CPAN-Meta-Requirements-2.140-396.el8.noarch 27/175 Installing : perl-ExtUtils-Manifest-1.70-395.el8.noarch 28/175 Installing : perl-IO-Socket-IP-0.39-5.el8.noarch 29/175 Installing : perl-Storable-1:3.11-3.el8.x86_64 30/175 Installing : perl-Digest-1.17-395.el8.noarch 31/175 Installing : perl-Digest-MD5-2.55-396.el8.x86_64 32/175 Installing : perl-Module-CoreList-1:5.20181130-1.el8.noarch 33/175 Installing : perl-Module-Metadata-1.000033-395.el8.noarch 34/175 Installing : perl-Compress-Raw-Zlib-2.081-1.el8.x86_64 35/175 Installing : perl-Filter-2:1.58-2.el8.x86_64 36/175 Installing : perl-SelfLoader-1.23-416.el8.noarch 37/175 Installing : perl-Module-Load-1:0.32-395.el8.noarch 38/175 Installing : perl-Text-Balanced-2.03-395.el8.noarch 39/175 Installing : perl-CPAN-Meta-YAML-0.018-397.el8.noarch 40/175 Installing : perl-Compress-Raw-Bzip2-2.081-1.el8.x86_64 41/175 Installing : perl-ExtUtils-Command-1:7.34-1.el8.noarch 42/175 Installing : perl-Locale-Maketext-1.28-396.el8.noarch 43/175 Installing : perl-Locale-Maketext-Simple-1:0.21-416.el8.noarc 44/175 Installing : perl-Params-Check-1:0.38-395.el8.noarch 45/175 Installing : perl-Module-Load-Conditional-0.68-395.el8.noarch 46/175 Installing : perl-Net-Ping-2.55-416.el8.noarch 47/175 Installing : perl-Params-Util-1.07-22.el8.x86_64 48/175 Installing : perl-Sub-Install-0.928-14.el8.noarch 49/175 Installing : perl-Math-Complex-1.59-416.el8.noarch 50/175 Installing : perl-Math-BigInt-1:1.9998.11-7.el8.noarch 51/175 Installing : perl-Math-BigRat-0.2614-1.el8.noarch 52/175 Installing : perl-Pod-Escapes-1:1.07-395.el8.noarch 53/175 Installing : perl-Term-Cap-1.17-395.el8.noarch 54/175 Installing : libmpc-1.0.2-9.el8.x86_64 55/175 Running scriptlet: libmpc-1.0.2-9.el8.x86_64 55/175 Installing : cpp-8.3.1-5.el8.0.2.x86_64 56/175 Running scriptlet: cpp-8.3.1-5.el8.0.2.x86_64 56/175 Installing : perl-bignum-0.49-2.el8.noarch 57/175 Installing : perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64 58/175 Installing : perl-Data-OptList-0.110-6.el8.noarch 59/175 Installing : perl-Filter-Simple-0.94-2.el8.noarch 60/175 Installing : perl-Devel-SelfStubber-1.06-416.el8.noarch 61/175 Installing : perl-Config-Perl-V-0.30-1.el8.noarch 62/175 Installing : perl-Memoize-1.03-416.el8.noarch 63/175 Installing : perl-Test-Simple-1:1.302135-1.el8.noarch 64/175 Installing : perl-Time-Piece-1.31-416.el8.x86_64 65/175 Installing : perl-Net-SSLeay-1.88-1.el8.x86_64 66/175 Installing : perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch 67/175 Installing : perl-Test-1.30-416.el8.noarch 68/175 Installing : perl-experimental-0.019-2.el8.noarch 69/175 Installing : perl-Algorithm-Diff-1.1903-9.el8.noarch 70/175 Installing : perl-Text-Diff-1.45-2.el8.noarch 71/175 Installing : perl-Attribute-Handlers-0.99-416.el8.noarch 72/175 Installing : perl-B-Debug-1.26-2.el8.noarch 73/175 Installing : perl-Compress-Bzip2-2.26-6.el8.x86_64 74/175 Installing : perl-DB_File-1.842-1.el8.x86_64 75/175 Installing : perl-Devel-PPPort-3.36-5.el8.x86_64 76/175 Installing : perl-Devel-Size-0.81-2.el8.x86_64 77/175 Installing : perl-Env-1.04-395.el8.noarch 78/175 Installing : perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch 79/175 Installing : perl-IPC-Cmd-2:1.02-1.el8.noarch 80/175 Installing : perl-File-Fetch-0.56-2.el8.noarch 81/175 Installing : perl-IPC-SysV-2.07-397.el8.x86_64 82/175 Installing : perl-IPC-System-Simple-1.25-17.el8.noarch 83/175 Installing : perl-autodie-2.29-396.el8.noarch 84/175 Installing : perl-Locale-Codes-3.57-1.el8.noarch 85/175 Installing : perl-Module-Loaded-1:0.08-416.el8.noarch 86/175 Installing : perl-Package-Generator-1.106-11.el8.noarch 87/175 Installing : perl-Sub-Exporter-0.987-15.el8.noarch 88/175 Installing : perl-Sys-Syslog-0.35-397.el8.x86_64 89/175 Installing : perl-TermReadKey-2.37-7.el8.x86_64 90/175 Installing : perl-Text-Glob-0.11-4.el8.noarch 91/175 Installing : perl-Text-Template-1.51-1.el8.noarch 92/175 Installing : perl-Unicode-Collate-1.25-2.el8.x86_64 93/175 Installing : perl-local-lib-2.000024-2.el8.noarch 94/175 Installing : perl-utils-5.26.3-416.el8.noarch 95/175 Installing : perl-Thread-Queue-3.13-1.el8.noarch 96/175 Installing : perl-File-Which-1.22-2.el8.noarch 97/175 Installing : perl-File-HomeDir-1.002-4.el8.noarch 98/175 Installing : perl-Mozilla-CA-20160104-7.el8.noarch 99/175 Installing : perl-Encode-4:2.97-3.el8.x86_64 100/175 Installing : perl-Pod-Simple-1:3.35-395.el8.noarch 101/175 Installing : perl-Getopt-Long-1:2.50-4.el8.noarch 102/175 Installing : perl-podlators-4.11-1.el8.noarch 103/175 Installing : perl-Pod-Usage-4:1.69-395.el8.noarch 104/175 Installing : perl-Pod-Perldoc-3.28-396.el8.noarch 105/175 Installing : perl-HTTP-Tiny-0.074-1.el8.noarch 106/175 Installing : perl-IO-Socket-SSL-2.066-4.el8.noarch 107/175 Installing : perl-libnet-3.11-3.el8.noarch 108/175 Installing : perl-URI-1.73-3.el8.noarch 109/175 Installing : perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch 110/175 Installing : perl-IO-Compress-2.081-1.el8.noarch 111/175 Installing : perl-JSON-PP-1:2.97.001-3.el8.noarch 112/175 Installing : perl-CPAN-Meta-2.150010-396.el8.noarch 113/175 Installing : perl-Test-Harness-1:3.42-1.el8.noarch 114/175 Installing : perl-IO-Zlib-1:1.10-416.el8.noarch 115/175 Installing : perl-Archive-Tar-2.30-1.el8.noarch 116/175 Installing : perl-Digest-SHA-1:6.02-1.el8.x86_64 117/175 Installing : perl-Pod-Html-1.22.02-416.el8.noarch 118/175 Installing : perl-encoding-4:2.22-3.el8.x86_64 119/175 Installing : perl-open-1.11-416.el8.noarch 120/175 Installing : perl-Module-CoreList-tools-1:5.20181130-1.el8.no 121/175 Installing : perl-Pod-Checker-4:1.73-395.el8.noarch 122/175 Installing : perl-Pod-Parser-1.63-396.el8.noarch 123/175 Installing : perl-Archive-Zip-1.60-3.el8.noarch 124/175 Installing : perl-Encode-Locale-1.05-9.el8.noarch 125/175 Installing : perl-Devel-Peek-1.26-416.el8.x86_64 126/175 Installing : perl-MRO-Compat-0.13-4.el8.noarch 127/175 Installing : perl-Data-Section-0.200007-3.el8.noarch 128/175 Installing : perl-Software-License-0.103013-2.el8.noarch 129/175 Installing : perl-perlfaq-5.20180605-1.el8.noarch 130/175 Installing : unzip-6.0-43.el8.x86_64 131/175 Installing : zip-3.0-23.el8.x86_64 132/175 Installing : python3-pyparsing-2.1.10-7.el8.noarch 133/175 Installing : systemtap-sdt-devel-4.2-6.el8.x86_64 134/175 Installing : pkgconf-m4-1.4.2-1.el8.noarch 135/175 Installing : make-1:4.2.1-10.el8.x86_64 136/175 Running scriptlet: make-1:4.2.1-10.el8.x86_64 136/175 Installing : libpkgconf-1.4.2-1.el8.x86_64 137/175 Installing : pkgconf-1.4.2-1.el8.x86_64 138/175 Installing : pkgconf-pkg-config-1.4.2-1.el8.x86_64 139/175 Installing : zlib-devel-1.2.11-13.el8.x86_64 140/175 Installing : kernel-headers-4.18.0-193.6.3.el8_2.x86_64 141/175 Running scriptlet: glibc-headers-2.28-101.el8.x86_64 142/175 Installing : glibc-headers-2.28-101.el8.x86_64 142/175 Installing : libxcrypt-devel-4.1.1-4.el8.x86_64 143/175 Installing : glibc-devel-2.28-101.el8.x86_64 144/175 Running scriptlet: glibc-devel-2.28-101.el8.x86_64 144/175 Installing : binutils-2.30-73.el8.x86_64 145/175 Running scriptlet: binutils-2.30-73.el8.x86_64 145/175 Installing : rust-srpm-macros-5-2.el8.noarch 146/175 Installing : qt5-srpm-macros-5.12.5-3.el8.noarch 147/175 Installing : python3-rpm-macros-3-38.el8.noarch 148/175 Installing : python-srpm-macros-3-38.el8.noarch 149/175 Installing : perl-srpm-macros-1-25.el8.noarch 150/175 Installing : openblas-srpm-macros-2-2.el8.noarch 151/175 Installing : ocaml-srpm-macros-5-4.el8.noarch 152/175 Installing : isl-0.16.1-6.el8.x86_64 153/175 Running scriptlet: isl-0.16.1-6.el8.x86_64 153/175 Installing : gcc-8.3.1-5.el8.0.2.x86_64 154/175 Running scriptlet: gcc-8.3.1-5.el8.0.2.x86_64 154/175 Installing : annobin-8.90-1.el8.0.1.x86_64 155/175 Installing : go-srpm-macros-2-16.el8.noarch 156/175 Installing : ghc-srpm-macros-1.4.2-7.el8.noarch 157/175 Installing : efi-srpm-macros-3-2.el8.noarch 158/175 Installing : dwz-0.12-9.el8.x86_64 159/175 Installing : redhat-rpm-config-122-1.el8.noarch 160/175 Installing : perl-ExtUtils-Install-2.14-4.el8.noarch 161/175 Installing : perl-devel-4:5.26.3-416.el8.x86_64 162/175 Installing : perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch 163/175 Installing : perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch 164/175 Installing : perl-ExtUtils-Embed-1.34-416.el8.noarch 165/175 Installing : perl-ExtUtils-Miniperl-1.06-416.el8.noarch 166/175 Installing : perl-libnetcfg-4:5.26.3-416.el8.noarch 167/175 Installing : perl-Encode-devel-4:2.97-3.el8.x86_64 168/175 Installing : perl-inc-latest-2:0.500-9.el8.noarch 169/175 Installing : perl-Module-Build-2:0.42.24-5.el8.noarch 170/175 Installing : perl-CPAN-2.18-397.el8.noarch 171/175 Installing : perl-4:5.26.3-416.el8.x86_64 172/175 Installing : elfutils-libelf-devel-0.178-7.el8.x86_64 173/175 Installing : kernel-devel-4.18.0-193.6.3.el8_2.x86_64 174/175 Running scriptlet: kernel-devel-4.18.0-193.6.3.el8_2.x86_64 174/175 Installing : bzip2-1.0.6-26.el8.x86_64 175/175 Running scriptlet: bzip2-1.0.6-26.el8.x86_64 175/175 Verifying : annobin-8.90-1.el8.0.1.x86_64 1/175 Verifying : cpp-8.3.1-5.el8.0.2.x86_64 2/175 Verifying : dwz-0.12-9.el8.x86_64 3/175 Verifying : efi-srpm-macros-3-2.el8.noarch 4/175 Verifying : gcc-8.3.1-5.el8.0.2.x86_64 5/175 Verifying : ghc-srpm-macros-1.4.2-7.el8.noarch 6/175 Verifying : go-srpm-macros-2-16.el8.noarch 7/175 Verifying : isl-0.16.1-6.el8.x86_64 8/175 Verifying : libmpc-1.0.2-9.el8.x86_64 9/175 Verifying : ocaml-srpm-macros-5-4.el8.noarch 10/175 Verifying : openblas-srpm-macros-2-2.el8.noarch 11/175 Verifying : perl-4:5.26.3-416.el8.x86_64 12/175 Verifying : perl-Algorithm-Diff-1.1903-9.el8.noarch 13/175 Verifying : perl-Archive-Tar-2.30-1.el8.noarch 14/175 Verifying : perl-Archive-Zip-1.60-3.el8.noarch 15/175 Verifying : perl-Attribute-Handlers-0.99-416.el8.noarch 16/175 Verifying : perl-B-Debug-1.26-2.el8.noarch 17/175 Verifying : perl-CPAN-2.18-397.el8.noarch 18/175 Verifying : perl-CPAN-Meta-2.150010-396.el8.noarch 19/175 Verifying : perl-CPAN-Meta-Requirements-2.140-396.el8.noarch 20/175 Verifying : perl-CPAN-Meta-YAML-0.018-397.el8.noarch 21/175 Verifying : perl-Compress-Bzip2-2.26-6.el8.x86_64 22/175 Verifying : perl-Compress-Raw-Bzip2-2.081-1.el8.x86_64 23/175 Verifying : perl-Compress-Raw-Zlib-2.081-1.el8.x86_64 24/175 Verifying : perl-Config-Perl-V-0.30-1.el8.noarch 25/175 Verifying : perl-DB_File-1.842-1.el8.x86_64 26/175 Verifying : perl-Data-OptList-0.110-6.el8.noarch 27/175 Verifying : perl-Data-Section-0.200007-3.el8.noarch 28/175 Verifying : perl-Devel-PPPort-3.36-5.el8.x86_64 29/175 Verifying : perl-Devel-Peek-1.26-416.el8.x86_64 30/175 Verifying : perl-Devel-SelfStubber-1.06-416.el8.noarch 31/175 Verifying : perl-Devel-Size-0.81-2.el8.x86_64 32/175 Verifying : perl-Digest-1.17-395.el8.noarch 33/175 Verifying : perl-Digest-MD5-2.55-396.el8.x86_64 34/175 Verifying : perl-Digest-SHA-1:6.02-1.el8.x86_64 35/175 Verifying : perl-Encode-Locale-1.05-9.el8.noarch 36/175 Verifying : perl-Encode-devel-4:2.97-3.el8.x86_64 37/175 Verifying : perl-Env-1.04-395.el8.noarch 38/175 Verifying : perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch 39/175 Verifying : perl-ExtUtils-Command-1:7.34-1.el8.noarch 40/175 Verifying : perl-ExtUtils-Embed-1.34-416.el8.noarch 41/175 Verifying : perl-ExtUtils-Install-2.14-4.el8.noarch 42/175 Verifying : perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch 43/175 Verifying : perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch 44/175 Verifying : perl-ExtUtils-Manifest-1.70-395.el8.noarch 45/175 Verifying : perl-ExtUtils-Miniperl-1.06-416.el8.noarch 46/175 Verifying : perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch 47/175 Verifying : perl-File-Fetch-0.56-2.el8.noarch 48/175 Verifying : perl-File-HomeDir-1.002-4.el8.noarch 49/175 Verifying : perl-File-Which-1.22-2.el8.noarch 50/175 Verifying : perl-Filter-2:1.58-2.el8.x86_64 51/175 Verifying : perl-Filter-Simple-0.94-2.el8.noarch 52/175 Verifying : perl-IO-Compress-2.081-1.el8.noarch 53/175 Verifying : perl-IO-Socket-IP-0.39-5.el8.noarch 54/175 Verifying : perl-IO-Socket-SSL-2.066-4.el8.noarch 55/175 Verifying : perl-IO-Zlib-1:1.10-416.el8.noarch 56/175 Verifying : perl-IPC-Cmd-2:1.02-1.el8.noarch 57/175 Verifying : perl-IPC-SysV-2.07-397.el8.x86_64 58/175 Verifying : perl-IPC-System-Simple-1.25-17.el8.noarch 59/175 Verifying : perl-JSON-PP-1:2.97.001-3.el8.noarch 60/175 Verifying : perl-Locale-Codes-3.57-1.el8.noarch 61/175 Verifying : perl-Locale-Maketext-1.28-396.el8.noarch 62/175 Verifying : perl-Locale-Maketext-Simple-1:0.21-416.el8.noarc 63/175 Verifying : perl-MRO-Compat-0.13-4.el8.noarch 64/175 Verifying : perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64 65/175 Verifying : perl-Math-BigRat-0.2614-1.el8.noarch 66/175 Verifying : perl-Memoize-1.03-416.el8.noarch 67/175 Verifying : perl-Module-Build-2:0.42.24-5.el8.noarch 68/175 Verifying : perl-Module-CoreList-1:5.20181130-1.el8.noarch 69/175 Verifying : perl-Module-CoreList-tools-1:5.20181130-1.el8.no 70/175 Verifying : perl-Module-Load-1:0.32-395.el8.noarch 71/175 Verifying : perl-Module-Load-Conditional-0.68-395.el8.noarch 72/175 Verifying : perl-Module-Loaded-1:0.08-416.el8.noarch 73/175 Verifying : perl-Module-Metadata-1.000033-395.el8.noarch 74/175 Verifying : perl-Mozilla-CA-20160104-7.el8.noarch 75/175 Verifying : perl-Net-Ping-2.55-416.el8.noarch 76/175 Verifying : perl-Net-SSLeay-1.88-1.el8.x86_64 77/175 Verifying : perl-Package-Generator-1.106-11.el8.noarch 78/175 Verifying : perl-Params-Check-1:0.38-395.el8.noarch 79/175 Verifying : perl-Params-Util-1.07-22.el8.x86_64 80/175 Verifying : perl-Perl-OSType-1.010-396.el8.noarch 81/175 Verifying : perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch 82/175 Verifying : perl-Pod-Checker-4:1.73-395.el8.noarch 83/175 Verifying : perl-Pod-Html-1.22.02-416.el8.noarch 84/175 Verifying : perl-Pod-Parser-1.63-396.el8.noarch 85/175 Verifying : perl-SelfLoader-1.23-416.el8.noarch 86/175 Verifying : perl-Software-License-0.103013-2.el8.noarch 87/175 Verifying : perl-Sub-Exporter-0.987-15.el8.noarch 88/175 Verifying : perl-Sub-Install-0.928-14.el8.noarch 89/175 Verifying : perl-Sys-Syslog-0.35-397.el8.x86_64 90/175 Verifying : perl-TermReadKey-2.37-7.el8.x86_64 91/175 Verifying : perl-Test-1.30-416.el8.noarch 92/175 Verifying : perl-Test-Harness-1:3.42-1.el8.noarch 93/175 Verifying : perl-Test-Simple-1:1.302135-1.el8.noarch 94/175 Verifying : perl-Text-Balanced-2.03-395.el8.noarch 95/175 Verifying : perl-Text-Diff-1.45-2.el8.noarch 96/175 Verifying : perl-Text-Glob-0.11-4.el8.noarch 97/175 Verifying : perl-Text-Template-1.51-1.el8.noarch 98/175 Verifying : perl-Thread-Queue-3.13-1.el8.noarch 99/175 Verifying : perl-Time-HiRes-1.9758-1.el8.x86_64 100/175 Verifying : perl-Time-Piece-1.31-416.el8.x86_64 101/175 Verifying : perl-URI-1.73-3.el8.noarch 102/175 Verifying : perl-Unicode-Collate-1.25-2.el8.x86_64 103/175 Verifying : perl-autodie-2.29-396.el8.noarch 104/175 Verifying : perl-bignum-0.49-2.el8.noarch 105/175 Verifying : perl-devel-4:5.26.3-416.el8.x86_64 106/175 Verifying : perl-encoding-4:2.22-3.el8.x86_64 107/175 Verifying : perl-experimental-0.019-2.el8.noarch 108/175 Verifying : perl-inc-latest-2:0.500-9.el8.noarch 109/175 Verifying : perl-libnet-3.11-3.el8.noarch 110/175 Verifying : perl-libnetcfg-4:5.26.3-416.el8.noarch 111/175 Verifying : perl-local-lib-2.000024-2.el8.noarch 112/175 Verifying : perl-open-1.11-416.el8.noarch 113/175 Verifying : perl-perlfaq-5.20180605-1.el8.noarch 114/175 Verifying : perl-srpm-macros-1-25.el8.noarch 115/175 Verifying : perl-utils-5.26.3-416.el8.noarch 116/175 Verifying : perl-version-6:0.99.24-1.el8.x86_64 117/175 Verifying : python-srpm-macros-3-38.el8.noarch 118/175 Verifying : python3-rpm-macros-3-38.el8.noarch 119/175 Verifying : qt5-srpm-macros-5.12.5-3.el8.noarch 120/175 Verifying : redhat-rpm-config-122-1.el8.noarch 121/175 Verifying : rust-srpm-macros-5-2.el8.noarch 122/175 Verifying : systemtap-sdt-devel-4.2-6.el8.x86_64 123/175 Verifying : binutils-2.30-73.el8.x86_64 124/175 Verifying : bzip2-1.0.6-26.el8.x86_64 125/175 Verifying : elfutils-libelf-devel-0.178-7.el8.x86_64 126/175 Verifying : glibc-devel-2.28-101.el8.x86_64 127/175 Verifying : glibc-headers-2.28-101.el8.x86_64 128/175 Verifying : kernel-devel-4.18.0-193.6.3.el8_2.x86_64 129/175 Verifying : kernel-headers-4.18.0-193.6.3.el8_2.x86_64 130/175 Verifying : libpkgconf-1.4.2-1.el8.x86_64 131/175 Verifying : libxcrypt-devel-4.1.1-4.el8.x86_64 132/175 Verifying : make-1:4.2.1-10.el8.x86_64 133/175 Verifying : perl-Carp-1.42-396.el8.noarch 134/175 Verifying : perl-Data-Dumper-2.167-399.el8.x86_64 135/175 Verifying : perl-Encode-4:2.97-3.el8.x86_64 136/175 Verifying : perl-Errno-1.28-416.el8.x86_64 137/175 Verifying : perl-Exporter-5.72-396.el8.noarch 138/175 Verifying : perl-File-Path-2.15-2.el8.noarch 139/175 Verifying : perl-File-Temp-0.230.600-1.el8.noarch 140/175 Verifying : perl-Getopt-Long-1:2.50-4.el8.noarch 141/175 Verifying : perl-HTTP-Tiny-0.074-1.el8.noarch 142/175 Verifying : perl-IO-1.38-416.el8.x86_64 143/175 Verifying : perl-MIME-Base64-3.15-396.el8.x86_64 144/175 Verifying : perl-Math-BigInt-1:1.9998.11-7.el8.noarch 145/175 Verifying : perl-Math-Complex-1.59-416.el8.noarch 146/175 Verifying : perl-PathTools-3.74-1.el8.x86_64 147/175 Verifying : perl-Pod-Escapes-1:1.07-395.el8.noarch 148/175 Verifying : perl-Pod-Perldoc-3.28-396.el8.noarch 149/175 Verifying : perl-Pod-Simple-1:3.35-395.el8.noarch 150/175 Verifying : perl-Pod-Usage-4:1.69-395.el8.noarch 151/175 Verifying : perl-Scalar-List-Utils-3:1.49-2.el8.x86_64 152/175 Verifying : perl-Socket-4:2.027-3.el8.x86_64 153/175 Verifying : perl-Storable-1:3.11-3.el8.x86_64 154/175 Verifying : perl-Term-ANSIColor-4.06-396.el8.noarch 155/175 Verifying : perl-Term-Cap-1.17-395.el8.noarch 156/175 Verifying : perl-Text-ParseWords-3.30-395.el8.noarch 157/175 Verifying : perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch 158/175 Verifying : perl-Time-Local-1:1.280-1.el8.noarch 159/175 Verifying : perl-Unicode-Normalize-1.25-396.el8.x86_64 160/175 Verifying : perl-constant-1.33-396.el8.noarch 161/175 Verifying : perl-interpreter-4:5.26.3-416.el8.x86_64 162/175 Verifying : perl-libs-4:5.26.3-416.el8.x86_64 163/175 Verifying : perl-macros-4:5.26.3-416.el8.x86_64 164/175 Verifying : perl-parent-1:0.237-1.el8.noarch 165/175 Verifying : perl-podlators-4.11-1.el8.noarch 166/175 Verifying : perl-threads-1:2.21-2.el8.x86_64 167/175 Verifying : perl-threads-shared-1.58-2.el8.x86_64 168/175 Verifying : pkgconf-1.4.2-1.el8.x86_64 169/175 Verifying : pkgconf-m4-1.4.2-1.el8.noarch 170/175 Verifying : pkgconf-pkg-config-1.4.2-1.el8.x86_64 171/175 Verifying : python3-pyparsing-2.1.10-7.el8.noarch 172/175 Verifying : unzip-6.0-43.el8.x86_64 173/175 Verifying : zip-3.0-23.el8.x86_64 174/175 Verifying : zlib-devel-1.2.11-13.el8.x86_64 175/175 Installed: annobin-8.90-1.el8.0.1.x86_64 binutils-2.30-73.el8.x86_64 bzip2-1.0.6-26.el8.x86_64 cpp-8.3.1-5.el8.0.2.x86_64 dwz-0.12-9.el8.x86_64 efi-srpm-macros-3-2.el8.noarch elfutils-libelf-devel-0.178-7.el8.x86_64 gcc-8.3.1-5.el8.0.2.x86_64 ghc-srpm-macros-1.4.2-7.el8.noarch glibc-devel-2.28-101.el8.x86_64 glibc-headers-2.28-101.el8.x86_64 go-srpm-macros-2-16.el8.noarch isl-0.16.1-6.el8.x86_64 kernel-devel-4.18.0-193.6.3.el8_2.x86_64 kernel-headers-4.18.0-193.6.3.el8_2.x86_64 libmpc-1.0.2-9.el8.x86_64 libpkgconf-1.4.2-1.el8.x86_64 libxcrypt-devel-4.1.1-4.el8.x86_64 make-1:4.2.1-10.el8.x86_64 ocaml-srpm-macros-5-4.el8.noarch openblas-srpm-macros-2-2.el8.noarch perl-4:5.26.3-416.el8.x86_64 perl-Algorithm-Diff-1.1903-9.el8.noarch perl-Archive-Tar-2.30-1.el8.noarch perl-Archive-Zip-1.60-3.el8.noarch perl-Attribute-Handlers-0.99-416.el8.noarch perl-B-Debug-1.26-2.el8.noarch perl-CPAN-2.18-397.el8.noarch perl-CPAN-Meta-2.150010-396.el8.noarch perl-CPAN-Meta-Requirements-2.140-396.el8.noarch perl-CPAN-Meta-YAML-0.018-397.el8.noarch perl-Carp-1.42-396.el8.noarch perl-Compress-Bzip2-2.26-6.el8.x86_64 perl-Compress-Raw-Bzip2-2.081-1.el8.x86_64 perl-Compress-Raw-Zlib-2.081-1.el8.x86_64 perl-Config-Perl-V-0.30-1.el8.noarch perl-DB_File-1.842-1.el8.x86_64 perl-Data-Dumper-2.167-399.el8.x86_64 perl-Data-OptList-0.110-6.el8.noarch perl-Data-Section-0.200007-3.el8.noarch perl-Devel-PPPort-3.36-5.el8.x86_64 perl-Devel-Peek-1.26-416.el8.x86_64 perl-Devel-SelfStubber-1.06-416.el8.noarch perl-Devel-Size-0.81-2.el8.x86_64 perl-Digest-1.17-395.el8.noarch perl-Digest-MD5-2.55-396.el8.x86_64 perl-Digest-SHA-1:6.02-1.el8.x86_64 perl-Encode-4:2.97-3.el8.x86_64 perl-Encode-Locale-1.05-9.el8.noarch perl-Encode-devel-4:2.97-3.el8.x86_64 perl-Env-1.04-395.el8.noarch perl-Errno-1.28-416.el8.x86_64 perl-Exporter-5.72-396.el8.noarch perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch perl-ExtUtils-Command-1:7.34-1.el8.noarch perl-ExtUtils-Embed-1.34-416.el8.noarch perl-ExtUtils-Install-2.14-4.el8.noarch perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch perl-ExtUtils-Manifest-1.70-395.el8.noarch perl-ExtUtils-Miniperl-1.06-416.el8.noarch perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch perl-File-Fetch-0.56-2.el8.noarch perl-File-HomeDir-1.002-4.el8.noarch perl-File-Path-2.15-2.el8.noarch perl-File-Temp-0.230.600-1.el8.noarch perl-File-Which-1.22-2.el8.noarch perl-Filter-2:1.58-2.el8.x86_64 perl-Filter-Simple-0.94-2.el8.noarch perl-Getopt-Long-1:2.50-4.el8.noarch perl-HTTP-Tiny-0.074-1.el8.noarch perl-IO-1.38-416.el8.x86_64 perl-IO-Compress-2.081-1.el8.noarch perl-IO-Socket-IP-0.39-5.el8.noarch perl-IO-Socket-SSL-2.066-4.el8.noarch perl-IO-Zlib-1:1.10-416.el8.noarch perl-IPC-Cmd-2:1.02-1.el8.noarch perl-IPC-SysV-2.07-397.el8.x86_64 perl-IPC-System-Simple-1.25-17.el8.noarch perl-JSON-PP-1:2.97.001-3.el8.noarch perl-Locale-Codes-3.57-1.el8.noarch perl-Locale-Maketext-1.28-396.el8.noarch perl-Locale-Maketext-Simple-1:0.21-416.el8.noarch perl-MIME-Base64-3.15-396.el8.x86_64 perl-MRO-Compat-0.13-4.el8.noarch perl-Math-BigInt-1:1.9998.11-7.el8.noarch perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64 perl-Math-BigRat-0.2614-1.el8.noarch perl-Math-Complex-1.59-416.el8.noarch perl-Memoize-1.03-416.el8.noarch perl-Module-Build-2:0.42.24-5.el8.noarch perl-Module-CoreList-1:5.20181130-1.el8.noarch perl-Module-CoreList-tools-1:5.20181130-1.el8.noarch perl-Module-Load-1:0.32-395.el8.noarch perl-Module-Load-Conditional-0.68-395.el8.noarch perl-Module-Loaded-1:0.08-416.el8.noarch perl-Module-Metadata-1.000033-395.el8.noarch perl-Mozilla-CA-20160104-7.el8.noarch perl-Net-Ping-2.55-416.el8.noarch perl-Net-SSLeay-1.88-1.el8.x86_64 perl-Package-Generator-1.106-11.el8.noarch perl-Params-Check-1:0.38-395.el8.noarch perl-Params-Util-1.07-22.el8.x86_64 perl-PathTools-3.74-1.el8.x86_64 perl-Perl-OSType-1.010-396.el8.noarch perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch perl-Pod-Checker-4:1.73-395.el8.noarch perl-Pod-Escapes-1:1.07-395.el8.noarch perl-Pod-Html-1.22.02-416.el8.noarch perl-Pod-Parser-1.63-396.el8.noarch perl-Pod-Perldoc-3.28-396.el8.noarch perl-Pod-Simple-1:3.35-395.el8.noarch perl-Pod-Usage-4:1.69-395.el8.noarch perl-Scalar-List-Utils-3:1.49-2.el8.x86_64 perl-SelfLoader-1.23-416.el8.noarch perl-Socket-4:2.027-3.el8.x86_64 perl-Software-License-0.103013-2.el8.noarch perl-Storable-1:3.11-3.el8.x86_64 perl-Sub-Exporter-0.987-15.el8.noarch perl-Sub-Install-0.928-14.el8.noarch perl-Sys-Syslog-0.35-397.el8.x86_64 perl-Term-ANSIColor-4.06-396.el8.noarch perl-Term-Cap-1.17-395.el8.noarch perl-TermReadKey-2.37-7.el8.x86_64 perl-Test-1.30-416.el8.noarch perl-Test-Harness-1:3.42-1.el8.noarch perl-Test-Simple-1:1.302135-1.el8.noarch perl-Text-Balanced-2.03-395.el8.noarch perl-Text-Diff-1.45-2.el8.noarch perl-Text-Glob-0.11-4.el8.noarch perl-Text-ParseWords-3.30-395.el8.noarch perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch perl-Text-Template-1.51-1.el8.noarch perl-Thread-Queue-3.13-1.el8.noarch perl-Time-HiRes-1.9758-1.el8.x86_64 perl-Time-Local-1:1.280-1.el8.noarch perl-Time-Piece-1.31-416.el8.x86_64 perl-URI-1.73-3.el8.noarch perl-Unicode-Collate-1.25-2.el8.x86_64 perl-Unicode-Normalize-1.25-396.el8.x86_64 perl-autodie-2.29-396.el8.noarch perl-bignum-0.49-2.el8.noarch perl-constant-1.33-396.el8.noarch perl-devel-4:5.26.3-416.el8.x86_64 perl-encoding-4:2.22-3.el8.x86_64 perl-experimental-0.019-2.el8.noarch perl-inc-latest-2:0.500-9.el8.noarch perl-interpreter-4:5.26.3-416.el8.x86_64 perl-libnet-3.11-3.el8.noarch perl-libnetcfg-4:5.26.3-416.el8.noarch perl-libs-4:5.26.3-416.el8.x86_64 perl-local-lib-2.000024-2.el8.noarch perl-macros-4:5.26.3-416.el8.x86_64 perl-open-1.11-416.el8.noarch perl-parent-1:0.237-1.el8.noarch perl-perlfaq-5.20180605-1.el8.noarch perl-podlators-4.11-1.el8.noarch perl-srpm-macros-1-25.el8.noarch perl-threads-1:2.21-2.el8.x86_64 perl-threads-shared-1.58-2.el8.x86_64 perl-utils-5.26.3-416.el8.noarch perl-version-6:0.99.24-1.el8.x86_64 pkgconf-1.4.2-1.el8.x86_64 pkgconf-m4-1.4.2-1.el8.noarch pkgconf-pkg-config-1.4.2-1.el8.x86_64 python-srpm-macros-3-38.el8.noarch python3-pyparsing-2.1.10-7.el8.noarch python3-rpm-macros-3-38.el8.noarch qt5-srpm-macros-5.12.5-3.el8.noarch redhat-rpm-config-122-1.el8.noarch rust-srpm-macros-5-2.el8.noarch systemtap-sdt-devel-4.2-6.el8.x86_64 unzip-6.0-43.el8.x86_64 zip-3.0-23.el8.x86_64 zlib-devel-1.2.11-13.el8.x86_64 Complete! Copy iso file C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso Mounting Virtualbox Guest Additions ISO to: /mnt mount: /mnt: WARNING: device write-protected, mounted read-only. Installing Virtualbox Guest Additions 6.1.10 - guest version is unknown Verifying archive integrity... All good. Uncompressing VirtualBox 6.1.10 Guest Additions for Linux........ VirtualBox Guest Additions installer Copying additional installer modules ... Installing additional modules ... VirtualBox Guest Additions: Starting. VirtualBox Guest Additions: Building the VirtualBox Guest Additions kernel modules. This may take a while. VirtualBox Guest Additions: To build modules for other installed kernels, run VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup
VirtualBox Guest Additions: or VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup all VirtualBox Guest Additions: Building the modules for kernel 4.18.0-193.6.3.el8_2.x86_64. Redirecting to /bin/systemctl start vboxadd.service Redirecting to /bin/systemctl start vboxadd-service.service Unmounting Virtualbox Guest Additions ISO from: /mnt ==> default: Checking for guest additions in VM... ==> default: Setting hostname... ==> default: Configuring and enabling network interfaces... ==> default: Mounting shared folders... default: /vagrant => C:/webfoobar It should boot without any errors. CentOS 8 Vagrant box is now ready and you can connect to it using SSH.