/root配下にあるanaconda-ks.cfg ってなに?
いつも/root配下にanaconda-ks.cfg
というファイルがいる
[root@localhost ~]# ls
anaconda-ks.cfg
キックスタートファイルと言われるものらしい...
こちらを見ると、
anaconda-ks.cfg
はキックスタートファイルというものらしい。
キックスタートファイルを使えば同じ方法でのOSインストールが行えるようになる。
中身を見てみる(抜粋)
### 最初のインストール時の設定。言語とかキーボードレイアウトとか
#version=DEVEL
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Use graphical install
graphical
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=jp --xlayouts='jp'
# System language
lang ja_JP.UTF-8
### インストール時のネットワークの設定
# Network information
network --bootproto=dhcp --device=enp0s3 --ipv6=auto --activate
network --bootproto=static --device=enp0s8 --ip=xxx.xxx.xxx.xxx --netmask=255.255.0.0 --onboot=off --ipv6=auto --activate
### ルートのパスワードとかタイムゾーンとか
# Root password
rootpw --iscrypted xxxxxxxxxxxxxxxxxx
# System services
services --enabled="chronyd"
# System timezone
timezone Asia/Tokyo --isUtc
# System bootloader configuration
bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda
autopart --type=lvm
# Partition clearing information
clearpart --none --initlabel
### インストールするパッケージ
%packages
@^minimal
@core
chrony
kexec-tools
%end
新しくインストールするときはどうするの?
インストール時の以下の画面でtabキー
を押すと入力画面になるので、以下を記載
- httpの時 :
inst.ks=http://IPアドレス/ks.cfg
- DVDの例 :
inst.ks=cdrom:/ks.cfg
参考
Author And Source
この問題について(/root配下にあるanaconda-ks.cfg ってなに?), 我々は、より多くの情報をここで見つけました https://qiita.com/miyuki_samitani/items/d0b4a60bdef573e57687著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .