CentOS8 OS 설치/cockpit/리포지토리 추가/Ansible/snappy

9023 단어 centos8CentOS
  • minimal.iso가 없으므로 6GB ~ 8GB의 USB 메모리가 필요합니다.
  • 참고: CentOS 8 출시 - 롤링 릴리스 지원 CentOS Stream 발표 | 소프트 안테나 블로그

  • RHEL 8 배포 고려 사항 Red Hat Enterprise Linux 8 | Red Hat Customer Portal
  • 더 이상 사용되지 않는 패키지 목록.


  • Download



  • htp //ftp. 그럼. 와우. 아 d. jp/pu b/ぃぬ x/센토 s/8/이자 s/x86_64/
  • CentOS-8-x86_64-1905-boot.iso
  • 네트워크 연결이 없으면 설치할 수 없으므로 주의.


  • htp //ftp. 그럼. 와우. 아 d. jp/pub/ぃぬx/전과 s/8-st레아m/이소 s/x86_64/
  • CentOS-Stream-x86_64-boot.iso
  • 롤링 릴리스 지원 CentOS Stream


  • 설치














    로그인 화면























    텍스트




    Esc 키를 누르면 부팅 메뉴의 옵션 수동 입력.





    cockpit


  • port 9090
  • systemctl enable --now cockpit.socket
    





    기타 리포지토리


  • elrepo

  • elrepo
    yum install elrepo-release
    
  • remi
  • epel

  • epel,remi
    wget "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm"
    wget "https://rpms.remirepo.net/enterprise/remi-release-8.rpm"
    
    rpm -ivh epel-release-latest-8.noarch.rpm
    rpm -ivh remi-release-8.rpm
    
  • puppetlabs

  • puppetlabs
    wget "https://yum.puppetlabs.com/puppet-release-el-8.noarch.rpm"
    rpm -ivh puppet-release-el-8.noarch.rpm
    

    Ansible


  • How to Install and Configure Ansible on RHEL 8 / CentOS 8 - Computing for Geeks
  • pip3 install ansible --user
    

    snappy



    /usr/lib/rpm/redhat/redhat-hardened-cc1 해결



    gcc: 오류:/usr/lib/rpm/redhat/redhat-hardened-cc1: 이러한 파일이나 디렉터리가 없습니다.
    yum install -y redhat-rpm-config
    

    cc1plus 해결



    gcc: error trying to exec 'cc1plus': execvp: 이러한 파일이나 디렉토리가 없습니다.
    yum install -y gcc-c++
    

    Python.h



    Python.h : 그러한 파일이나 디렉토리가 없습니다.
    yum install -y python36-devel
    

    snappy-c.h



    snappy-c.h: 이러한 파일이나 디렉토리가 없습니다.
    yum install -y git
    git clone https://github.com/google/snappy/
    
    cd snappy
    yum install -y make cmake gcc
    
  • relocation R_X86_64_32S against `.rodata' can not be used when making a shared object; recompile with -fPIC · Issue #2171 · BVLC/caffe
  • mkdir build && cd build
    
    export CXXFLAGS="-fPIC"
    cmake ..
    make
    


    make install
    



    snappy 설치


    pip3 install python-snappy
    


    python3 -m snappy --help
    

    좋은 웹페이지 즐겨찾기