Monday, June 7, 2021

Install HPE Foundation on HPE machine

 How to set up HPE Foundation 2.4.2 repository

1. Copy the software
# mkdir /opt/foundation
# mount -t iso9660 /var/tmp/hpe-foundation-2.4.2-cd1-media-rhel77-x86_64.iso /mnt
# cp -Rvp /mnt/* /opt/foundation
# umount /mnt

2. Set up repo
# cat <<EOF > /etc/yum.repos.d/foundation-2.4.2_.repo
[Foundation-Repo]
name = HPE Foundaton 2.4.2 - \$basearch
baseurl = file:///opt/foundation/RPMS
enabled=0
gpgcheck = 1
gpgkey = file:///opt/foundation/RPM-GPG-KEY-hpe
     file:///opt/foundation/RPM-GPG-KEY-sgi
EOF

3. Perform the update
# yum --enablerepo=foundation-2.4.2-repo check-update

No comments:

Post a Comment

Git branch show detached HEAD

  Git branch show detached HEAD 1. List your branch $ git branch * (HEAD detached at f219e03)   00 2. Run re-set hard $ git reset --hard 3. ...