• 카테고리

    질문 & 답변
  • 세부 분야

    데브옵스 · 인프라

  • 해결 여부

    미해결

varant up 오류

22.10.05 19:19 작성 조회수 272

0

시작하자마자 이러한 오류가 뜨네요..

해결 방법을 알고싶습니다 ....

 

2.또 다른 문제점 입니다

답변 5

·

답변을 작성해보세요.

0

확인 고맙습니다.

에러 로그로 찾아보니 vbguest 자체의 버그이고 해결 방법은 두 가지가 있는 것 같습니다.

 

첫번째는 vbguest를 삭제.

vagrant plugin uninstall vagrant-vbguest

두번째는 Vagrantfile 을 문서편집기로 열어주시고 가장 상단에 다음 코드를 추가하고 실행

if defined?(VagrantVbguest)
  class MyWorkaroundInstallerUntilPR373IsMerged < VagrantVbguest::Installers::CentOS
    protected
    
    def has_rel_repo?
      unless instance_variable_defined?(:@has_rel_repo)
        rel = release_version
        @has_rel_repo = communicate.test(rockylinux_8? ? 'yum repolist' : "yum repolist --enablerepo=C#{rel}-base --enablerepo=C#{rel}-updates")
      end
      @has_rel_repo
    end

    def rockylinux_8?
      release_version && release_version.to_s.start_with?('8')
    end

    def install_kernel_devel(opts=nil, &block)
      if rockylinux_8?
        communicate.sudo('yum update -y kernel', opts, &block)
        communicate.sudo('yum install -y kernel-devel', opts, &block)
        communicate.sudo('shutdown -r now', opts, &block)

        begin
          sleep 10
        end until @vm.communicate.ready?
      else
        rel = has_rel_repo? ? release_version : '*'
        cmd = "yum install -y kernel-devel-`uname -r` --enablerepo=C#{rel}-base --enablerepo=C#{rel}-updates"
        communicate.sudo(cmd, opts, &block)
      end
    end
  end
end

 

가상머신을 다 삭제하신 후 두 가지 방법을 해보시고 안되면 다시 연락 부탁드려요.

gg yo님의 프로필

gg yo

2022.10.10

Error: Unknown repo: 'C*-base'

==> cent1: Checking for guest additions in VM...

cent1: No guest additions were detected on the base box for this VM! Guest

cent1: additions are required for forwarded ports, shared folders, host only

cent1: networking, and more. If SSH fails on this machine, please install

cent1: the guest additions and repackage the box to continue.

cent1:

cent1: This is not an error message; everything may continue to work properly,

cent1: in which case you may ignore this message.

The following SSH command responded with a non-zero exit status.

Vagrant assumes that this means the command failed!

yum install -y kernel-devel-`uname -r` --enablerepo=C*-base --enablerepo=C*-updates

Stdout from the command:

Stderr from the command:

Error: Unknown repo: 'C*-base'

 

저도 비슷한 에러가 나네요 말씀하신 방법으로 해보았는데도 안되네요

gg yo님 안녕하세요.

지난 주말동안 문제없이 동작하는 가상머신을 만들었습니다.

그로스쿨 담당자님께 부탁을 드려 수강하시는 분들이 가상머신 이미지를 다운받아 바로 사용하실 수 있게 할 예정입니다.

조금만 기다려주세요.

0

제가 동일한 오류를 재현하기 힘들어 검색으로 가장 비슷할 것 같은 솔루션을 찾아서 보내드릴 수 밖에 없는 점을 미리 사과드립니다.

보내주신 첫번째 컴퓨터의 네트워크 오류를 찾아봤는데요.

제어판 - 네트워크 및 인터넷 - 네트워크 연결에 들어가서 VirtualBox Host-Olny Ethernet Adapter 이름을 가진 이더넷을 마우스 우클릭하시고 사용 안함 을 선택하여 사용을 종료한 후 다시 마우스 우클릭해서 사용 을 선택해준 후에 다시 vagrant up을 실행해 주세요.

VirtualBox Host-Olny Ethernet Adapter라는 이름을 가진 이더넷이 여러개일 경우 전부 다 적용 하신 후에 vagrant up을 실행해주시면 될 것 같습니다.

또 에러가 발생하면 메세지 꼭 남겨주세요.

저도 처음에 공부할 때 이런저런 실습용 환경 만들다가 키보드를 집어던진 적이 한 두 번이 아니라 답답한 마음 정말 잘 이해합니다. 알면 1분도 안걸려서 해결할 수 있는 문제인데 대여섯시간 걸려서 아무리 찾아도 답이 안나오는 경우가 많거든요. 실습 환경이 완성 될때까지 서포트 하겠습니다. 잘 부탁드립니다!! (그랜절)

심준보님의 프로필

심준보

2022.10.07

네트워크 off / on 결과입니다

 

$ vagrant up

Bringing machine 'cent1' up with 'virtualbox' provider...

Bringing machine 'cent2' up with 'virtualbox' provider...

Bringing machine 'cent3' up with 'virtualbox' provider...

==> cent1: Cloning VM...

==> cent1: Matching MAC address for NAT networking...

==> cent1: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent1: Setting the name of the VM: cent1

==> cent1: Clearing any previously set network interfaces...

==> cent1: Preparing network interfaces based on configuration...

cent1: Adapter 1: nat

cent1: Adapter 2: hostonly

cent1: Adapter 3: hostonly

==> cent1: Forwarding ports...

cent1: 22 (guest) => 2222 (host) (adapter 1)

==> cent1: Running 'pre-boot' VM customizations...

==> cent1: Booting VM...

==> cent1: Waiting for machine to boot. This may take a few minutes...

cent1: SSH address: 127.0.0.1:2222

cent1: SSH username: vagrant

cent1: SSH auth method: private key

cent1:

cent1: Vagrant insecure key detected. Vagrant will automatically replace

cent1: this with a newly generated keypair for better security.

cent1:

cent1: Inserting generated public key within guest...

cent1: Removing insecure key from the guest if it's present...

cent1: Key inserted! Disconnecting and reconnecting using new SSH key...

==> cent1: Machine booted and ready!

[cent1] No Virtualbox Guest Additions installation found.

Last metadata expiration check: 0:00:01 ago on Fri 07 Oct 2022 04:58:53 AM UTC.

Package rocky-release-8.5-3.el8.noarch is already installed.

Dependencies resolved.

================================================================================

Package Architecture Version Repository Size

================================================================================

Upgrading:

rocky-release noarch 8.6-4.el8 baseos 21 k

rocky-repos noarch 8.6-4.el8 baseos 14 k

Transaction Summary

================================================================================

Upgrade 2 Packages

Total download size: 35 k

Downloading Packages:

(1/2): rocky-release-8.6-4.el8.noarch.rpm 452 kB/s | 21 kB 00:00

(2/2): rocky-repos-8.6-4.el8.noarch.rpm 296 kB/s | 14 kB 00:00

--------------------------------------------------------------------------------

Total 58 kB/s | 35 kB 00:00

Running transaction check

Transaction check succeeded.

Running transaction test

Transaction test succeeded.

Running transaction

Preparing : 1/1

Running scriptlet: rocky-repos-8.6-4.el8.noarch 1/1

Upgrading : rocky-repos-8.6-4.el8.noarch 1/4

Upgrading : rocky-release-8.6-4.el8.noarch 2/4

Cleanup : rocky-release-8.5-3.el8.noarch 3/4

Cleanup : rocky-repos-8.5-3.el8.noarch 4/4

Running scriptlet: rocky-repos-8.5-3.el8.noarch 4/4

Verifying : rocky-release-8.6-4.el8.noarch 1/4

Verifying : rocky-release-8.5-3.el8.noarch 2/4

Verifying : rocky-repos-8.6-4.el8.noarch 3/4

Verifying : rocky-repos-8.5-3.el8.noarch 4/4

Upgraded:

rocky-release-8.6-4.el8.noarch rocky-repos-8.6-4.el8.noarch

Complete!

Error: Unknown repo: 'C*-base'

==> cent1: Checking for guest additions in VM...

cent1: No guest additions were detected on the base box for this VM! Guest

cent1: additions are required for forwarded ports, shared folders, host only

cent1: networking, and more. If SSH fails on this machine, please install

cent1: the guest additions and repackage the box to continue.

cent1:

cent1: This is not an error message; everything may continue to work properly,

cent1: in which case you may ignore this message.

The following SSH command responded with a non-zero exit status.

Vagrant assumes that this means the command failed!

yum install -y kernel-devel-`uname -r` --enablerepo=C*-base --enablerepo=C*-updates

Stdout from the command:

Stderr from the command:

Error: Unknown repo: 'C*-base'

 

-님

지난 주말에 답변을 드리고 다시 문제가 발생할 것 같아 다른 방법을 찾아보았습니다.

윈도우 머신을 구해 문제없이 동작하는 가상머신을 만들었습니다.

그로스쿨 담당자님께 부탁을 드려 수강하시는 분들이 가상머신 이미지를 다운받아 바로 사용하실 수 있게 할 예정이니 조금만 기다려주세요.

 

0

혹시 다음 두 개의 버전을 확인해 주실 수 있을까요?

프로그램의 버전 정보는 다음과 같습니다. 

VirtualBOX 6.1.32

Vagrant 2.2.19

혹시 다르다면 가상머신과 virtualbox, vagrant를 전부 삭제하시고 동일한 버전으로 설치하신 후에 vagrant up을 해보셨으면 합니다.

버전에따라 코드의 문법이나 동작이 달라질 수 있어 에러가 발생할 수 있기 때문에 꼭 맞춰주셨으면 합니다.

심준보님의 프로필

심준보

2022.10.06

어제 말씀하신 대로 virbox 6.1.32 vagrant 2.2.19 조합으로 해보았지만 혹시 몰라서 다시 해본 결과를 말씀 드리겠습니다.

2대의 컴퓨터로 진행하였습니다.

VirtualBOX 6.1.32

Vagrant 2.2.19

1번째 컴퓨터 vagrant plugin 없이 실행

image

1번째 컴퓨터 vagrant plugin 0.30 설치 후 vagrant up 실행

image

1번째 컴퓨터 vagrant destroy 후 vagrant plugin 0.21 설치 후 vagrant up 실행

2번과 같은 문제가 발생함 네트워크 문제인가봄 어제와는 또 다른 문제 발생

$ vagrant up

Bringing machine 'cent1' up with 'virtualbox' provider...

Bringing machine 'cent2' up with 'virtualbox' provider...

Bringing machine 'cent3' up with 'virtualbox' provider...

==> cent1: Preparing master VM for linked clones...

cent1: This is a one time operation. Once the master VM is prepared,

cent1: it will be used as a base for linked clones, making the creation

cent1: of new VMs take milliseconds on a modern system.

==> cent1: Importing base box 'rockylinux/8'...

==> cent1: Cloning VM...

==> cent1: Matching MAC address for NAT networking...

==> cent1: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent1: Setting the name of the VM: cent1

==> cent1: Clearing any previously set network interfaces...

==> cent1: Preparing network interfaces based on configuration...

cent1: Adapter 1: nat

cent1: Adapter 2: hostonly

cent1: Adapter 3: hostonly

==> cent1: Forwarding ports...

cent1: 22 (guest) => 2222 (host) (adapter 1)

==> cent1: Running 'pre-boot' VM customizations...

==> cent1: Booting VM...

There was an error while executing VBoxManage, a CLI used by Vagrant

for controlling VirtualBox. The command and stderr is shown below.

Command: ["startvm", "bec40156-094d-49f8-a52d-1dd6b2958d9e", "--type", "headless"]

Stderr: VBoxManage.exe: error: Failed to open/create the internal network 'HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter #3' (VERR_INTNET_FLT_IF_NOT_FOUND).

VBoxManage.exe: error: Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND)

VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component ConsoleWrap, interface IConsole

 

 

2번째 컴퓨터에서 실행 1번과 같은 버전으로 실행

 

2번째 컴퓨터 vagrant plugin 없이 실행

=1번째 컴퓨터 1번과 동일한 결과

 

 

 2번째 컴퓨터 plugin 0.30 으로 실행 

$ vagrant up

Bringing machine 'cent1' up with 'virtualbox' provider...

Bringing machine 'cent2' up with 'virtualbox' provider...

Bringing machine 'cent3' up with 'virtualbox' provider...

==> cent1: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent1: Running provisioner: file...

cent1: . => /tmp/vagrant

==> cent1: Running provisioner: shell...

cent1: Running: inline script

cent1: Last metadata expiration check: 0:01:50 ago on Thu 06 Oct 2022 04:05:48 AM UTC.

cent1: Package yum-utils-4.0.21-4.el8_5.noarch is already installed.

cent1: Dependencies resolved.

cent1: ================================================================================

cent1: Package Arch Version Repository Size

cent1: ================================================================================

cent1: Upgrading:

cent1: dnf noarch 4.7.0-8.el8 baseos 540 k

cent1: dnf-data noarch 4.7.0-8.el8 baseos 154 k

cent1: dnf-plugins-core noarch 4.0.21-11.el8 baseos 70 k

cent1: json-c x86_64 0.13.1-3.el8 baseos 40 k

cent1: libdnf x86_64 0.63.0-8.2.el8_6 baseos 705 k

cent1: python3-dnf noarch 4.7.0-8.el8 baseos 544 k

cent1: python3-dnf-plugins-core noarch 4.0.21-11.el8 baseos 239 k

cent1: python3-hawkey x86_64 0.63.0-8.2.el8_6 baseos 116 k

cent1: python3-libdnf x86_64 0.63.0-8.2.el8_6 baseos 777 k

cent1: yum noarch 4.7.0-8.el8 baseos 205 k

cent1: yum-utils noarch 4.0.21-11.el8 baseos 72 k

cent1:

cent1: Transaction Summary

cent1: ================================================================================

cent1: Upgrade 11 Packages

cent1:

cent1: Total download size: 3.4 M

cent1: Downloading Packages:

cent1: (1/11): dnf-plugins-core-4.0.21-11.el8.noarch.r 554 kB/s | 70 kB 00:00

cent1: (2/11): dnf-data-4.7.0-8.el8.noarch.rpm 820 kB/s | 154 kB 00:00

cent1: (3/11): json-c-0.13.1-3.el8.x86_64.rpm 628 kB/s | 40 kB 00:00

cent1: (4/11): dnf-4.7.0-8.el8.noarch.rpm 1.1 MB/s | 540 kB 00:00

cent1: (5/11): python3-dnf-4.7.0-8.el8.noarch.rpm 1.2 MB/s | 544 kB 00:00

cent1: (6/11): libdnf-0.63.0-8.2.el8_6.x86_64.rpm 1.3 MB/s | 705 kB 00:00

cent1: (7/11): python3-dnf-plugins-core-4.0.21-11.el8. 1.0 MB/s | 239 kB 00:00

cent1: (8/11): python3-hawkey-0.63.0-8.2.el8_6.x86_64. 948 kB/s | 116 kB 00:00

cent1: (9/11): yum-utils-4.0.21-11.el8.noarch.rpm 366 kB/s | 72 kB 00:00

cent1: (10/11): yum-4.7.0-8.el8.noarch.rpm 685 kB/s | 205 kB 00:00

cent1: (11/11): python3-libdnf-0.63.0-8.2.el8_6.x86_64 1.0 MB/s | 777 kB 00:00

cent1: --------------------------------------------------------------------------------

cent1: Total 881 kB/s | 3.4 MB 00:03

cent1: Running transaction check

cent1: Transaction check succeeded.

cent1: Running transaction test

cent1: Transaction test succeeded.

cent1: Running transaction

cent1: Preparing : 1/1

cent1: Running scriptlet: json-c-0.13.1-3.el8.x86_64 1/1

cent1: Upgrading : json-c-0.13.1-3.el8.x86_64 1/22

cent1: Upgrading : libdnf-0.63.0-8.2.el8_6.x86_64 2/22

cent1: Upgrading : python3-libdnf-0.63.0-8.2.el8_6.x86_64 3/22

cent1: Upgrading : python3-hawkey-0.63.0-8.2.el8_6.x86_64 4/22

cent1: Upgrading : dnf-data-4.7.0-8.el8.noarch 5/22

cent1: Upgrading : python3-dnf-4.7.0-8.el8.noarch 6/22

cent1: Upgrading : dnf-4.7.0-8.el8.noarch 7/22

cent1: Running scriptlet: dnf-4.7.0-8.el8.noarch 7/22

cent1: Upgrading : python3-dnf-plugins-core-4.0.21-11.el8.noarch 8/22

cent1: Upgrading : dnf-plugins-core-4.0.21-11.el8.noarch 9/22

cent1: Upgrading : yum-utils-4.0.21-11.el8.noarch 10/22

cent1: Upgrading : yum-4.7.0-8.el8.noarch 11/22

cent1: Cleanup : yum-utils-4.0.21-4.el8_5.noarch 12/22

cent1: Cleanup : dnf-plugins-core-4.0.21-4.el8_5.noarch 13/22

cent1: Cleanup : python3-dnf-plugins-core-4.0.21-4.el8_5.noarch 14/22

cent1: Cleanup : yum-4.7.0-4.el8.noarch 15/22

cent1: Running scriptlet: dnf-4.7.0-4.el8.noarch 16/22

cent1: Cleanup : dnf-4.7.0-4.el8.noarch 16/22

cent1: Running scriptlet: dnf-4.7.0-4.el8.noarch 16/22

cent1: Cleanup : python3-dnf-4.7.0-4.el8.noarch 17/22

cent1: Cleanup : python3-hawkey-0.63.0-3.el8.x86_64 18/22

cent1: Cleanup : dnf-data-4.7.0-4.el8.noarch 19/22

cent1: Cleanup : python3-libdnf-0.63.0-3.el8.x86_64 20/22

cent1: Cleanup : libdnf-0.63.0-3.el8.x86_64 21/22

cent1: Cleanup : json-c-0.13.1-2.el8.x86_64 22/22

cent1: Running scriptlet: json-c-0.13.1-2.el8.x86_64 22/22

cent1: Verifying : dnf-4.7.0-8.el8.noarch 1/22

cent1: Verifying : dnf-4.7.0-4.el8.noarch 2/22

cent1: Verifying : dnf-data-4.7.0-8.el8.noarch 3/22

cent1: Verifying : dnf-data-4.7.0-4.el8.noarch 4/22

cent1: Verifying : dnf-plugins-core-4.0.21-11.el8.noarch 5/22

cent1: Verifying : dnf-plugins-core-4.0.21-4.el8_5.noarch 6/22

cent1: Verifying : json-c-0.13.1-3.el8.x86_64 7/22

cent1: Verifying : json-c-0.13.1-2.el8.x86_64 8/22

cent1: Verifying : libdnf-0.63.0-8.2.el8_6.x86_64 9/22

cent1: Verifying : libdnf-0.63.0-3.el8.x86_64 10/22

cent1: Verifying : python3-dnf-4.7.0-8.el8.noarch 11/22

cent1: Verifying : python3-dnf-4.7.0-4.el8.noarch 12/22

cent1: Verifying : python3-dnf-plugins-core-4.0.21-11.el8.noarch 13/22

cent1: Verifying : python3-dnf-plugins-core-4.0.21-4.el8_5.noarch 14/22

cent1: Verifying : python3-hawkey-0.63.0-8.2.el8_6.x86_64 15/22

cent1: Verifying : python3-hawkey-0.63.0-3.el8.x86_64 16/22

cent1: Verifying : python3-libdnf-0.63.0-8.2.el8_6.x86_64 17/22

cent1: Verifying : python3-libdnf-0.63.0-3.el8.x86_64 18/22

cent1: Verifying : yum-4.7.0-8.el8.noarch 19/22

cent1: Verifying : yum-4.7.0-4.el8.noarch 20/22

cent1: Verifying : yum-utils-4.0.21-11.el8.noarch 21/22

cent1: Verifying : yum-utils-4.0.21-4.el8_5.noarch 22/22

cent1:

cent1: Upgraded:

cent1: dnf-4.7.0-8.el8.noarch

cent1: dnf-data-4.7.0-8.el8.noarch

cent1: dnf-plugins-core-4.0.21-11.el8.noarch

cent1: json-c-0.13.1-3.el8.x86_64

cent1: libdnf-0.63.0-8.2.el8_6.x86_64

cent1: python3-dnf-4.7.0-8.el8.noarch

cent1: python3-dnf-plugins-core-4.0.21-11.el8.noarch

cent1: python3-hawkey-0.63.0-8.2.el8_6.x86_64

cent1: python3-libdnf-0.63.0-8.2.el8_6.x86_64

cent1: yum-4.7.0-8.el8.noarch

cent1: yum-utils-4.0.21-11.el8.noarch

cent1:

cent1: Complete!

cent1: Last metadata expiration check: 0:01:56 ago on Thu 06 Oct 2022 04:05:48 AM UTC.

cent1: Package tar-2:1.30-5.el8.x86_64 is already installed.

cent1: Dependencies resolved.

cent1: =========================================================================================

cent1: Package Arch Version Repo Size

cent1: =========================================================================================

cent1: Installing:

cent1: binutils x86_64 2.30-113.el8 baseos 5.8 M

cent1: dialog x86_64 1.3-13.20171209.el8 appstream 232 k

cent1: epel-release noarch 8-17.el8 extras 24 k

cent1: git x86_64 2.31.1-2.el8 appstream 160 k

