How to enable repositories on RHEL7.6 without Red Hat-Subscription

How to enable repositories on RHEL7.6 without Red Hat-Subscription

Introduction:

Red Hat Enterprise Linux is an open source Linux based operating system (OS). It’s the foundation from which you can scale existing apps. This tutorial covers the method to enable the repositories on RHEL 7.6 even without a Red Hat-Subscription. Installation Process:

Installation Process:

Open a terminal from mounted DVD/USB – RHEL7.6 ISO Change Directory to root

[root@linuxhelp RHEL-7.6 Server.x86_64]# cd ..

To Listing the current Directory use the below command

[root@linuxhelp root]# ls -la
total 4
drwxr-x---+ 3 root root   60 Aug 18  2020 .
drwxr-xr-x. 3 root root   60 Aug 18  2020 ..
dr-xr-xr-x. 9 root root 4096 Oct 11  2018 RHEL-7.6 Server.x86_64

Now, copy the Mounted RHEL-7.6 ISO as rhel7.6 under /root /

[root@linuxhelp root]# cp -rv RHEL-7.6\ Server.x86_64/ /root/rhel7.6
‘RHEL-7.6 Server.x86_64/’ -> ‘/root/rhel7.6’
‘RHEL-7.6 Server.x86_64/.discinfo’ -> ‘/root/rhel7.6/.discinfo’
‘RHEL-7.6 Server.x86_64/.treeinfo’ -> ‘/root/rhel7.6/.treeinfo’
‘RHEL-7.6 Server.x86_64/EFI’ -> ‘/root/rhel7.6/EFI’
‘RHEL-7.6 Server.x86_64/EFI/BOOT’ -> ‘/root/rhel7.6/EFI/BOOT’
‘RHEL-7.6 Server.x86_64/EFI/BOOT/BOOTIA32.EFI’ -> ‘/root/rhel7.6/EFI/BOOT/BOOTIA32.EFI’
‘RHEL-7.6 Server.x86_64/EFI/BOOT/BOOTX64.EFI’ -> ‘/root/rhel7.6/EFI/BOOT/BOOTX64.EFI’
‘RHEL-7.6 Server.x86_64/EFI/BOOT/TRANS.TBL’ -> ‘/root/rhel7.6/EFI/BOOT/TRANS.TBL’
…
….
‘/root/rhel7.6/repodata/e4dcd857d40dc5baa31c72facbafa0a0e68caddc09fc11cd8f09bc1e5ef6528f-comps-Server.x86_64.xml.gz’
‘RHEL-7.6 Server.x86_64/repodata/productid’ -> ‘/root/rhel7.6/repodata/productid’
‘RHEL-7.6 Server.x86_64/repodata/repomd.xml’ -> ‘/root/rhel7.6/repodata/repomd.xml’

Change Directory to rhel7.6

[root@linuxhelp ~]# cd /root/rhel7.6/

Copy the media.repo file to /etc/yum.repos.d/ and give desired name with .repo extension

[root@linuxhelp rhel7.6]# cp media.repo  /etc/yum.repos.d/rhel7.repo

Change permission for that file

[root@linuxhelp rhel7.6]# chmod 766 /etc/yum.repos.d/rhel7.repo 

Then, Change directory to yum.repos.d

[root@linuxhelp rhel7.6]# cd /etc/yum.repos.d/

Here, we have to update Baseurl and gpgkey details

 [root@linuxhelp yum.repos.d]# vim rhel7.repo
[InstallMedia]
name=Red Hat Enterprise Linux 7.6
mediaid=1539194970.388895
metadata_expire=-1
gpgcheck=0
cost=500
baseurl=file:///root/rhel7.6/
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

Use the below command to install epel-release Repository

[root@linuxhelp yum.repos.d]# yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
…..
--> Running transaction check
---> Package epel-release.noarch 0:7-12 will be installed
--> Finished Dependency Resolution

Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
 Installing : epel-release-7-12.noarch                                                                        1/1 
 Verifying  : epel-release-7-12.noarch                                                                        1/1 
