~/Blog

Brandon Rozek

Photo of Brandon Rozek

PhD Student @ RPI studying Automated Reasoning in AI and Linux Enthusiast.

Local Repo From Live Installer

Published on

Updated on

Warning: This post has not been modified for over 2 years. For technical posts, make sure that it is still relevant.

I’m going to share my experience setting up a local repo from a CentOS live CD. These instructions should work similarly in REHL.

When working with off-network systems, it is often useful to have the base packages on the system after the installation process. Luckily the base packages are commonly included in the ISO installer.

First I’m going to assume that you’ve mounted the ISO at /mnt.

sudo mkdir -p /repos/local
sudo rsync -Paz /mnt/Packages /repos/local/Packages
sudo rsync -Paz /mnt/repodata /repos/local/repodata 

Then create the file /etc/yum.repos.d/local.repo

[local]
name=Local Repo
baseurl=file:///repos/local/
gpgcheck=0
enabled=1

Now you’re all set to go with the packages on the Live CD!

Reply via Email Buy me a Coffee
Was this useful? Feel free to share: Hacker News Reddit Twitter

Published a response to this? :