- minimal.isoがないので、6GB〜8GBのUSBメモリが必要。
- 参考: CentOS 8がリリース - ローリングリリース対応のCentOS Streamも発表 | ソフトアンテナブログ
-
RHEL 8 の導入における検討事項 Red Hat Enterprise Linux 8 | Red Hat Customer Portal
- 廃止されたパッケージ一覧。
Download
-
http://ftp.nara.wide.ad.jp/pub/Linux/centos/8/isos/x86_64/
CentOS-8-x86_64-1905-boot.iso
- ネットワーク接続がないとインストールできないので注意。
-
http://ftp.nara.wide.ad.jp/pub/Linux/centos/8-stream/isos/x86_64/
CentOS-Stream-x86_64-boot.iso
- ローリングリリース対応のCentOS Stream
インストール
ログイン画面
text
Esc
キーを押すと ブートメニューのオプション手入力。
cockpit
- port 9090
systemctl enable --now cockpit.socket
他のリポジトリ
elrepo
yum install elrepo-release
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
wget "https://yum.puppetlabs.com/puppet-release-el-8.noarch.rpm"
rpm -ivh puppet-release-el-8.noarch.rpm
Ansible
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
mkdir build && cd build
export CXXFLAGS="-fPIC"
cmake ..
make
make install
snappyのインストール
pip3 install python-snappy
python3 -m snappy --help