Rate This Document
Findability
Accuracy
Completeness
Readability

Installing liboath

According to the OS version, perform the corresponding operations on all server and client nodes in the cluster.

CentOS 7.6

  1. Upload the everything image file corresponding to the OS to the server.

    Use an SFTP tool to upload the CentOS-***aarch64-everything.iso package to the /root directory on the server.

  2. Create a local directory to mount the image.
    1
    mkdir -p /iso
    
  3. Mount the ISO file to the local directory.
    1
    mount /root/CentOS-***aarch64-everything.iso /iso
    
  4. Create a Yum source for the image.
    1. Create a .repo file.
      1
      vi /etc/yum.repos.d/centos.repo
      
    2. Press i to enter the insert mode and add the following content to the file:
      1
      2
      3
      4
      5
      6
      [Base]
      name=Base
      baseurl=file:///iso
      enabled=1
      gpgcheck=0
      priority=1
      
    3. Press Esc to exit the insert mode and run :wq! to save the file and exit.
  5. Install the epel-release dependency package.
    1
    yum install epel-release -y
    

  6. Install liboath and liboath-devel.
    1
    yum install liboath liboath-devel -y
    

openEuler 20.03 & openEuler 22.03

For openEuler 20.03 and openEuler 22.03, you do not need to configure the EPEL source. Run the following command to install dependencies:

yum install liboath liboath-devel -y