/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キー
를 누르면 입력 화면이되므로inst.ks=http://IPアドレス/ks.cfg
inst.ks=cdrom:/ks.cfg
참고
Reference
이 문제에 관하여(/root 아래에 있는 anaconda-ks.cfg 란 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/miyuki_samitani/items/d0b4a60bdef573e57687텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)