Installed:
 epel-release.noarch 0:7-12                                                                                       
Complete!

And install rpmfusion repository

 [root@linuxhelp yum.repos.d]# yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Repository 'InstallMedia': Error parsing config: Error parsing "baseurl = '/root/rhel7.6/'": URL must be http, ftp, file or https not ""
…..
……
--> Running transaction check
---> Package rpmfusion-free-release.noarch 0:7-4 will be installed
---> Package rpmfusion-nonfree-release.noarch 0:7-4 will be installed
--> Finished Dependency Resolution
epel/x86_64/metalink                                                                        | 6.4 kB  00:00:00     
epel/x86_64                                                                                 | 4.7 kB  00:00:00     
epel/x86_64/group_gz                                                                        |  95 kB  00:00:00     
Installed:
  rpmfusion-free-release.noarch 0:7-4                    rpmfusion-nonfree-release.noarch 0:7-4                   
Complete!

Run the below command to clean up the yum repository

[root@linuxhelp yum.repos.d]# yum clean all
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Cleaning repos: InstallMedia epel rpmfusion-free-updates rpmfusion-nonfree-updates

Install the apache server to check the Repository Configuration

[root@linuxhelp yum.repos.d]# yum install httpd
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
InstallMedia                                                                                | 4.3 kB  00:00:00     
epel/x86_64/metalink                                                                        | 6.4 kB  00:00:00     
epel                                                                                        | 4.7 kB  00:00:00     
rpmfusion-free-updates                                                                      | 3.7 kB  00:00:00     
rpmfusion-nonfree-updates                                                                   | 3.7 kB  00:00:00     
(1/9): InstallMedia/group_gz                                                                | 146 kB  00:00:00     
(2/9): InstallMedia/primary_db                                                              | 4.2 MB  00:00:00     
….
….
package: httpd-2.4.6-88.el7.x86_64
--> Running transaction check
---> Package apr.x86_64 0:1.4.8-3.el7_4.1 will be installed
---> Package apr-util.x86_64 0:1.5.2-6.el7 will be installed
---> Package httpd-tools.x86_64 0:2.4.6-88.el7 will be installed
 apr.x86_64 0:1.4.8-3.el7_4.1        apr-util.x86_64 0:1.5.2-6.el7       httpd-tools.x86_64 0:2.4.6-88.el7      
 mailcap.noarch 0:2.1.41-2.el7      
Complete!

Use the below commands to start and check status of apache services

[root@linuxhelp yum.repos.d]# systemctl start httpd
[root@linuxhelp yum.repos.d]# systemctl status httpd
● httpd.service - The Apache HTTP Server
  Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)
  Active: active (running) since Tue 2020-08-18 18:49:05 IST; 15s ago
    Docs: man:httpd(8)
          man:apachectl(8)
Main PID: 65822 (httpd)
  Status: "Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec"
   Tasks: 6
  CGroup: /system.slice/httpd.service
          ├─65822 /usr/sbin/httpd -DFOREGROUND
          ├─65823 /usr/sbin/httpd -DFOREGROUND
          ├─65824 /usr/sbin/httpd -DFOREGROUND
          ├─65825 /usr/sbin/httpd -DFOREGROUND
          ├─65826 /usr/sbin/httpd -DFOREGROUND
          └─65827 /usr/sbin/httpd -DFOREGROUND

Aug 18 18:49:04 linuxhelp systemd[1]: Starting The Apache HTTP Server...
Aug 18 18:49:04 linuxhelp httpd[65822]: AH00558: httpd: Could not reliably determine the server's fully qua...ssage

With this, the method to enable repositories on RHEL7.6 without Red hat-Subscription comes to end