cent1: nano x86_64 2.9.8-1.el8 baseos 579 k

cent1: net-tools x86_64 2.0-0.52.20160912git.el8 baseos 321 k

cent1: psmisc x86_64 23.1-5.el8 baseos 150 k

cent1: sysstat x86_64 11.7.3-7.el8 appstream 424 k

cent1: vim-enhanced x86_64 2:8.0.1763-19.el8_6.4 appstream 1.4 M

cent1: wget x86_64 1.19.5-10.el8 appstream 733 k

cent1: Installing dependencies:

cent1: emacs-filesystem noarch 1:26.1-7.el8 baseos 69 k

cent1: git-core x86_64 2.31.1-2.el8 appstream 4.7 M

cent1: git-core-doc noarch 2.31.1-2.el8 appstream 2.6 M

cent1: gpm-libs x86_64 1.20.7-17.el8 appstream 38 k

cent1: libmetalink x86_64 0.1.3-7.el8 baseos 31 k

cent1: lm_sensors-libs x86_64 3.4.0-23.20180522git70f7e08.el8 baseos 58 k

cent1: perl-Carp noarch 1.42-396.el8 baseos 29 k

cent1: perl-Data-Dumper x86_64 2.167-399.el8 baseos 57 k

cent1: perl-Digest noarch 1.17-395.el8 appstream 26 k

cent1: perl-Digest-MD5 x86_64 2.55-396.el8 appstream 36 k

cent1: perl-Encode x86_64 4:2.97-3.el8 baseos 1.5 M

cent1: perl-Errno x86_64 1.28-421.el8 baseos 75 k

cent1: perl-Error noarch 1:0.17025-2.el8 appstream 45 k

cent1: perl-Exporter noarch 5.72-396.el8 baseos 33 k

cent1: perl-File-Path noarch 2.15-2.el8 baseos 37 k

cent1: perl-File-Temp noarch 0.230.600-1.el8 baseos 62 k

cent1: perl-Getopt-Long noarch 1:2.50-4.el8 baseos 62 k

cent1: perl-Git noarch 2.31.1-2.el8 appstream 77 k

cent1: perl-HTTP-Tiny noarch 0.074-1.el8 baseos 57 k

cent1: perl-IO x86_64 1.38-421.el8 baseos 141 k

cent1: perl-MIME-Base64 x86_64 3.15-396.el8 baseos 30 k

cent1: perl-Net-SSLeay x86_64 1.88-2.module+el8.6.0+957+15d660ad appstream 378 k

cent1: perl-PathTools x86_64 3.74-1.el8 baseos 89 k

cent1: perl-Pod-Escapes noarch 1:1.07-395.el8 baseos 19 k

cent1: perl-Pod-Perldoc noarch 3.28-396.el8 baseos 85 k

cent1: perl-Pod-Simple noarch 1:3.35-395.el8 baseos 212 k

cent1: perl-Pod-Usage noarch 4:1.69-395.el8 baseos 33 k

cent1: perl-Scalar-List-Utils x86_64 3:1.49-2.el8 baseos 67 k

cent1: perl-Socket x86_64 4:2.027-3.el8 baseos 58 k

cent1: perl-Storable x86_64 1:3.11-3.el8 baseos 97 k

cent1: perl-Term-ANSIColor noarch 4.06-396.el8 baseos 45 k

cent1: perl-Term-Cap noarch 1.17-395.el8 baseos 22 k

cent1: perl-TermReadKey x86_64 2.37-7.el8 appstream 39 k

cent1: perl-Text-ParseWords noarch 3.30-395.el8 baseos 17 k

cent1: perl-Text-Tabs+Wrap noarch 2013.0523-395.el8 baseos 23 k

cent1: perl-Time-Local noarch 1:1.280-1.el8 baseos 32 k

cent1: perl-URI noarch 1.73-3.el8 appstream 115 k

cent1: perl-Unicode-Normalize x86_64 1.25-396.el8 baseos 81 k

cent1: perl-constant noarch 1.33-396.el8 baseos 24 k

cent1: perl-interpreter x86_64 4:5.26.3-421.el8 baseos 6.3 M

cent1: perl-libnet noarch 3.11-3.el8 appstream 120 k

cent1: perl-libs x86_64 4:5.26.3-421.el8 baseos 1.6 M

cent1: perl-macros x86_64 4:5.26.3-421.el8 baseos 71 k

cent1: perl-parent noarch 1:0.237-1.el8 baseos 19 k

cent1: perl-podlators noarch 4.11-1.el8 baseos 117 k

cent1: perl-threads x86_64 1:2.21-2.el8 baseos 60 k

cent1: perl-threads-shared x86_64 1.58-2.el8 baseos 47 k

cent1: vim-common x86_64 2:8.0.1763-19.el8_6.4 appstream 6.3 M

cent1: vim-filesystem noarch 2:8.0.1763-19.el8_6.4 appstream 49 k

cent1: Installing weak dependencies:

cent1: perl-IO-Socket-IP noarch 0.39-5.el8 appstream 46 k

cent1: perl-IO-Socket-SSL noarch 2.066-4.module+el8.6.0+957+15d660ad appstream 297 k

cent1: perl-Mozilla-CA noarch 20160104-7.module+el8.6.0+965+850557f9 appstream 14 k

cent1:

cent1: Transaction Summary

cent1: =========================================================================================

cent1: Install 62 Packages

cent1:

cent1: Total download size: 36 M

cent1: Installed size: 135 M

cent1: Downloading Packages:

cent1: (1/62): git-2.31.1-2.el8.x86_64.rpm 490 kB/s | 160 kB 00:00

cent1: (2/62): dialog-1.3-13.20171209.el8.x86_64.rpm 652 kB/s | 232 kB 00:00

cent1: (3/62): gpm-libs-1.20.7-17.el8.x86_64.rpm 196 kB/s | 38 kB 00:00

cent1: (4/62): perl-Digest-1.17-395.el8.noarch.rpm 206 kB/s | 26 kB 00:00

cent1: (5/62): perl-Digest-MD5-2.55-396.el8.x86_64.rpm 709 kB/s | 36 kB 00:00

cent1: (6/62): perl-Error-0.17025-2.el8.noarch.rpm 435 kB/s | 45 kB 00:00

cent1: (7/62): perl-Git-2.31.1-2.el8.noarch.rpm 334 kB/s | 77 kB 00:00

cent1: (8/62): perl-IO-Socket-IP-0.39-5.el8.noarch.rpm 333 kB/s | 46 kB 00:00

cent1: (9/62): perl-IO-Socket-SSL-2.066-4.module+el8.6 796 kB/s | 297 kB 00:00

cent1: (10/62): perl-Mozilla-CA-20160104-7.module+el8. 225 kB/s | 14 kB 00:00

cent1: (11/62): perl-Net-SSLeay-1.88-2.module+el8.6.0+ 896 kB/s | 378 kB 00:00

cent1: (12/62): perl-TermReadKey-2.37-7.el8.x86_64.rpm 372 kB/s | 39 kB 00:00

cent1: (13/62): perl-URI-1.73-3.el8.noarch.rpm 945 kB/s | 115 kB 00:00

cent1: (14/62): perl-libnet-3.11-3.el8.noarch.rpm 636 kB/s | 120 kB 00:00

cent1: (15/62): sysstat-11.7.3-7.el8.x86_64.rpm 827 kB/s | 424 kB 00:00

cent1: (16/62): git-core-doc-2.31.1-2.el8.noarch.rpm 790 kB/s | 2.6 MB 00:03

cent1: (17/62): vim-enhanced-8.0.1763-19.el8_6.4.x86_6 838 kB/s | 1.4 MB 00:01

cent1: (18/62): vim-filesystem-8.0.1763-19.el8_6.4.noa 1.0 MB/s | 49 kB 00:00

cent1: (19/62): wget-1.19.5-10.el8.x86_64.rpm 746 kB/s | 733 kB 00:00

cent1: (20/62): git-core-2.31.1-2.el8.x86_64.rpm 635 kB/s | 4.7 MB 00:07

cent1: (21/62): emacs-filesystem-26.1-7.el8.noarch.rpm 346 kB/s | 69 kB 00:00

cent1: (22/62): libmetalink-0.1.3-7.el8.x86_64.rpm 218 kB/s | 31 kB 00:00

cent1: (23/62): lm_sensors-libs-3.4.0-23.20180522git70 303 kB/s | 58 kB 00:00

cent1: (24/62): vim-common-8.0.1763-19.el8_6.4.x86_64. 1.1 MB/s | 6.3 MB 00:05

cent1: (25/62): net-tools-2.0-0.52.20160912git.el8.x86 1.0 MB/s | 321 kB 00:00

cent1: (26/62): nano-2.9.8-1.el8.x86_64.rpm 529 kB/s | 579 kB 00:01

cent1: (27/62): perl-Carp-1.42-396.el8.noarch.rpm 212 kB/s | 29 kB 00:00

cent1: (28/62): perl-Data-Dumper-2.167-399.el8.x86_64. 299 kB/s | 57 kB 00:00

cent1: (29/62): perl-Errno-1.28-421.el8.x86_64.rpm 578 kB/s | 75 kB 00:00

cent1: (30/62): perl-Exporter-5.72-396.el8.noarch.rpm 381 kB/s | 33 kB 00:00

cent1: (31/62): perl-File-Path-2.15-2.el8.noarch.rpm 498 kB/s | 37 kB 00:00

cent1: (32/62): perl-File-Temp-0.230.600-1.el8.noarch. 402 kB/s | 62 kB 00:00

cent1: (33/62): perl-Getopt-Long-2.50-4.el8.noarch.rpm 299 kB/s | 62 kB 00:00

cent1: (34/62): perl-HTTP-Tiny-0.074-1.el8.noarch.rpm 318 kB/s | 57 kB 00:00

cent1: (35/62): perl-IO-1.38-421.el8.x86_64.rpm 548 kB/s | 141 kB 00:00

cent1: (36/62): perl-MIME-Base64-3.15-396.el8.x86_64.r 208 kB/s | 30 kB 00:00

cent1: (37/62): perl-Encode-2.97-3.el8.x86_64.rpm 1.1 MB/s | 1.5 MB 00:01

cent1: (38/62): perl-Pod-Escapes-1.07-395.el8.noarch.r 127 kB/s | 19 kB 00:00

cent1: (39/62): perl-PathTools-3.74-1.el8.x86_64.rpm 293 kB/s | 89 kB 00:00

cent1: (40/62): perl-Pod-Perldoc-3.28-396.el8.noarch.r 553 kB/s | 85 kB 00:00

cent1: (41/62): perl-Pod-Usage-1.69-395.el8.noarch.rpm 303 kB/s | 33 kB 00:00

