我要评分
获取效率
正确性
完整性
易理解

Local Source

Installing Ceph After Compilation (Ceph 14.2.8)

For Ceph 14.2.8, configure the compilation environment according to the "Configuring the Compilation Environment" section in Ceph 14.2.8 Compilation Guide. Then, refer to the "Compiling and Deploying Ceph" section to install Ceph on the local host.

Mounting the Local Image Source (Ceph 16.2.7)

If you use openEuler 22.03 and Ceph 16.2.7, refer to the following steps to mount the local image.

  1. Back up the original openEuler.repo file.
    1
    mv /etc/yum.repos.d/openEuler.repo /etc/yum.repos.d/openEuler.repo.bak
    
  2. Download the system image of openEuler 22.03 LTS SP4, upload the ISO image file to /root, and mount the local image source. Image download address: https://mirrors.huaweicloud.com/openeuler/openEuler-22.03-LTS-SP4/ISO/aarch64/openEuler-22.03-LTS-SP4-everything-aarch64-dvd.iso
    1
    mount /root/openEuler-22.03-LTS-SP4-everything-aarch64-dvd.iso /media/
    
  3. Configure the repository.
    1. Create a local.repo file.
      1
      vi /etc/yum.repos.d/local.repo
      
    2. Press i to enter the insert mode and add the following content:
      1
      2
      3
      4
      5
      [local]
      name=system local
      baseurl=file:///media/
      enabled=1
      gpgcheck=0
      
    3. Press Esc to exit the insert mode. Type :wq! and press Enter to save the file and exit.