Quote:
Originally Posted by sj_johney
Hi all,
I have a server running Red Hat Enterprise Linux Server 5. I was trying to prepare a kickstart file using the Kickstart configurator, and when I come to the "package selection" part, I get a error message "Package Selection is disabled due to problems downloading package information"
Any Idea, why I get this message?
Thank you all....
Regards
Johney
|
I am guessing that the system is not registered to RHN or to your local Satellite server, right?
What it is telling you is that it is looking for repository information and you have no repositories defined. You can either register the system with RHN or Satellite to access repo info through the yum-rhn-plugin, or create a rhel.repo file in /etc/yum.repos.d that looks something like this:
[server]
name=server
baseurl=http://server.yourcompany.com/path/to/Server
gpgcheck=1
enabled=1
[vt]
name=vt
baseurl=http://server.yourcompany.com/path/to/VT
gpgcheck=1
enabled=1
[cluster]
name=cluster
baseurl=http://server.yourcompany.com/path/to/Cluster
gpgcheck=1
enabled=1
[cluster]
name=clusterstorage
baseurl=http://server.yourcompany.com/path/to/ClusterStorage
gpgcheck=1
enabled=1
Obviously, you will substitute server.yourcompany.com with a server in your organization, and /path/to/blah with the path to the location into which you copied the install media.
Hope this helps
Thomas Cameron, RHCE, RHCI, CNE, MCSE, MCT