cent1: (42/62): perl-Scalar-List-Utils-1.49-2.el8.x86_ 465 kB/s | 67 kB 00:00

cent1: (43/62): perl-Pod-Simple-3.35-395.el8.noarch.rp 502 kB/s | 212 kB 00:00

cent1: (44/62): perl-Socket-2.027-3.el8.x86_64.rpm 431 kB/s | 58 kB 00:00

cent1: (45/62): perl-Term-ANSIColor-4.06-396.el8.noarc 397 kB/s | 45 kB 00:00

cent1: (46/62): perl-Storable-3.11-3.el8.x86_64.rpm 401 kB/s | 97 kB 00:00

cent1: (47/62): perl-Term-Cap-1.17-395.el8.noarch.rpm 205 kB/s | 22 kB 00:00

cent1: (48/62): perl-Text-ParseWords-3.30-395.el8.noar 325 kB/s | 17 kB 00:00

cent1: (49/62): perl-Text-Tabs+Wrap-2013.0523-395.el8. 368 kB/s | 23 kB 00:00

cent1: (50/62): perl-Time-Local-1.280-1.el8.noarch.rpm 358 kB/s | 32 kB 00:00

cent1: (51/62): perl-constant-1.33-396.el8.noarch.rpm 483 kB/s | 24 kB 00:00

cent1: (52/62): perl-Unicode-Normalize-1.25-396.el8.x8 579 kB/s | 81 kB 00:00

cent1: (53/62): binutils-2.30-113.el8.x86_64.rpm 787 kB/s | 5.8 MB 00:07

cent1: (54/62): perl-macros-5.26.3-421.el8.x86_64.rpm 479 kB/s | 71 kB 00:00

cent1: (55/62): perl-parent-0.237-1.el8.noarch.rpm 722 kB/s | 19 kB 00:00

cent1: (56/62): perl-podlators-4.11-1.el8.noarch.rpm 664 kB/s | 117 kB 00:00

cent1: (57/62): perl-threads-2.21-2.el8.x86_64.rpm 255 kB/s | 60 kB 00:00

cent1: (58/62): perl-threads-shared-1.58-2.el8.x86_64. 67 kB/s | 47 kB 00:00

cent1: (59/62): perl-libs-5.26.3-421.el8.x86_64.rpm 437 kB/s | 1.6 MB 00:03

cent1: (60/62): psmisc-23.1-5.el8.x86_64.rpm 620 kB/s | 150 kB 00:00

cent1: (61/62): epel-release-8-17.el8.noarch.rpm 408 kB/s | 24 kB 00:00

cent1: (62/62): perl-interpreter-5.26.3-421.el8.x86_64 966 kB/s | 6.3 MB 00:06

cent1: --------------------------------------------------------------------------------

cent1: Total 1.6 MB/s | 36 MB 00:22

cent1: Running transaction check

cent1: Transaction check succeeded.

cent1: Running transaction test

cent1: Transaction test succeeded.

cent1: Running transaction

cent1: Preparing : 1/1

cent1: Installing : git-core-2.31.1-2.el8.x86_64 1/62

cent1: Installing : git-core-doc-2.31.1-2.el8.noarch 2/62

cent1: Installing : perl-Digest-1.17-395.el8.noarch 3/62

cent1: Installing : perl-Digest-MD5-2.55-396.el8.x86_64 4/62

cent1: Installing : perl-Data-Dumper-2.167-399.el8.x86_64 5/62

cent1: Installing : perl-libnet-3.11-3.el8.noarch 6/62

cent1: Installing : perl-Net-SSLeay-1.88-2.module+el8.6.0+957+15d660ad 7/62

cent1: Installing : perl-URI-1.73-3.el8.noarch 8/62

cent1: Installing : perl-Pod-Escapes-1:1.07-395.el8.noarch 9/62

cent1: Installing : perl-Mozilla-CA-20160104-7.module+el8.6.0+965+8505 10/62

cent1: Installing : perl-IO-Socket-IP-0.39-5.el8.noarch 11/62

cent1: Installing : perl-Time-Local-1:1.280-1.el8.noarch 12/62

cent1: Installing : perl-IO-Socket-SSL-2.066-4.module+el8.6.0+957+15d6 13/62

cent1: Installing : perl-Term-ANSIColor-4.06-396.el8.noarch 14/62

cent1: Installing : perl-Term-Cap-1.17-395.el8.noarch 15/62

cent1: Installing : perl-File-Temp-0.230.600-1.el8.noarch 16/62

cent1: Installing : perl-Pod-Simple-1:3.35-395.el8.noarch 17/62

cent1: Installing : perl-HTTP-Tiny-0.074-1.el8.noarch 18/62

cent1: Installing : perl-podlators-4.11-1.el8.noarch 19/62

cent1: Installing : perl-Pod-Perldoc-3.28-396.el8.noarch 20/62

cent1: Installing : perl-Text-ParseWords-3.30-395.el8.noarch 21/62

cent1: Installing : perl-Pod-Usage-4:1.69-395.el8.noarch 22/62

cent1: Installing : perl-MIME-Base64-3.15-396.el8.x86_64 23/62

cent1: Installing : perl-Storable-1:3.11-3.el8.x86_64 24/62

cent1: Installing : perl-Getopt-Long-1:2.50-4.el8.noarch 25/62

cent1: Installing : perl-Errno-1.28-421.el8.x86_64 26/62

cent1: Installing : perl-Socket-4:2.027-3.el8.x86_64 27/62

cent1: Installing : perl-Encode-4:2.97-3.el8.x86_64 28/62

cent1: Installing : perl-Carp-1.42-396.el8.noarch 29/62

cent1: Installing : perl-Exporter-5.72-396.el8.noarch 30/62

cent1: Installing : perl-libs-4:5.26.3-421.el8.x86_64 31/62

cent1: Installing : perl-Scalar-List-Utils-3:1.49-2.el8.x86_64 32/62

cent1: Installing : perl-parent-1:0.237-1.el8.noarch 33/62

cent1: Installing : perl-macros-4:5.26.3-421.el8.x86_64 34/62

cent1: Installing : perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch 35/62

cent1: Installing : perl-Unicode-Normalize-1.25-396.el8.x86_64 36/62

cent1: Installing : perl-File-Path-2.15-2.el8.noarch 37/62

cent1: Installing : perl-IO-1.38-421.el8.x86_64 38/62

cent1: Installing : perl-PathTools-3.74-1.el8.x86_64 39/62

cent1: Installing : perl-constant-1.33-396.el8.noarch 40/62

cent1: Installing : perl-threads-1:2.21-2.el8.x86_64 41/62

cent1: Installing : perl-threads-shared-1.58-2.el8.x86_64 42/62

cent1: Installing : perl-interpreter-4:5.26.3-421.el8.x86_64 43/62

cent1: Installing : perl-Error-1:0.17025-2.el8.noarch 44/62

cent1: Installing : perl-TermReadKey-2.37-7.el8.x86_64 45/62

cent1: Installing : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 46/62

cent1: Running scriptlet: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 46/62

cent1: Installing : libmetalink-0.1.3-7.el8.x86_64 47/62

cent1: Installing : emacs-filesystem-1:26.1-7.el8.noarch 48/62

cent1: Installing : perl-Git-2.31.1-2.el8.noarch 49/62

cent1: Installing : git-2.31.1-2.el8.x86_64 50/62

cent1: Installing : vim-filesystem-2:8.0.1763-19.el8_6.4.noarch 51/62

cent1: Installing : vim-common-2:8.0.1763-19.el8_6.4.x86_64 52/62

cent1: Installing : gpm-libs-1.20.7-17.el8.x86_64 53/62

cent1: Running scriptlet: gpm-libs-1.20.7-17.el8.x86_64 53/62

cent1: Installing : vim-enhanced-2:8.0.1763-19.el8_6.4.x86_64 54/62

cent1: Installing : wget-1.19.5-10.el8.x86_64 55/62

cent1: Running scriptlet: wget-1.19.5-10.el8.x86_64 55/62

cent1: Installing : sysstat-11.7.3-7.el8.x86_64 56/62

cent1: Running scriptlet: sysstat-11.7.3-7.el8.x86_64 56/62

cent1: Installing : epel-release-8-17.el8.noarch 57/62

cent1: Running scriptlet: epel-release-8-17.el8.noarch 57/62

cent1: Many EPEL packages require the CodeReady Builder (CRB) repository.

cent1: It is recommended that you run /usr/bin/crb enable to enable the CRB repository.

cent1:

cent1: Installing : psmisc-23.1-5.el8.x86_64 58/62

cent1: Installing : net-tools-2.0-0.52.20160912git.el8.x86_64 59/62

cent1: Running scriptlet: net-tools-2.0-0.52.20160912git.el8.x86_64 59/62

cent1: Installing : nano-2.9.8-1.el8.x86_64 60/62

cent1: Running scriptlet: nano-2.9.8-1.el8.x86_64 60/62

cent1: Installing : binutils-2.30-113.el8.x86_64 61/62

cent1: Running scriptlet: binutils-2.30-113.el8.x86_64 61/62

cent1: Installing : dialog-1.3-13.20171209.el8.x86_64 62/62

cent1: Running scriptlet: dialog-1.3-13.20171209.el8.x86_64 62/62

cent1: Running scriptlet: vim-common-2:8.0.1763-19.el8_6.4.x86_64 62/62

cent1: Verifying : dialog-1.3-13.20171209.el8.x86_64 1/62

cent1: Verifying : git-2.31.1-2.el8.x86_64 2/62

cent1: Verifying : git-core-2.31.1-2.el8.x86_64 3/62

cent1: Verifying : git-core-doc-2.31.1-2.el8.noarch 4/62

cent1: Verifying : gpm-libs-1.20.7-17.el8.x86_64 5/62

cent1: Verifying : perl-Digest-1.17-395.el8.noarch 6/62

cent1: Verifying : perl-Digest-MD5-2.55-396.el8.x86_64 7/62

cent1: Verifying : perl-Error-1:0.17025-2.el8.noarch 8/62

cent1: Verifying : perl-Git-2.31.1-2.el8.noarch 9/62

cent1: Verifying : perl-IO-Socket-IP-0.39-5.el8.noarch 10/62

cent1: Verifying : perl-IO-Socket-SSL-2.066-4.module+el8.6.0+957+15d6 11/62

cent1: Verifying : perl-Mozilla-CA-20160104-7.module+el8.6.0+965+8505 12/62

cent1: Verifying : perl-Net-SSLeay-1.88-2.module+el8.6.0+957+15d660ad 13/62

cent1: Verifying : perl-TermReadKey-2.37-7.el8.x86_64 14/62

cent1: Verifying : perl-URI-1.73-3.el8.noarch 15/62

cent1: Verifying : perl-libnet-3.11-3.el8.noarch 16/62

