CentOS 启动包

CentOS 启动包

我正在尝试使用我编写的 kickstart 文件安装 CentOS7。下面是来自 kickstart 的片段

##################################

##### 3. Package installation

##################################

repo --name="CentOS" --baseurl=http://mirror.centos.org/centos/7/os/x86_64/

%packages

base
core

man
git
ruby
rpm-build
apache-maven

%end

但是,我收到错误“您已指定应安装软件包“git”。该包不存在。您想在没有此软件包的情况下继续安装吗?

安装是非交互式的,但我假设如果该包可用,它将继续。我已经为 git 输入了“继续”,上面列表中的每个包也不可用。

如何在操作系统安装过程中启用 yum 存储库或解决此问题?

答案1

没有指定存储库或 URL。使用以下软件包片段继续安装

##################################

##### 3. Package installation

##################################

url --url="http://sunsite.rediris.es/mirror/CentOS/7/os/x86_64/"
repo --name="CentOS" --baseurl="http://mirror.centos.org/centos/7/os/x86_64/"
repo --name="EPEL" --baseurl="http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/"

%packages

@base
@core

man
git
ruby
maven
rpm-build

%end

相关内容