Comment
testdata
Jul 13 2021
I experience when copying the file form the mounted disk. How to fix it sir :(

cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/clufter-common-0.77.1-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/clufter-lib-ccs-0.77.1-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/clufter-lib-ccs-0.77.1-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/clufter-lib-ccs-0.77.1-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/clufter-lib-ccs-0.77.1-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/clufter-lib-general-0.77.1-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/clufter-lib-general-0.77.1-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/clufter-lib-general-0.77.1-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/clufter-lib-general-0.77.1-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/clufter-lib-pcs-0.77.1-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/clufter-lib-pcs-0.77.1-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/clufter-lib-pcs-0.77.1-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/clufter-lib-pcs-0.77.1-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/cmirror-2.02.185-2.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/cmirror-2.02.185-2.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/cmirror-2.02.185-2.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/cmirror-2.02.185-2.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosync-2.4.3-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosync-2.4.3-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosync-2.4.3-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosync-2.4.3-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosync-qdevice-2.4.3-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosync-qdevice-2.4.3-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosync-qdevice-2.4.3-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosync-qdevice-2.4.3-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosync-qnetd-2.4.3-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosync-qnetd-2.4.3-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosync-qnetd-2.4.3-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosync-qnetd-2.4.3-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-2.4.3-6.el7.i686.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-2.4.3-6.el7.i686.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-2.4.3-6.el7.i686.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-2.4.3-6.el7.i686.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-2.4.3-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-2.4.3-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-2.4.3-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-2.4.3-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.i686.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.i686.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.i686.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.i686.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/corosynclib-devel-2.4.3-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/ctdb-4.9.1-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/ctdb-4.9.1-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/ctdb-4.9.1-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/ctdb-4.9.1-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/ctdb-tests-4.9.1-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/ctdb-tests-4.9.1-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/ctdb-tests-4.9.1-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/ctdb-tests-4.9.1-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/dlm-4.0.7-1.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/dlm-4.0.7-1.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/dlm-4.0.7-1.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/dlm-4.0.7-1.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-aliyun-4.2.1-24.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-aliyun-4.2.1-24.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-aliyun-4.2.1-24.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-aliyun-4.2.1-24.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-aws-4.2.1-24.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-aws-4.2.1-24.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-aws-4.2.1-24.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-aws-4.2.1-24.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-azure-arm-4.2.1-24.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-azure-arm-4.2.1-24.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-azure-arm-4.2.1-24.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-azure-arm-4.2.1-24.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-gce-4.2.1-24.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-gce-4.2.1-24.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/fence-agents-gce-4.2.1-24.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/fence-agents-gce-4.2.1-24.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/lvm2-cluster-2.02.185-2.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/lvm2-cluster-2.02.185-2.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/lvm2-cluster-2.02.185-2.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/lvm2-cluster-2.02.185-2.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/omping-0.0.4-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/omping-0.0.4-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/omping-0.0.4-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/omping-0.0.4-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cli-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cli-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cli-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cli-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.i686.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.i686.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.i686.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cluster-libs-1.1.20-5.el7.i686.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cts-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cts-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-cts-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-cts-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-doc-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-doc-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-doc-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-doc-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.i686.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.i686.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.i686.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.i686.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.i686.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.i686.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.i686.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-devel-1.1.20-5.el7.i686.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-libs-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-nagios-plugins-metadata-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-nagios-plugins-metadata-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-nagios-plugins-metadata-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-nagios-plugins-metadata-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-remote-1.1.20-5.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-remote-1.1.20-5.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pacemaker-remote-1.1.20-5.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pacemaker-remote-1.1.20-5.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pcs-0.9.167-3.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pcs-0.9.167-3.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pcs-0.9.167-3.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pcs-0.9.167-3.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pcs-snmp-0.9.167-3.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/pcs-snmp-0.9.167-3.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/pcs-snmp-0.9.167-3.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/pcs-snmp-0.9.167-3.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-adal-0.6.0-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-adal-0.6.0-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-adal-0.6.0-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-adal-0.6.0-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-azure-sdk-4.0.0-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-azure-sdk-4.0.0-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-azure-sdk-4.0.0-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-azure-sdk-4.0.0-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-boto3-1.4.6-5.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-boto3-1.4.6-5.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-boto3-1.4.6-5.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-boto3-1.4.6-5.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-clufter-0.77.1-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-clufter-0.77.1-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-clufter-0.77.1-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-clufter-0.77.1-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-isodate-0.5.4-8.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-isodate-0.5.4-8.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-isodate-0.5.4-8.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-isodate-0.5.4-8.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-jwt-1.5.3-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-jwt-1.5.3-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-jwt-1.5.3-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-jwt-1.5.3-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-msrest-0.5.4-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-msrest-0.5.4-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-msrest-0.5.4-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-msrest-0.5.4-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-msrestazure-0.5.1-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-msrestazure-0.5.1-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-msrestazure-0.5.1-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-msrestazure-0.5.1-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-s3transfer-0.1.13-1.el7.noarch.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/python-s3transfer-0.1.13-1.el7.noarch.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/python-s3transfer-0.1.13-1.el7.noarch.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/python-s3transfer-0.1.13-1.el7.noarch.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata’
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/4877456b6139b1f1d5b1b54f84ea58152e6e1bdd9f877f50fd0c57319dd3309f-primary.xml.gz’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/4877456b6139b1f1d5b1b54f84ea58152e6e1bdd9f877f50fd0c57319dd3309f-primary.xml.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/4877456b6139b1f1d5b1b54f84ea58152e6e1bdd9f877f50fd0c57319dd3309f-primary.xml.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/4877456b6139b1f1d5b1b54f84ea58152e6e1bdd9f877f50fd0c57319dd3309f-primary.xml.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/5f7a43e653cd727cf5cc8ebbeb95dc9b1f44e8b9ee5b3c0885c52febfe3b407d-other.xml.gz’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/5f7a43e653cd727cf5cc8ebbeb95dc9b1f44e8b9ee5b3c0885c52febfe3b407d-other.xml.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/5f7a43e653cd727cf5cc8ebbeb95dc9b1f44e8b9ee5b3c0885c52febfe3b407d-other.xml.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/5f7a43e653cd727cf5cc8ebbeb95dc9b1f44e8b9ee5b3c0885c52febfe3b407d-other.xml.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/7738791aadcf06129b51bb6ad515e2af38d15f4a6b6262f6ff7679ac5571eafa-productid.gz’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/7738791aadcf06129b51bb6ad515e2af38d15f4a6b6262f6ff7679ac5571eafa-productid.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/7738791aadcf06129b51bb6ad515e2af38d15f4a6b6262f6ff7679ac5571eafa-productid.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/7738791aadcf06129b51bb6ad515e2af38d15f4a6b6262f6ff7679ac5571eafa-productid.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/TRANS.TBL’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/TRANS.TBL’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/TRANS.TBL’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/TRANS.TBL’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/ab53580797a38d2a64b54a3fe94427452a6c93990554d84bd31ae1ef643f5113-comps-Server-ResilientStorage.x86_64.xml’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/ab53580797a38d2a64b54a3fe94427452a6c93990554d84bd31ae1ef643f5113-comps-Server-ResilientStorage.x86_64.xml’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/ab53580797a38d2a64b54a3fe94427452a6c93990554d84bd31ae1ef643f5113-comps-Server-ResilientStorage.x86_64.xml’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/ab53580797a38d2a64b54a3fe94427452a6c93990554d84bd31ae1ef643f5113-comps-Server-ResilientStorage.x86_64.xml’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/d9b3cc453787758fb9528845a252295c0c56f02aa63fd884b984310a685f8bd4-comps-Server-ResilientStorage.x86_64.xml.xz’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/d9b3cc453787758fb9528845a252295c0c56f02aa63fd884b984310a685f8bd4-comps-Server-ResilientStorage.x86_64.xml.xz’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/d9b3cc453787758fb9528845a252295c0c56f02aa63fd884b984310a685f8bd4-comps-Server-ResilientStorage.x86_64.xml.xz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/d9b3cc453787758fb9528845a252295c0c56f02aa63fd884b984310a685f8bd4-comps-Server-ResilientStorage.x86_64.xml.xz’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/e9f6cad21e57ccf9174725db99684e21d991a015ef9b687616fd73e2ec0cedeb-filelists.xml.gz’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/e9f6cad21e57ccf9174725db99684e21d991a015ef9b687616fd73e2ec0cedeb-filelists.xml.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/e9f6cad21e57ccf9174725db99684e21d991a015ef9b687616fd73e2ec0cedeb-filelists.xml.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/e9f6cad21e57ccf9174725db99684e21d991a015ef9b687616fd73e2ec0cedeb-filelists.xml.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/productid’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/productid’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/productid’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/productid’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/repomd.xml’ -> ‘/root/rhel7.7/addons/ResilientStorage/repodata/repomd.xml’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/repodata/repomd.xml’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/repodata/repomd.xml’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/resource-agents-4.1.1-30.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/resource-agents-4.1.1-30.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/resource-agents-4.1.1-30.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/resource-agents-4.1.1-30.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/resource-agents-aliyun-4.1.1-30.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/resource-agents-aliyun-4.1.1-30.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/resource-agents-aliyun-4.1.1-30.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/resource-agents-aliyun-4.1.1-30.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/resource-agents-gcp-4.1.1-30.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/resource-agents-gcp-4.1.1-30.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/resource-agents-gcp-4.1.1-30.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/resource-agents-gcp-4.1.1-30.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/sbd-1.4.0-4.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/sbd-1.4.0-4.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/sbd-1.4.0-4.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/sbd-1.4.0-4.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/spausedd-2.4.3-6.el7.x86_64.rpm’ -> ‘/root/rhel7.7/addons/ResilientStorage/spausedd-2.4.3-6.el7.x86_64.rpm’
cp: error reading ‘RHEL-7.7 Server.x86_64/addons/ResilientStorage/spausedd-2.4.3-6.el7.x86_64.rpm’: Input/output error
cp: failed to extend ‘/root/rhel7.7/addons/ResilientStorage/spausedd-2.4.3-6.el7.x86_64.rpm’: Input/output error
‘RHEL-7.7 Server.x86_64/extra_files.json’ -> ‘/root/rhel7.7/extra_files.json’
‘RHEL-7.7 Server.x86_64/images’ -> ‘/root/rhel7.7/images’
‘RHEL-7.7 Server.x86_64/images/TRANS.TBL’ -> ‘/root/rhel7.7/images/TRANS.TBL’
cp: error reading ‘RHEL-7.7 Server.x86_64/images/TRANS.TBL’: Input/output error
cp: failed to extend ‘/root/rhel7.7/images/TRANS.TBL’: Input/output error
‘RHEL-7.7 Server.x86_64/images/efiboot.img’ -> ‘/root/rhel7.7/images/efiboot.img’
cp: error reading ‘RHEL-7.7 Server.x86_64/images/efiboot.img’: Input/output error
cp: failed to extend ‘/root/rhel7.7/images/efiboot.img’: Input/output error
‘RHEL-7.7 Server.x86_64/images/pxeboot’ -> ‘/root/rhel7.7/images/pxeboot’
‘RHEL-7.7 Server.x86_64/images/pxeboot/TRANS.TBL’ -> ‘/root/rhel7.7/images/pxeboot/TRANS.TBL’
cp: error reading ‘RHEL-7.7 Server.x86_64/images/pxeboot/TRANS.TBL’: Input/output error
cp: failed to extend ‘/root/rhel7.7/images/pxeboot/TRANS.TBL’: Input/output error
‘RHEL-7.7 Server.x86_64/images/pxeboot/initrd.img’ -> ‘/root/rhel7.7/images/pxeboot/initrd.img’
cp: error reading ‘RHEL-7.7 Server.x86_64/images/pxeboot/initrd.img’: Input/output error
cp: failed to extend ‘/root/rhel7.7/images/pxeboot/initrd.img’: Input/output error
‘RHEL-7.7 Server.x86_64/images/pxeboot/upgrade.img’ -> ‘/root/rhel7.7/images/pxeboot/upgrade.img’
cp: error reading ‘RHEL-7.7 Server.x86_64/images/pxeboot/upgrade.img’: Input/output error
cp: failed to extend ‘/root/rhel7.7/images/pxeboot/upgrade.img’: Input/output error
‘RHEL-7.7 Server.x86_64/images/pxeboot/vmlinuz’ -> ‘/root/rhel7.7/images/pxeboot/vmlinuz’
cp: error reading ‘RHEL-7.7 Server.x86_64/images/pxeboot/vmlinuz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/images/pxeboot/vmlinuz’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux’ -> ‘/root/rhel7.7/isolinux’
‘RHEL-7.7 Server.x86_64/isolinux/TRANS.TBL’ -> ‘/root/rhel7.7/isolinux/TRANS.TBL’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/TRANS.TBL’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/TRANS.TBL’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/boot.cat’ -> ‘/root/rhel7.7/isolinux/boot.cat’
‘RHEL-7.7 Server.x86_64/isolinux/boot.msg’ -> ‘/root/rhel7.7/isolinux/boot.msg’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/boot.msg’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/boot.msg’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/grub.conf’ -> ‘/root/rhel7.7/isolinux/grub.conf’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/grub.conf’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/grub.conf’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/initrd.img’ -> ‘/root/rhel7.7/isolinux/initrd.img’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/initrd.img’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/initrd.img’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/isolinux.bin’ -> ‘/root/rhel7.7/isolinux/isolinux.bin’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/isolinux.bin’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/isolinux.bin’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/isolinux.cfg’ -> ‘/root/rhel7.7/isolinux/isolinux.cfg’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/isolinux.cfg’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/isolinux.cfg’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/memtest’ -> ‘/root/rhel7.7/isolinux/memtest’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/memtest’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/memtest’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/splash.png’ -> ‘/root/rhel7.7/isolinux/splash.png’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/splash.png’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/splash.png’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/upgrade.img’ -> ‘/root/rhel7.7/isolinux/upgrade.img’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/upgrade.img’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/upgrade.img’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/vesamenu.c32’ -> ‘/root/rhel7.7/isolinux/vesamenu.c32’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/vesamenu.c32’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/vesamenu.c32’: Input/output error
‘RHEL-7.7 Server.x86_64/isolinux/vmlinuz’ -> ‘/root/rhel7.7/isolinux/vmlinuz’
cp: error reading ‘RHEL-7.7 Server.x86_64/isolinux/vmlinuz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/isolinux/vmlinuz’: Input/output error
‘RHEL-7.7 Server.x86_64/media.repo’ -> ‘/root/rhel7.7/media.repo’
‘RHEL-7.7 Server.x86_64/repodata’ -> ‘/root/rhel7.7/repodata’
‘RHEL-7.7 Server.x86_64/repodata/65df0fbcdc0d435c04ce39b72464c6e392dded475851e368c99cbfc9b1fc8014-other.xml.gz’ -> ‘/root/rhel7.7/repodata/65df0fbcdc0d435c04ce39b72464c6e392dded475851e368c99cbfc9b1fc8014-other.xml.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/65df0fbcdc0d435c04ce39b72464c6e392dded475851e368c99cbfc9b1fc8014-other.xml.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/65df0fbcdc0d435c04ce39b72464c6e392dded475851e368c99cbfc9b1fc8014-other.xml.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/6d132b085489dcfe4a0ee2b4c38d9578c38ab83cebe4df87e3a409b48e8fee57-comps-Server.x86_64.xml’ -> ‘/root/rhel7.7/repodata/6d132b085489dcfe4a0ee2b4c38d9578c38ab83cebe4df87e3a409b48e8fee57-comps-Server.x86_64.xml’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/6d132b085489dcfe4a0ee2b4c38d9578c38ab83cebe4df87e3a409b48e8fee57-comps-Server.x86_64.xml’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/6d132b085489dcfe4a0ee2b4c38d9578c38ab83cebe4df87e3a409b48e8fee57-comps-Server.x86_64.xml’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/7772ff5f856d5fd10f47d814ebf5ef57482d57087d856829a6cb2b1834eeeccb-comps-Server.x86_64.xml.xz’ -> ‘/root/rhel7.7/repodata/7772ff5f856d5fd10f47d814ebf5ef57482d57087d856829a6cb2b1834eeeccb-comps-Server.x86_64.xml.xz’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/7772ff5f856d5fd10f47d814ebf5ef57482d57087d856829a6cb2b1834eeeccb-comps-Server.x86_64.xml.xz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/7772ff5f856d5fd10f47d814ebf5ef57482d57087d856829a6cb2b1834eeeccb-comps-Server.x86_64.xml.xz’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/TRANS.TBL’ -> ‘/root/rhel7.7/repodata/TRANS.TBL’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/TRANS.TBL’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/TRANS.TBL’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/a82f6b93b9025610d8d14a8318d67e0723cd67769149468524692ada7481d682-filelists.xml.gz’ -> ‘/root/rhel7.7/repodata/a82f6b93b9025610d8d14a8318d67e0723cd67769149468524692ada7481d682-filelists.xml.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/a82f6b93b9025610d8d14a8318d67e0723cd67769149468524692ada7481d682-filelists.xml.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/a82f6b93b9025610d8d14a8318d67e0723cd67769149468524692ada7481d682-filelists.xml.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/e9c2909a50e88eb909e88976f88bec3ed451fb6b25e2fe9ec835668281a7bca9-primary.xml.gz’ -> ‘/root/rhel7.7/repodata/e9c2909a50e88eb909e88976f88bec3ed451fb6b25e2fe9ec835668281a7bca9-primary.xml.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/e9c2909a50e88eb909e88976f88bec3ed451fb6b25e2fe9ec835668281a7bca9-primary.xml.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/e9c2909a50e88eb909e88976f88bec3ed451fb6b25e2fe9ec835668281a7bca9-primary.xml.gz’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/f4a75c133e81362e0dc2130b3c044746f1dc692f16f540517971d96da42213e9-productid.gz’ -> ‘/root/rhel7.7/repodata/f4a75c133e81362e0dc2130b3c044746f1dc692f16f540517971d96da42213e9-productid.gz’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/f4a75c133e81362e0dc2130b3c044746f1dc692f16f540517971d96da42213e9-productid.gz’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/f4a75c133e81362e0dc2130b3c044746f1dc692f16f540517971d96da42213e9-productid.gz’:

Input/output error
‘RHEL-7.7 Server.x86_64/repodata/productid’ -> ‘/root/rhel7.7/repodata/productid’

cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/productid’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/productid’: Input/output error
‘RHEL-7.7 Server.x86_64/repodata/repomd.xml’ -> ‘/root/rhel7.7/repodata/repomd.xml’
cp: error reading ‘RHEL-7.7 Server.x86_64/repodata/repomd.xml’: Input/output error
cp: failed to extend ‘/root/rhel7.7/repodata/repomd.xml’: Input/output error
Add a comment
FAQ
Q
5) What is the use of yum clean all command?
A
The yum clean all command used to Runs yum clean packages and yum clean headers as above.
Q
4) What is the use of yum clean headers command?
A
The yum clean headers command used to Eliminate all of the header files which yum uses for dependency
resolution.
Q
3) What is the use of yum clean packages command?
A
The yum clean packages command used to Eliminate any cached packages from the system.
Q
2) What is Red Hat Subscription?
A
A Red Hat subscription allows customers to download Red Hat tested and certified enterprise software.
It also provides access to the guidance, stability, and security to confidently deploy these products, even in the most-critical environments
Q
1) What is Red Hat Enterprise?
A
Red Hat Enterprise Linux is the world’s leading enterprise Linux platform. It’s an open source operating system (OS).

It’s the foundation from which you can scale existing apps—and roll out emerging technologies—across bare-metal, virtual container and all types of cloud environments.