cent1: Verifying : sysstat-11.7.3-7.el8.x86_64 17/62

cent1: Verifying : vim-common-2:8.0.1763-19.el8_6.4.x86_64 18/62

cent1: Verifying : vim-enhanced-2:8.0.1763-19.el8_6.4.x86_64 19/62

cent1: Verifying : vim-filesystem-2:8.0.1763-19.el8_6.4.noarch 20/62

cent1: Verifying : wget-1.19.5-10.el8.x86_64 21/62

cent1: Verifying : binutils-2.30-113.el8.x86_64 22/62

cent1: Verifying : emacs-filesystem-1:26.1-7.el8.noarch 23/62

cent1: Verifying : libmetalink-0.1.3-7.el8.x86_64 24/62

cent1: Verifying : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8 25/62

cent1: Verifying : nano-2.9.8-1.el8.x86_64 26/62

cent1: Verifying : net-tools-2.0-0.52.20160912git.el8.x86_64 27/62

cent1: Verifying : perl-Carp-1.42-396.el8.noarch 28/62

cent1: Verifying : perl-Data-Dumper-2.167-399.el8.x86_64 29/62

cent1: Verifying : perl-Encode-4:2.97-3.el8.x86_64 30/62

cent1: Verifying : perl-Errno-1.28-421.el8.x86_64 31/62

cent1: Verifying : perl-Exporter-5.72-396.el8.noarch 32/62

cent1: Verifying : perl-File-Path-2.15-2.el8.noarch 33/62

cent1: Verifying : perl-File-Temp-0.230.600-1.el8.noarch 34/62

cent1: Verifying : perl-Getopt-Long-1:2.50-4.el8.noarch 35/62

cent1: Verifying : perl-HTTP-Tiny-0.074-1.el8.noarch 36/62

cent1: Verifying : perl-IO-1.38-421.el8.x86_64 37/62

cent1: Verifying : perl-MIME-Base64-3.15-396.el8.x86_64 38/62

cent1: Verifying : perl-PathTools-3.74-1.el8.x86_64 39/62

cent1: Verifying : perl-Pod-Escapes-1:1.07-395.el8.noarch 40/62

cent1: Verifying : perl-Pod-Perldoc-3.28-396.el8.noarch 41/62

cent1: Verifying : perl-Pod-Simple-1:3.35-395.el8.noarch 42/62

cent1: Verifying : perl-Pod-Usage-4:1.69-395.el8.noarch 43/62

cent1: Verifying : perl-Scalar-List-Utils-3:1.49-2.el8.x86_64 44/62

cent1: Verifying : perl-Socket-4:2.027-3.el8.x86_64 45/62

cent1: Verifying : perl-Storable-1:3.11-3.el8.x86_64 46/62

cent1: Verifying : perl-Term-ANSIColor-4.06-396.el8.noarch 47/62

cent1: Verifying : perl-Term-Cap-1.17-395.el8.noarch 48/62

cent1: Verifying : perl-Text-ParseWords-3.30-395.el8.noarch 49/62

cent1: Verifying : perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch 50/62

cent1: Verifying : perl-Time-Local-1:1.280-1.el8.noarch 51/62

cent1: Verifying : perl-Unicode-Normalize-1.25-396.el8.x86_64 52/62

cent1: Verifying : perl-constant-1.33-396.el8.noarch 53/62

cent1: Verifying : perl-interpreter-4:5.26.3-421.el8.x86_64 54/62

cent1: Verifying : perl-libs-4:5.26.3-421.el8.x86_64 55/62

cent1: Verifying : perl-macros-4:5.26.3-421.el8.x86_64 56/62

cent1: Verifying : perl-parent-1:0.237-1.el8.noarch 57/62

cent1: Verifying : perl-podlators-4.11-1.el8.noarch 58/62

cent1: Verifying : perl-threads-1:2.21-2.el8.x86_64 59/62

cent1: Verifying : perl-threads-shared-1.58-2.el8.x86_64 60/62

cent1: Verifying : psmisc-23.1-5.el8.x86_64 61/62

cent1: Verifying : epel-release-8-17.el8.noarch 62/62

cent1:

cent1: Installed:

cent1: binutils-2.30-113.el8.x86_64

cent1: dialog-1.3-13.20171209.el8.x86_64

cent1: emacs-filesystem-1:26.1-7.el8.noarch

cent1: epel-release-8-17.el8.noarch

cent1: git-2.31.1-2.el8.x86_64

cent1: git-core-2.31.1-2.el8.x86_64

cent1: git-core-doc-2.31.1-2.el8.noarch

cent1: gpm-libs-1.20.7-17.el8.x86_64

cent1: libmetalink-0.1.3-7.el8.x86_64

cent1: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x86_64

cent1: nano-2.9.8-1.el8.x86_64

cent1: net-tools-2.0-0.52.20160912git.el8.x86_64

cent1: perl-Carp-1.42-396.el8.noarch

cent1: perl-Data-Dumper-2.167-399.el8.x86_64

cent1: perl-Digest-1.17-395.el8.noarch

cent1: perl-Digest-MD5-2.55-396.el8.x86_64

cent1: perl-Encode-4:2.97-3.el8.x86_64

cent1: perl-Errno-1.28-421.el8.x86_64

cent1: perl-Error-1:0.17025-2.el8.noarch

cent1: perl-Exporter-5.72-396.el8.noarch

cent1: perl-File-Path-2.15-2.el8.noarch

cent1: perl-File-Temp-0.230.600-1.el8.noarch

cent1: perl-Getopt-Long-1:2.50-4.el8.noarch

cent1: perl-Git-2.31.1-2.el8.noarch

cent1: perl-HTTP-Tiny-0.074-1.el8.noarch

cent1: perl-IO-1.38-421.el8.x86_64

cent1: perl-IO-Socket-IP-0.39-5.el8.noarch

cent1: perl-IO-Socket-SSL-2.066-4.module+el8.6.0+957+15d660ad.noarch

cent1: perl-MIME-Base64-3.15-396.el8.x86_64

cent1: perl-Mozilla-CA-20160104-7.module+el8.6.0+965+850557f9.noarch

cent1: perl-Net-SSLeay-1.88-2.module+el8.6.0+957+15d660ad.x86_64

cent1: perl-PathTools-3.74-1.el8.x86_64

cent1: perl-Pod-Escapes-1:1.07-395.el8.noarch

cent1: perl-Pod-Perldoc-3.28-396.el8.noarch

cent1: perl-Pod-Simple-1:3.35-395.el8.noarch

cent1: perl-Pod-Usage-4:1.69-395.el8.noarch

cent1: perl-Scalar-List-Utils-3:1.49-2.el8.x86_64

cent1: perl-Socket-4:2.027-3.el8.x86_64

cent1: perl-Storable-1:3.11-3.el8.x86_64

cent1: perl-Term-ANSIColor-4.06-396.el8.noarch

cent1: perl-Term-Cap-1.17-395.el8.noarch

cent1: perl-TermReadKey-2.37-7.el8.x86_64

cent1: perl-Text-ParseWords-3.30-395.el8.noarch

cent1: perl-Text-Tabs+Wrap-2013.0523-395.el8.noarch

cent1: perl-Time-Local-1:1.280-1.el8.noarch

cent1: perl-URI-1.73-3.el8.noarch

cent1: perl-Unicode-Normalize-1.25-396.el8.x86_64

cent1: perl-constant-1.33-396.el8.noarch

cent1: perl-interpreter-4:5.26.3-421.el8.x86_64

cent1: perl-libnet-3.11-3.el8.noarch

cent1: perl-libs-4:5.26.3-421.el8.x86_64

cent1: perl-macros-4:5.26.3-421.el8.x86_64

cent1: perl-parent-1:0.237-1.el8.noarch

cent1: perl-podlators-4.11-1.el8.noarch

cent1: perl-threads-1:2.21-2.el8.x86_64

cent1: perl-threads-shared-1.58-2.el8.x86_64

cent1: psmisc-23.1-5.el8.x86_64

cent1: sysstat-11.7.3-7.el8.x86_64

cent1: vim-common-2:8.0.1763-19.el8_6.4.x86_64

cent1: vim-enhanced-2:8.0.1763-19.el8_6.4.x86_64

cent1: vim-filesystem-2:8.0.1763-19.el8_6.4.noarch

cent1: wget-1.19.5-10.el8.x86_64

cent1:

cent1: Complete!

cent1: Extra Packages for Enterprise Linux 8 - x86_64 133 kB/s | 13 MB 01:39

cent1: Extra Packages for Enterprise Linux Modular 8 - 389 kB/s | 733 kB 00:01

cent1: Dependencies resolved.

cent1: ================================================================================

cent1: Package Architecture Version Repository Size

cent1: ================================================================================

cent1: Installing:

cent1: stress x86_64 1.0.4-24.el8 epel 39 k

cent1:

cent1: Transaction Summary

cent1: ================================================================================

cent1: Install 1 Package

cent1:

cent1: Total download size: 39 k

cent1: Installed size: 79 k

cent1: Downloading Packages:

cent1: stress-1.0.4-24.el8.x86_64.rpm 13 kB/s | 39 kB 00:03

cent1: --------------------------------------------------------------------------------

cent1: Total 9.4 kB/s | 39 kB 00:04

cent1: Extra Packages for Enterprise Linux 8 - x86_64 1.6 MB/s | 1.6 kB 00:00

cent1: Importing GPG key 0x2F86D6A1:

cent1: Userid : "Fedora EPEL (8) <epel@fedoraproject.org>"

cent1: Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1

cent1: From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8

cent1: Key imported successfully

cent1: Running transaction check

cent1: Transaction check succeeded.

cent1: Running transaction test

cent1: Transaction test succeeded.

cent1: Running transaction

cent1: Preparing : 1/1

cent1: Installing : stress-1.0.4-24.el8.x86_64 1/1

cent1: Running scriptlet: stress-1.0.4-24.el8.x86_64 1/1

cent1: Verifying : stress-1.0.4-24.el8.x86_64 1/1

cent1:

cent1: Installed:

cent1: stress-1.0.4-24.el8.x86_64

cent1:

cent1: Complete!

cent1: Last metadata expiration check: 0:00:07 ago on Thu 06 Oct 2022 04:10:05 AM UTC.

cent1: Dependencies resolved.

cent1: ==============================================================================================

cent1: Package Arch Version Repo Size

cent1: ==============================================================================================

cent1: Installing:

cent1: nginx x86_64 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 566 k

cent1: Installing dependencies:

cent1: dejavu-fonts-common noarch 2.35-7.el8 baseos 73 k

cent1: dejavu-sans-fonts noarch 2.35-7.el8 baseos 1.5 M

cent1: fontconfig x86_64 2.13.1-4.el8 baseos 273 k

cent1: fontpackages-filesystem noarch 1.44-22.el8 baseos 15 k

cent1: gd x86_64 2.2.5-7.el8 appstream 143 k

cent1: jbigkit-libs x86_64 2.1-14.el8 appstream 54 k

cent1: libX11 x86_64 1.6.8-5.el8 appstream 610 k

cent1: libX11-common noarch 1.6.8-5.el8 appstream 157 k

cent1: libXau x86_64 1.0.9-3.el8 appstream 36 k

cent1: libXpm x86_64 3.5.12-8.el8 appstream 57 k

cent1: libjpeg-turbo x86_64 1.5.3-12.el8 appstream 156 k

cent1: libtiff x86_64 4.0.9-21.el8 appstream 187 k

cent1: libwebp x86_64 1.0.0-5.el8 appstream 271 k

cent1: libxcb x86_64 1.13.1-1.el8 appstream 228 k

cent1: nginx-all-modules noarch 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 22 k

cent1: nginx-filesystem noarch 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 23 k

cent1: nginx-mod-http-image-filter x86_64 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 34 k

cent1: nginx-mod-http-perl x86_64 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 45 k

cent1: nginx-mod-http-xslt-filter x86_64 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 32 k

cent1: nginx-mod-mail x86_64 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 63 k

cent1: nginx-mod-stream x86_64 1:1.14.1-9.module+el8.4.0+542+81547229 appstream 84 k

cent1: Enabling module streams:

cent1: nginx 1.14

cent1:

cent1: Transaction Summary

cent1: ==============================================================================================

cent1: Install 22 Packages

cent1:

cent1: Total download size: 4.5 M

cent1: Installed size: 14 M

cent1: Downloading Packages:

cent1: (1/22): jbigkit-libs-2.1-14.el8.x86_64.rpm 597 kB/s | 54 kB 00:00

cent1: (2/22): libX11-common-1.6.8-5.el8.noarch.rpm 782 kB/s | 157 kB 00:00

cent1: (3/22): gd-2.2.5-7.el8.x86_64.rpm 473 kB/s | 143 kB 00:00

cent1: (4/22): libXau-1.0.9-3.el8.x86_64.rpm 1.1 MB/s | 36 kB 00:00

cent1: (5/22): libX11-1.6.8-5.el8.x86_64.rpm 1.6 MB/s | 610 kB 00:00

cent1: (6/22): libXpm-3.5.12-8.el8.x86_64.rpm 650 kB/s | 57 kB 00:00

cent1: (7/22): libjpeg-turbo-1.5.3-12.el8.x86_64.rpm 2.0 MB/s | 156 kB 00:00

cent1: (8/22): libtiff-4.0.9-21.el8.x86_64.rpm 1.4 MB/s | 187 kB 00:00

cent1: (9/22): libxcb-1.13.1-1.el8.x86_64.rpm 1.7 MB/s | 228 kB 00:00

cent1: (10/22): libwebp-1.0.0-5.el8.x86_64.rpm 1.5 MB/s | 271 kB 00:00

cent1: (11/22): nginx-all-modules-1.14.1-9.module+el8. 523 kB/s | 22 kB 00:00

cent1: (12/22): nginx-filesystem-1.14.1-9.module+el8.4 786 kB/s | 23 kB 00:00

cent1: (13/22): nginx-mod-http-image-filter-1.14.1-9.m 1.3 MB/s | 34 kB 00:00

cent1: (14/22): nginx-mod-http-perl-1.14.1-9.module+el 1.0 MB/s | 45 kB 00:00

cent1: (15/22): nginx-mod-http-xslt-filter-1.14.1-9.mo 928 kB/s | 32 kB 00:00

cent1: (16/22): nginx-mod-mail-1.14.1-9.module+el8.4.0 774 kB/s | 63 kB 00:00

cent1: (17/22): nginx-mod-stream-1.14.1-9.module+el8.4 884 kB/s | 84 kB 00:00

cent1: (18/22): dejavu-fonts-common-2.35-7.el8.noarch. 1.7 MB/s | 73 kB 00:00

cent1: (19/22): nginx-1.14.1-9.module+el8.4.0+542+8154 1.8 MB/s | 566 kB 00:00

cent1: (20/22): fontconfig-2.13.1-4.el8.x86_64.rpm 2.4 MB/s | 273 kB 00:00

cent1: (21/22): fontpackages-filesystem-1.44-22.el8.no 232 kB/s | 15 kB 00:00

cent1: (22/22): dejavu-sans-fonts-2.35-7.el8.noarch.rp 3.1 MB/s | 1.5 MB 00:00

cent1: --------------------------------------------------------------------------------

cent1: Total 1.0 MB/s | 4.5 MB 00:04

cent1: Running transaction check

cent1: Transaction check succeeded.

cent1: Running transaction test

cent1: Transaction test succeeded.

cent1: Running transaction

cent1: Preparing : 1/1

cent1: Installing : fontpackages-filesystem-1.44-22.el8.noarch 1/22

cent1: Installing : libjpeg-turbo-1.5.3-12.el8.x86_64 2/22

cent1: Installing : dejavu-fonts-common-2.35-7.el8.noarch 3/22

cent1: Installing : dejavu-sans-fonts-2.35-7.el8.noarch 4/22

cent1: Installing : fontconfig-2.13.1-4.el8.x86_64 5/22

cent1: Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 5/22

cent1: Running scriptlet: nginx-filesystem-1:1.14.1-9.module+el8.4.0+542+815 6/22

cent1: Installing : nginx-filesystem-1:1.14.1-9.module+el8.4.0+542+815 6/22

cent1: Installing : libwebp-1.0.0-5.el8.x86_64 7/22

cent1: Installing : libXau-1.0.9-3.el8.x86_64 8/22

cent1: Installing : libxcb-1.13.1-1.el8.x86_64 9/22

cent1: Installing : libX11-common-1.6.8-5.el8.noarch 10/22

cent1: Installing : libX11-1.6.8-5.el8.x86_64 11/22

cent1: Installing : libXpm-3.5.12-8.el8.x86_64 12/22

cent1: Installing : jbigkit-libs-2.1-14.el8.x86_64 13/22

cent1: Running scriptlet: jbigkit-libs-2.1-14.el8.x86_64 13/22

cent1: Installing : libtiff-4.0.9-21.el8.x86_64 14/22

cent1: Installing : gd-2.2.5-7.el8.x86_64 15/22

cent1: Running scriptlet: gd-2.2.5-7.el8.x86_64 15/22

cent1: Installing : nginx-mod-http-perl-1:1.14.1-9.module+el8.4.0+542+ 16/22

cent1: Running scriptlet: nginx-mod-http-perl-1:1.14.1-9.module+el8.4.0+542+ 16/22

cent1: Installing : nginx-mod-http-xslt-filter-1:1.14.1-9.module+el8.4 17/22

cent1: Running scriptlet: nginx-mod-http-xslt-filter-1:1.14.1-9.module+el8.4 17/22

cent1: Installing : nginx-mod-mail-1:1.14.1-9.module+el8.4.0+542+81547 18/22

cent1: Running scriptlet: nginx-mod-mail-1:1.14.1-9.module+el8.4.0+542+81547 18/22

cent1: Installing : nginx-mod-stream-1:1.14.1-9.module+el8.4.0+542+815 19/22

cent1: Running scriptlet: nginx-mod-stream-1:1.14.1-9.module+el8.4.0+542+815 19/22

cent1: Installing : nginx-1:1.14.1-9.module+el8.4.0+542+81547229.x86_6 20/22

cent1: Running scriptlet: nginx-1:1.14.1-9.module+el8.4.0+542+81547229.x86_6 20/22

cent1: Installing : nginx-mod-http-image-filter-1:1.14.1-9.module+el8. 21/22

cent1: Running scriptlet: nginx-mod-http-image-filter-1:1.14.1-9.module+el8. 21/22

cent1: Installing : nginx-all-modules-1:1.14.1-9.module+el8.4.0+542+81 22/22

cent1: Running scriptlet: nginx-all-modules-1:1.14.1-9.module+el8.4.0+542+81 22/22

cent1: Running scriptlet: fontconfig-2.13.1-4.el8.x86_64 22/22

cent1: Verifying : gd-2.2.5-7.el8.x86_64 1/22

cent1: Verifying : jbigkit-libs-2.1-14.el8.x86_64 2/22

cent1: Verifying : libX11-1.6.8-5.el8.x86_64 3/22

cent1: Verifying : libX11-common-1.6.8-5.el8.noarch 4/22

cent1: Verifying : libXau-1.0.9-3.el8.x86_64 5/22

cent1: Verifying : libXpm-3.5.12-8.el8.x86_64 6/22

cent1: Verifying : libjpeg-turbo-1.5.3-12.el8.x86_64 7/22

cent1: Verifying : libtiff-4.0.9-21.el8.x86_64 8/22

cent1: Verifying : libwebp-1.0.0-5.el8.x86_64 9/22

cent1: Verifying : libxcb-1.13.1-1.el8.x86_64 10/22

cent1: Verifying : nginx-1:1.14.1-9.module+el8.4.0+542+81547229.x86_6 11/22

cent1: Verifying : nginx-all-modules-1:1.14.1-9.module+el8.4.0+542+81 12/22

cent1: Verifying : nginx-filesystem-1:1.14.1-9.module+el8.4.0+542+815 13/22

cent1: Verifying : nginx-mod-http-image-filter-1:1.14.1-9.module+el8. 14/22

cent1: Verifying : nginx-mod-http-perl-1:1.14.1-9.module+el8.4.0+542+ 15/22

cent1: Verifying : nginx-mod-http-xslt-filter-1:1.14.1-9.module+el8.4 16/22

cent1: Verifying : nginx-mod-mail-1:1.14.1-9.module+el8.4.0+542+81547 17/22

cent1: Verifying : nginx-mod-stream-1:1.14.1-9.module+el8.4.0+542+815 18/22

cent1: Verifying : dejavu-fonts-common-2.35-7.el8.noarch 19/22

cent1: Verifying : dejavu-sans-fonts-2.35-7.el8.noarch 20/22

cent1: Verifying : fontconfig-2.13.1-4.el8.x86_64 21/22

cent1: Verifying : fontpackages-filesystem-1.44-22.el8.noarch 22/22

cent1:

cent1: Installed:

cent1: dejavu-fonts-common-2.35-7.el8.noarch

cent1: dejavu-sans-fonts-2.35-7.el8.noarch

cent1: fontconfig-2.13.1-4.el8.x86_64

cent1: fontpackages-filesystem-1.44-22.el8.noarch

cent1: gd-2.2.5-7.el8.x86_64

cent1: jbigkit-libs-2.1-14.el8.x86_64

cent1: libX11-1.6.8-5.el8.x86_64

cent1: libX11-common-1.6.8-5.el8.noarch

cent1: libXau-1.0.9-3.el8.x86_64

cent1: libXpm-3.5.12-8.el8.x86_64

cent1: libjpeg-turbo-1.5.3-12.el8.x86_64

cent1: libtiff-4.0.9-21.el8.x86_64

cent1: libwebp-1.0.0-5.el8.x86_64

cent1: libxcb-1.13.1-1.el8.x86_64

cent1: nginx-1:1.14.1-9.module+el8.4.0+542+81547229.x86_64

cent1: nginx-all-modules-1:1.14.1-9.module+el8.4.0+542+81547229.noarch

cent1: nginx-filesystem-1:1.14.1-9.module+el8.4.0+542+81547229.noarch

cent1: nginx-mod-http-image-filter-1:1.14.1-9.module+el8.4.0+542+81547229.x86_64

cent1: nginx-mod-http-perl-1:1.14.1-9.module+el8.4.0+542+81547229.x86_64

cent1: nginx-mod-http-xslt-filter-1:1.14.1-9.module+el8.4.0+542+81547229.x86_64

cent1: nginx-mod-mail-1:1.14.1-9.module+el8.4.0+542+81547229.x86_64

cent1: nginx-mod-stream-1:1.14.1-9.module+el8.4.0+542+81547229.x86_64

cent1:

cent1: Complete!

==> cent1: Running provisioner: shell...

cent1: Running: C:/Users/user/AppData/Local/Temp/vagrant-shell20221006-3288-1kxlaj1.sh

cent1: hosts에 각 서버를 등록합니다.

cent1: fstab에 nfs정보를 등록합니다.

cent1: root유저의 환경설정을 합니다.

cent1: ssh 설정을 등록합니다.

cent1: 서버 접속 메세지를 설정합니다.

cent1: selinux를 무효화합니다.

cent1: 처리항목에 없는 서버입니다. 호스트를 확인해주세요.

cent1: 서버를 재시작합니다.

==> cent2: Cloning VM...

==> cent2: Matching MAC address for NAT networking...

==> cent2: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent2: Setting the name of the VM: cent2

==> cent2: Fixed port collision for 22 => 2222. Now on port 2200.

==> cent2: Clearing any previously set network interfaces...

==> cent2: Preparing network interfaces based on configuration...

cent2: Adapter 1: nat

cent2: Adapter 2: hostonly

cent2: Adapter 3: hostonly

==> cent2: Forwarding ports...

cent2: 22 (guest) => 2200 (host) (adapter 1)

==> cent2: Running 'pre-boot' VM customizations...

==> cent2: Booting VM...

==> cent2: Waiting for machine to boot. This may take a few minutes...

cent2: SSH address: 127.0.0.1:2200

cent2: SSH username: vagrant

cent2: SSH auth method: private key

cent2:

cent2: Vagrant insecure key detected. Vagrant will automatically replace

cent2: this with a newly generated keypair for better security.

cent2:

cent2: Inserting generated public key within guest...

cent2: Removing insecure key from the guest if it's present...

cent2: Key inserted! Disconnecting and reconnecting using new SSH key...

==> cent2: Machine booted and ready!

[cent2] No Virtualbox Guest Additions installation found.

Last metadata expiration check: 0:00:01 ago on Thu 06 Oct 2022 04:11:12 AM UTC.

Package rocky-release-8.5-3.el8.noarch is already installed.

Dependencies resolved.

================================================================================

Package Architecture Version Repository Size

================================================================================

Upgrading:

rocky-release noarch 8.6-4.el8 baseos 21 k

rocky-repos noarch 8.6-4.el8 baseos 14 k

Transaction Summary

================================================================================

Upgrade 2 Packages

Total download size: 35 k

Downloading Packages:

(1/2): rocky-release-8.6-4.el8.noarch.rpm 433 kB/s | 21 kB 00:00

(2/2): rocky-repos-8.6-4.el8.noarch.rpm 186 kB/s | 14 kB 00:00

--------------------------------------------------------------------------------

Total 58 kB/s | 35 kB 00:00

Running transaction check

Transaction check succeeded.

Running transaction test

Transaction test succeeded.

Running transaction

Preparing : 1/1

Running scriptlet: rocky-repos-8.6-4.el8.noarch 1/1

Upgrading : rocky-repos-8.6-4.el8.noarch 1/4

Upgrading : rocky-release-8.6-4.el8.noarch 2/4

Cleanup : rocky-release-8.5-3.el8.noarch 3/4

Cleanup : rocky-repos-8.5-3.el8.noarch 4/4

Running scriptlet: rocky-repos-8.5-3.el8.noarch 4/4

Verifying : rocky-release-8.6-4.el8.noarch 1/4

Verifying : rocky-release-8.5-3.el8.noarch 2/4

Verifying : rocky-repos-8.6-4.el8.noarch 3/4

Verifying : rocky-repos-8.5-3.el8.noarch 4/4

Upgraded:

rocky-release-8.6-4.el8.noarch rocky-repos-8.6-4.el8.noarch

Complete!

Last metadata expiration check: 0:00:03 ago on Thu 06 Oct 2022 04:11:12 AM UTC.

No match for argument: kernel-devel-4.18.0-348.20.1.el8_5.x86_64

Error: Unable to find a match: kernel-devel-4.18.0-348.20.1.el8_5.x86_64

Unmounting Virtualbox Guest Additions ISO from: /mnt

umount: /mnt: not mounted.

==> cent2: Checking for guest additions in VM...

cent2: No guest additions were detected on the base box for this VM! Guest

cent2: additions are required for forwarded ports, shared folders, host only

cent2: networking, and more. If SSH fails on this machine, please install

cent2: the guest additions and repackage the box to continue.

cent2:

cent2: This is not an error message; everything may continue to work properly,

cent2: in which case you may ignore this message.

The following SSH command responded with a non-zero exit status.

Vagrant assumes that this means the command failed!

umount /mnt

Stdout from the command:

Stderr from the command:

umount: /mnt: not mounted.

 

 

 

 

 

 

2번째 컴퓨터 plugin 0.21로 업데이트 후에 vagrant up 실행

 

$ vagrant up

Bringing machine 'cent1' up with 'virtualbox' provider...

Bringing machine 'cent2' up with 'virtualbox' provider...

Bringing machine 'cent3' up with 'virtualbox' provider...

==> cent1: Preparing master VM for linked clones...

cent1: This is a one time operation. Once the master VM is prepared,

cent1: it will be used as a base for linked clones, making the creation

cent1: of new VMs take milliseconds on a modern system.

==> cent1: Importing base box 'rockylinux/8'...

==> cent1: Cloning VM...

==> cent1: Matching MAC address for NAT networking...

==> cent1: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent1: Setting the name of the VM: cent1

Vagrant is currently configured to create VirtualBox synced folders with

the SharedFoldersEnableSymlinksCreate option enabled. If the Vagrant

guest is not trusted, you may want to disable this option. For more

information on this option, please refer to the VirtualBox manual:

https://www.virtualbox.org/manual/ch04.html#sharedfolders

This option can be disabled globally with an environment variable:

VAGRANT_DISABLE_VBOXSYMLINKCREATE=1

or on a per folder basis within the Vagrantfile:

config.vm.synced_folder '/host/path', '/guest/path', SharedFoldersEnableSymlinksCreate: false

==> cent1: Clearing any previously set network interfaces...

==> cent1: Preparing network interfaces based on configuration...

cent1: Adapter 1: nat

cent1: Adapter 2: hostonly

cent1: Adapter 3: hostonly

==> cent1: Forwarding ports...

cent1: 22 (guest) => 2222 (host) (adapter 1)

==> cent1: Running 'pre-boot' VM customizations...

==> cent1: Booting VM...

==> cent1: Waiting for machine to boot. This may take a few minutes...

cent1: SSH address: 127.0.0.1:2222

cent1: SSH username: vagrant

cent1: SSH auth method: private key

cent1:

cent1: Vagrant insecure key detected. Vagrant will automatically replace

cent1: this with a newly generated keypair for better security.

cent1:

cent1: Inserting generated public key within guest...

cent1: Removing insecure key from the guest if it's present...

cent1: Key inserted! Disconnecting and reconnecting using new SSH key...

==> cent1: Machine booted and ready!

[cent1] No Virtualbox Guest Additions installation found.

Last metadata expiration check: 0:00:02 ago on Thu 06 Oct 2022 04:05:48 AM UTC.

Package rocky-release-8.5-3.el8.noarch is already installed.

Dependencies resolved.

================================================================================

Package Architecture Version Repository Size

================================================================================

Upgrading:

rocky-release noarch 8.6-4.el8 baseos 21 k

rocky-repos noarch 8.6-4.el8 baseos 14 k

Transaction Summary

================================================================================

Upgrade 2 Packages

Total download size: 35 k

Downloading Packages:

(1/2): rocky-repos-8.6-4.el8.noarch.rpm 284 kB/s | 14 kB 00:00

(2/2): rocky-release-8.6-4.el8.noarch.rpm 388 kB/s | 21 kB 00:00

--------------------------------------------------------------------------------

Total 46 kB/s | 35 kB 00:00

Running transaction check

Transaction check succeeded.

Running transaction test

Transaction test succeeded.

Running transaction

Preparing : 1/1

Running scriptlet: rocky-repos-8.6-4.el8.noarch 1/1

Upgrading : rocky-repos-8.6-4.el8.noarch 1/4

Upgrading : rocky-release-8.6-4.el8.noarch 2/4

Cleanup : rocky-release-8.5-3.el8.noarch 3/4

Cleanup : rocky-repos-8.5-3.el8.noarch 4/4

Running scriptlet: rocky-repos-8.5-3.el8.noarch 4/4

Verifying : rocky-release-8.6-4.el8.noarch 1/4

Verifying : rocky-release-8.5-3.el8.noarch 2/4

Verifying : rocky-repos-8.6-4.el8.noarch 3/4

Verifying : rocky-repos-8.5-3.el8.noarch 4/4

Upgraded:

rocky-release-8.6-4.el8.noarch rocky-repos-8.6-4.el8.noarch

Complete!

Error: Unknown repo: 'C*-base'

==> cent1: Checking for guest additions in VM...

cent1: No guest additions were detected on the base box for this VM! Guest

cent1: additions are required for forwarded ports, shared folders, host only

cent1: networking, and more. If SSH fails on this machine, please install

cent1: the guest additions and repackage the box to continue.

cent1:

cent1: This is not an error message; everything may continue to work properly,

cent1: in which case you may ignore this message.

The following SSH command responded with a non-zero exit status.

Vagrant assumes that this means the command failed!

yum install -y kernel-devel-`uname -r` --enablerepo=C*-base --enablerepo=C*-updates

Stdout from the command:

Stderr from the command:

Error: Unknown repo: 'C*-base'

 

0

심준보님의 프로필

심준보

2022.10.05

 

vagrant-vbguest 0.30 일때

$ vagrant up

Bringing machine 'cent1' up with 'virtualbox' provider...

Bringing machine 'cent2' up with 'virtualbox' provider...

Bringing machine 'cent3' up with 'virtualbox' provider...

==> cent1: Preparing master VM for linked clones...

cent1: This is a one time operation. Once the master VM is prepared,

cent1: it will be used as a base for linked clones, making the creation

cent1: of new VMs take milliseconds on a modern system.

==> cent1: Importing base box 'rockylinux/8'...

==> cent1: Cloning VM...

==> cent1: Matching MAC address for NAT networking...

==> cent1: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent1: Setting the name of the VM: cent1

==> cent1: Clearing any previously set network interfaces...

==> cent1: Preparing network interfaces based on configuration...

cent1: Adapter 1: nat

cent1: Adapter 2: hostonly

cent1: Adapter 3: hostonly

==> cent1: Forwarding ports...

cent1: 22 (guest) => 2222 (host) (adapter 1)

==> cent1: Running 'pre-boot' VM customizations...

==> cent1: Booting VM...

==> cent1: Waiting for machine to boot. This may take a few minutes...

cent1: SSH address: 127.0.0.1:2222

cent1: SSH username: vagrant

cent1: SSH auth method: private key

cent1:

cent1: Vagrant insecure key detected. Vagrant will automatically replace

cent1: this with a newly generated keypair for better security.

cent1:

cent1: Inserting generated public key within guest...

cent1: Removing insecure key from the guest if it's present...

cent1: Key inserted! Disconnecting and reconnecting using new SSH key...

==> cent1: Machine booted and ready!

[cent1] No Virtualbox Guest Additions installation found.

Last metadata expiration check: 0:00:03 ago on Wed 05 Oct 2022 01:15:33 PM UTC.

Package rocky-release-8.5-3.el8.noarch is already installed.

Dependencies resolved.

================================================================================

Package Architecture Version Repository Size

================================================================================

Upgrading:

rocky-release noarch 8.6-4.el8 baseos 21 k

rocky-repos noarch 8.6-4.el8 baseos 14 k

Transaction Summary

================================================================================

Upgrade 2 Packages

Total download size: 35 k

Downloading Packages:

(1/2): rocky-repos-8.6-4.el8.noarch.rpm 421 kB/s | 14 kB 00:00

(2/2): rocky-release-8.6-4.el8.noarch.rpm 589 kB/s | 21 kB 00:00

--------------------------------------------------------------------------------

Total 57 kB/s | 35 kB 00:00

Running transaction check

Transaction check succeeded.

Running transaction test

Transaction test succeeded.

Running transaction

Preparing : 1/1

Running scriptlet: rocky-repos-8.6-4.el8.noarch 1/1

Upgrading : rocky-repos-8.6-4.el8.noarch 1/4

Upgrading : rocky-release-8.6-4.el8.noarch 2/4

Cleanup : rocky-release-8.5-3.el8.noarch 3/4

Cleanup : rocky-repos-8.5-3.el8.noarch 4/4

Running scriptlet: rocky-repos-8.5-3.el8.noarch 4/4

Verifying : rocky-release-8.6-4.el8.noarch 1/4

Verifying : rocky-release-8.5-3.el8.noarch 2/4

Verifying : rocky-repos-8.6-4.el8.noarch 3/4

Verifying : rocky-repos-8.5-3.el8.noarch 4/4

Upgraded:

rocky-release-8.6-4.el8.noarch rocky-repos-8.6-4.el8.noarch

Complete!

Last metadata expiration check: 0:00:05 ago on Wed 05 Oct 2022 01:15:33 PM UTC.

No match for argument: kernel-devel-4.18.0-348.20.1.el8_5.x86_64

Error: Unable to find a match: kernel-devel-4.18.0-348.20.1.el8_5.x86_64

Unmounting Virtualbox Guest Additions ISO from: /mnt

umount: /mnt: not mounted.

==> cent1: Checking for guest additions in VM...

cent1: No guest additions were detected on the base box for this VM! Guest

cent1: additions are required for forwarded ports, shared folders, host only

cent1: networking, and more. If SSH fails on this machine, please install

cent1: the guest additions and repackage the box to continue.

cent1:

cent1: This is not an error message; everything may continue to work properly,

cent1: in which case you may ignore this message.

The following SSH command responded with a non-zero exit status.

Vagrant assumes that this means the command failed!

umount /mnt

Stdout from the command:

Stderr from the command:

umount: /mnt: not mounted.

 

 

 

 

 

 

vagrant-vbguest 0.21 일때

 

cent1:

cent1: Complete!

==> cent1: Running provisioner: shell...

cent1: Running: C:/Users/junbo/AppData/Local/Temp/vagrant-shell20221005-3480-v071rw.sh

cent1: hosts에 각 서버를 등록합니다.

cent1: fstab에 nfs정보를 등록합니다.

cent1: root유저의 환경설정을 합니다.

cent1: ssh 설정을 등록합니다.

cent1: 서버 접속 메세지를 설정합니다.

cent1: selinux를 무효화합니다.

cent1: 처리항목에 없는 서버입니다. 호스트를 확인해주세요.

cent1: 서버를 재시작합니다.

==> cent2: Cloning VM...

==> cent2: Matching MAC address for NAT networking...

==> cent2: Checking if box 'rockylinux/8' version '5.0.0' is up to date...

==> cent2: Setting the name of the VM: cent2

==> cent2: Fixed port collision for 22 => 2222. Now on port 2200.

==> cent2: Clearing any previously set network interfaces...

==> cent2: Preparing network interfaces based on configuration...

cent2: Adapter 1: nat

cent2: Adapter 2: hostonly

cent2: Adapter 3: hostonly

==> cent2: Forwarding ports...

cent2: 22 (guest) => 2200 (host) (adapter 1)

==> cent2: Running 'pre-boot' VM customizations...

==> cent2: Booting VM...

==> cent2: Waiting for machine to boot. This may take a few minutes...

cent2: SSH address: 127.0.0.1:2200

cent2: SSH username: vagrant

cent2: SSH auth method: private key

cent2:

cent2: Vagrant insecure key detected. Vagrant will automatically replace

cent2: this with a newly generated keypair for better security.

cent2:

cent2: Inserting generated public key within guest...

cent2: Removing insecure key from the guest if it's present...

cent2: Key inserted! Disconnecting and reconnecting using new SSH key...

==> cent2: Machine booted and ready!

[cent2] No Virtualbox Guest Additions installation found.

Last metadata expiration check: 0:00:01 ago on Wed 05 Oct 2022 01:25:18 PM UTC.

Package rocky-release-8.5-3.el8.noarch is already installed.

Dependencies resolved.

================================================================================

Package Architecture Version Repository Size

================================================================================

Upgrading:

rocky-release noarch 8.6-4.el8 baseos 21 k

rocky-repos noarch 8.6-4.el8 baseos 14 k

Transaction Summary

================================================================================

Upgrade 2 Packages

Total download size: 35 k

Downloading Packages:

(1/2): rocky-repos-8.6-4.el8.noarch.rpm 454 kB/s | 14 kB 00:00

(2/2): rocky-release-8.6-4.el8.noarch.rpm 477 kB/s | 21 kB 00:00

--------------------------------------------------------------------------------

Total 27 kB/s | 35 kB 00:01

Running transaction check

Transaction check succeeded.

Running transaction test

Transaction test succeeded.

Running transaction

Preparing : 1/1

Running scriptlet: rocky-repos-8.6-4.el8.noarch 1/1

Upgrading : rocky-repos-8.6-4.el8.noarch 1/4

Upgrading : rocky-release-8.6-4.el8.noarch 2/4

Cleanup : rocky-release-8.5-3.el8.noarch 3/4

Cleanup : rocky-repos-8.5-3.el8.noarch 4/4

Running scriptlet: rocky-repos-8.5-3.el8.noarch 4/4

Verifying : rocky-release-8.6-4.el8.noarch 1/4

Verifying : rocky-release-8.5-3.el8.noarch 2/4

Verifying : rocky-repos-8.6-4.el8.noarch 3/4

Verifying : rocky-repos-8.5-3.el8.noarch 4/4

Upgraded:

rocky-release-8.6-4.el8.noarch rocky-repos-8.6-4.el8.noarch

Complete!

Error: Unknown repo: 'C*-base'

==> cent2: Checking for guest additions in VM...

cent2: No guest additions were detected on the base box for this VM! Guest

cent2: additions are required for forwarded ports, shared folders, host only

cent2: networking, and more. If SSH fails on this machine, please install

cent2: the guest additions and repackage the box to continue.

cent2:

cent2: This is not an error message; everything may continue to work properly,

cent2: in which case you may ignore this message.

The following SSH command responded with a non-zero exit status.

Vagrant assumes that this means the command failed!

yum install -y kernel-devel-`uname -r` --enablerepo=C*-base --enablerepo=C*-updates

Stdout from the command:

Stderr from the command:

Error: Unknown repo: 'C*-base'

image

0

안녕하세요.
지금 보내주신 사진만으로는 파악하기가 어렵습니다.ㅠㅠ
에러로그 전체를 텍스트로 올려주셔야 확인하기가 수월할 것 같습니다.

심준보님의 프로필

심준보

2022.10.05

image지금은 이런 에러가 납니다

심준보님의 프로필

심준보

2022.10.05

image

추가로 temp_clone 가상머신이 생성되네요;;

심준보님의 프로필

심준보

2022.10.05

한 200번은 지웠다가 깔았다가 했습니다.

vagrant plugin도 0.21버전으로 업데이트 하라고 해서 바꿨는데 오히려 다른 오류가 발생하고 구글 블로그 5시간 동안 찾아봤는데 결국에는 위와같은 상황이 오게 되었습니다.

실습용 환경구축이 가장 어려운 부분에 속하는 파트라 어려움이 많습니다.

실습을 진행하는 쉘스크립트가 강좌의 내용이기 때문에 환경구축을 자동화했는데 각 로컬마다 환경이 조금씩 달라 한번에 구축이 안되는 분들이 계시더라구요.

자동화 코드에서 사용하는 환경과 다를 때 여러 문제가 생길 수 있으니 포기하지 마시고 환경 구축에 성공하셨으면 합니다.

바로 위에 보내주신 에러내용은 이미 같은 이름의 가상머신이 존재해서 만들 수 없다는 에러입니다.

만들어진 가상머신을 전부 삭제하고 실행해보세요.

현재로서는 삭제하고 실행을 해도 다른 에러가 발생할 것 같으니 가상머신을 삭제하시고 두번째 질문으로 올려주신 글을 확인한 후 댓글을 달테니 두번째 질문의 댓글을 참고해서 실행해주세요.